Ejemplo n.º 1
0
 private void ResetGame(bool withTuto)
 {
     cursor.GetComponent <CursorManager>().Init();
     gameManager.GetComponent <OrganSettlementManager>().Init();
     gameManager.GetComponent <GameManager>().Reset();
     gameManager.GetComponent <PauseManager>().Init();
     if (withTuto)
     {
         gameManager.GetComponent <GameScenario>().Init();
     }
     else
     {
         gameManager.GetComponent <GameScenario>().SkipTutorial();
     }
     LineDrawer.ClearRelations();
     Camera.main.GetComponent <MoveCamera>().Init();
     organContainer.GetComponentInChildren <MainOrgan>().UpdateNextTurnLabel();
 }