博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
unity 中Canvas MatchHeight
阅读量:5077 次
发布时间:2019-06-12

本文共 511 字,大约阅读时间需要 1 分钟。

设置了

UI Scale Mode = Scale With Screen Size,

Reference Resolution = X 1334, Y 750,

Screen Match Mode = Match Width Or Height,

Match = Width 0, Height 1,

 

---------------------------------------

获取屏幕实际宽度.(RectTransform 在Canvas中填满时的宽度)

 

1         this.RealHeight = 750f;2         this.RealWidth = this.RealHeight / (float)Screen.height * (float)Screen.width;3         UnityEngine.Debug.LogFormat("real: width:{0}  height:{1}", this.RealWidth, this.RealHeight);

 

转载于:https://www.cnblogs.com/sweetXiaoma/p/10419575.html

你可能感兴趣的文章
CSS竖向步骤条
查看>>
Struts中ActionContext和ServletActionContext的比较
查看>>
Win7系统32位和64位的区别
查看>>
POJ 2352 Stars
查看>>
CentOS网络设置 couldn't resolve host 'mirrorlist.centos.org问题解决
查看>>
《Python》网络编程基础
查看>>
消息队列实现分布式事务
查看>>
SAP CO11; CO11N; CO15的区别
查看>>
如何在有int型主键遍历表中的某一列数据
查看>>
第4章 JavaScript对象及初识面向对象
查看>>
协方差分析 | ANCOVA (Analysis of Covariance) | R代码
查看>>
R基本图形示例及代码(持续收集)
查看>>
Winpcap基础代码
查看>>
任务队列简单实现
查看>>
关于ES、PES、PS以及TS码流
查看>>
.net4.0中wpf单例启动
查看>>
Windows作业
查看>>
阶段1 语言基础+高级_1-3-Java语言高级_02-继承与多态_第4节 多态_21_对象的向下转型...
查看>>
LRU Cache
查看>>
PAT-乙级-1003 我要通过!
查看>>