public static void AddCameraManager(CameraManager_VS updateable)
    {
        if (singleton == null)
        {
            Debug.LogError("SceneManager_VS.AddUpdateableObject(" + updateable.name + ") called, but singleton was NULL! Aborting.");
            return;
        }

        singleton._AddCameraManager(updateable);
    }
 void _AddCameraManager(CameraManager_VS updateable)
 {
     cameraManager = updateable;
 }