diff options
author | chai <215380520@qq.com> | 2024-03-14 11:43:40 +0800 |
---|---|---|
committer | chai <215380520@qq.com> | 2024-03-14 11:43:40 +0800 |
commit | cc55520a19043a7b4870858e962fa3e20c46bc39 (patch) | |
tree | b437f788e506a48ec16a215c6965b8170f15d5f6 /CameraWobble.cs | |
parent | 54c872fa42b1ba0fdbcfe812b80bb8eb0cfe108f (diff) |
*misc
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; - } - } -} |