public RectTransform asT;
void Start()
{
if (asT == null)
{
asT = GetComponent<RectTransform>();
}
}
public void TuiChu()
{
asT.transform.DOLocalMoveX(0, 0.25f);
this.transform.DOLocalMoveX(1000, 0.25f);
}
我做了两个面板根据坐标互换做跳转功能。this面板位移走了在1000,asT面板坐标还在1000不回来啊.两个面板都是能走,却回不来。
使用recttransform里面的移动的方法
DOAnchorPosX/DOAnchorPosY(float to, float duration, bool snapping)
Tweens the target's anchoredPosition
to the given value, tweening only the chosen axis.
snapping If TRUE the tween will smoothly snap all values to integers.