10 lines
221 B
C#
10 lines
221 B
C#
using UnityEngine;
|
|
|
|
public class RotateSample : MonoBehaviour
|
|
{
|
|
private void Start()
|
|
{
|
|
iTween.RotateBy(base.gameObject, iTween.Hash("x", 0.25, "easeType", "easeInOutBack", "loopType", "pingPong", "delay", 0.4));
|
|
}
|
|
}
|