diff options
Diffstat (limited to 'CameraWobble.cs')
-rw-r--r-- | CameraWobble.cs | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/CameraWobble.cs b/CameraWobble.cs deleted file mode 100644 index 2bd1236..0000000 --- a/CameraWobble.cs +++ /dev/null @@ -1,18 +0,0 @@ -using UnityEngine; - -public class CameraWobble : MonoBehaviour -{ - public Transform target; - - private void Start() - { - } - - private void LateUpdate() - { - if ((bool)target) - { - base.transform.localRotation = target.rotation; - } - } -} |