diff options
Diffstat (limited to 'Assembly_CSharp/SlowRotate.cs')
-rw-r--r-- | Assembly_CSharp/SlowRotate.cs | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/Assembly_CSharp/SlowRotate.cs b/Assembly_CSharp/SlowRotate.cs deleted file mode 100644 index 7a0306a..0000000 --- a/Assembly_CSharp/SlowRotate.cs +++ /dev/null @@ -1,12 +0,0 @@ -using UnityEngine; - -public class SlowRotate : MonoBehaviour -{ - [SerializeField] - private Vector3 rotation; - - private void Update() - { - base.transform.localEulerAngles += rotation * Time.deltaTime; - } -} |