Ejemplo n.º 1
0
 public void LoadShip(string shipName)
 {
     if (currentShip != null)
     {
         Destroy(currentShip.gameObject);
     }
     currentShip = factory.LoadShipAtTransform(shipName, factory.transform, GameCamp.Player_);
 }