summaryrefslogtreecommitdiff
path: root/Assets/Scripts/Managers/SceneManager.cs
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2021-09-16 20:51:19 +0800
committerchai <chaifix@163.com>2021-09-16 20:51:19 +0800
commitcec37ddb003304a224b804a78479ae46dae58fed (patch)
tree03cb1ebba64cf6c38e9250816a7a4a4d13e36e38 /Assets/Scripts/Managers/SceneManager.cs
parent8b65edb43be0945203633b33d7a62c81ab3f05ce (diff)
+ motion blur
Diffstat (limited to 'Assets/Scripts/Managers/SceneManager.cs')
-rw-r--r--Assets/Scripts/Managers/SceneManager.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Assets/Scripts/Managers/SceneManager.cs b/Assets/Scripts/Managers/SceneManager.cs
new file mode 100644
index 00000000..c986a1b1
--- /dev/null
+++ b/Assets/Scripts/Managers/SceneManager.cs
@@ -0,0 +1,15 @@
+using System.Collections;
+using System.Collections.Generic;
+using UnityEngine;
+
+public class SceneManager : Singleton<SceneManager>
+{
+
+ public Camera mainCamera { get; private set; }
+
+ public void SetMainCamera(Camera cam)
+ {
+ mainCamera = cam;
+ }
+
+}