summaryrefslogtreecommitdiff
path: root/GameCode/ArmRotator.cs
diff options
context:
space:
mode:
Diffstat (limited to 'GameCode/ArmRotator.cs')
-rw-r--r--GameCode/ArmRotator.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/GameCode/ArmRotator.cs b/GameCode/ArmRotator.cs
new file mode 100644
index 0000000..a8f02a9
--- /dev/null
+++ b/GameCode/ArmRotator.cs
@@ -0,0 +1,11 @@
+using UnityEngine;
+
+public class ArmRotator : MonoBehaviour
+{
+ public Vector3 rotation;
+
+ private void Start()
+ {
+ base.transform.localEulerAngles = rotation;
+ }
+}