diff options
Diffstat (limited to 'GameCode/GifCam.cs')
-rw-r--r-- | GameCode/GifCam.cs | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/GameCode/GifCam.cs b/GameCode/GifCam.cs new file mode 100644 index 0000000..d7152c4 --- /dev/null +++ b/GameCode/GifCam.cs @@ -0,0 +1,25 @@ +using UnityEngine; + +public class GifCam : MonoBehaviour +{ + public static bool isGifCam; + + private Camera[] cameras; + + private Vector3 camStartPos; + + private float cameraStartSize; + + private bool follow = true; + + private void Start() + { + cameras = GetComponentsInChildren<Camera>(); + camStartPos = cameras[0].transform.position; + cameraStartSize = cameras[0].orthographicSize; + } + + private void Update() + { + } +} |