diff options
Diffstat (limited to 'GameCode/ArmRotator.cs')
-rw-r--r-- | GameCode/ArmRotator.cs | 11 |
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; + } +} |