- 最后登录
- 2021-7-6
- 注册时间
- 2012-12-27
- 阅读权限
- 90
- 积分
- 76145
- 纳金币
- 53488
- 精华
- 316
|
最近在做一款页游,进公司的时候已经是项目要要完结了
但是还存在一些问题
适配[color=rgb(85, 85, 85) !important]问题:
开始时想固定大小,做微端和网页,后来运营商要求要做适配
使用的是ngui3.6,ui原有的适配也只是绑了上下左右的锚点
更该ngui的设置,只能完成按高等比缩放(坑啊,页游怎么够用啊,宽就没人管了啊!(最新版本是可以的))
那么只能自己动手更改了,ngui控制缩放的功能在UIroot下的activeHeight属性
在UIRoot下做如下修改- //设置是的宽高
- public const int ManualWidth = 1920;
- public const int ManualHeight = 1080;
- public int activeHeight
- {
- get
- {
- AdaptiveUI();
- //不需要缩放的范围
- if (manualHeight < 950 || manualHeight > 1100)
- {
- return manualHeight;
- }
- //原先的正常逻辑
- }
- }
- private void AdaptiveUI()
- {
- if (System.Convert.ToSingle(Screen.height) / Screen.width > System.Convert.ToSingle(ManualHeight) / ManualWidth)
- manualHeight = Mathf.CeilToInt(System.Convert.ToSingle(ManualWidth) / Screen.width * Screen.height);
- else
- manualHeight = ManualHeight;
- }
复制代码 |
|