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

11 lines
232 B
C#

using UnityEngine;
using System.Collections;
public class RotateSample : MonoBehaviour
{
void Start(){
iTween.RotateBy(gameObject, iTween.Hash("x", .25, "easeType", "easeInOutBack", "loopType", "pingPong", "delay", .4));
}
}