예제 #1
0
 /** Removes any runtime instance of the Player from the scene */
 public void RemoveFromScene()
 {
     if (playerOb)
     {
         Player sceneInstance = GetSceneInstance();
         if (sceneInstance)
         {
             sceneInstance.RemoveFromScene();
         }
     }
 }