码迷,mamicode.com
首页 > 其他好文 > 详细

11 RectTransform一些参数的设置

时间:2015-12-21 16:09:55      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

学习笔记,如有错误请指正。?号处也请各位指点下,谢谢。
Rect Transform继承自Transform
1.改变RectTransform的top
GetComponent<RectTransform>().offsetMax = new Vector2(GetComponent<RectTransform>().offsetMax.x, top);
 
2.改变RectTransform的bottom
GetComponent<RectTransform>().offsetMin = new Vector2(GetComponent<RectTransform>().offsetMin.x, bottom);
 
3.改变RectTransform的width,height
GetComponent<RectTransform>().sizeDelta = new Vector2(width, height);
 
4.改变RectTransform的pos
GetComponent<RectTransform>().anchoredPosition3D = new Vector3(posx,posy,posz);
GetComponent<RectTransform>().anchoredPosition = new Vector2(posx,posy);

11 RectTransform一些参数的设置

标签:

原文地址:http://www.cnblogs.com/kubll/p/4930224.html

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