unity3d ui rect transform 中的top怎么获取
发布网友
发布时间:2022-08-27 16:22
我来回答
共1个回答
热心网友
时间:2023-12-02 09:18
using
UnityEngine;
using
System.Collections;
using
UnityEngine.UI;
///
<summary>
///
脚本位置:UGUI的图片
///
</summary>
public
class
test
:
MonoBehaviour
{
//
你的图片
private
RectTransform
mySprite
;
void
Start
()
{
mySprite
=
gameObject.GetComponent<RectTransform>();
}
void
Update
()
{
//
max.y返回的偏移量是个负数,所以需要乘以-1
Debug.Log("Top"
+
":"
+
mySprite.offsetMax.y
*
-1);
Debug.Log("Bottom"
+
":"
+
mySprite.offsetMin.y
);
}
}