示例#1
0
文件: Tweener.cs 项目: essess5/tlplib
 public static Tweener <Vector3, Transform> tweenPositionRelative(
     this Tweener <Vector3, Transform> t, Vector3 to, Ease ease, float duration
     ) => t.t.tweenPosition(t.tween.end, t.tween.end + to, ease, duration);
示例#2
0
文件: Tweener.cs 项目: essess5/tlplib
 public static Tweener <Vector2, RectTransform> tweenAnchoredPositionRelative(
     this Tweener <Vector2, RectTransform> t, Vector2 to, Ease ease, float duration
     ) => t.t.tweenAnchoredPosition(t.tween.end, t.tween.end + to, ease, duration);