Ejemplo n.º 1
0
 public void StorePlayerData()
 {
     this.m_storedPlayerStats = Game.PlayerStats;
     Game.PlayerStats = new PlayerStats();
     Game.PlayerStats.TutorialComplete = true;
     this.m_storedScale = this.Player.Scale;
     this.Player.Scale = new Vector2(2f, 2f);
     SkillSystem.ResetAllTraits();
     this.Player.OverrideInternalScale(this.Player.Scale);
     this.m_storedHealth = this.Player.CurrentHealth;
     this.m_storedMana = this.Player.CurrentMana;
 }
Ejemplo n.º 2
0
 public ChallengeBossRoomObj()
 {
     this.m_storedPlayerStats = new PlayerStats();
 }