Files
2026-02-21 16:45:37 +08:00

10 lines
214 B
C#

using UnityEngine;
public class MoveSample : MonoBehaviour
{
private void Start()
{
iTween.MoveBy(base.gameObject, iTween.Hash("x", 2, "easeType", "easeInOutExpo", "loopType", "pingPong", "delay", 0.1));
}
}