Files
Inter-Face-Off/Assets/Plugins/Pixelplacement/iTween/Sample/MoveSample.cs
StudentJW e6c9c143f1 Work
2026-01-13 15:42:18 +00:00

11 lines
226 B
C#

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