10 lines
214 B
C#
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));
|
|
}
|
|
}
|