Exemplo n.º 1
0
    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);
    }
Exemplo n.º 2
0
 void _AddCameraManager(CameraManager_VS updateable)
 {
     cameraManager = updateable;
 }