码迷,mamicode.com
首页 > 编程语言 > 详细

unity中UI的屏幕自适应代码

时间:2017-09-21 21:12:52      阅读:407      评论:0      收藏:0      [点我收藏+]

标签:ati   oca   oid   height   float   大小   span   idt   oat   

public void ScreenUISelfAdptation(Transform scaleUI)
{
  float widthrate = UnityEngine.Screen.width / 1920.0f;
  float heightrate = UnityEngine.Screen.height / 1080.0f;
  float postion_x = scaleUI.GetComponent<RectTransform>().anchoredPosition.x * widthrate;
  float postion_y = scaleUI.GetComponent<RectTransform>().anchoredPosition.y * heightrate;
  scaleUI.localScale = new Vector3(widthrate, heightrate, 1);

  scaleUI.GetComponent<RectTransform>().anchoredPosition = new Vector2(postion_x, postion_y);
}

UnityEngine.Screen.widthUnityEngine.Screen.height是你要发布的屏幕分辨率大小。

1920.0f; x 1080.0f;是你制作UI时Gam e视图中的分辨率大小。

unity中UI的屏幕自适应代码

标签:ati   oca   oid   height   float   大小   span   idt   oat   

原文地址:http://www.cnblogs.com/Study088/p/7570708.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!