This commit is contained in:
StudentJW
2026-01-13 15:42:18 +00:00
parent eae7b615d6
commit e6c9c143f1
107 changed files with 22548 additions and 9 deletions

View File

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