Ejemplo n.º 1
0
 void Awake()
 {
     if (instance == null)
     {
         instance = this;
         DontDestroyOnLoad(gameObject);
     }
     else
     {
         Destroy(gameObject);
     }
 }
Ejemplo n.º 2
0
 internal void SaveLevel()
 {
     File.WriteAllText(CurrentFileName, CurrentLevelData.Serialize());
 }