Exemplo n.º 1
0
 private void setDefaultValues()
 {
     powerLeftTxt.text = "Power Left: " + PowerEffect.staticGetVarValue();
     livesLeftTxt.text = "Lives Left: " + LivesEffect.staticGetLivesRemaining();
     livesLostTxt.text = "Lives Lost: " + LivesEffect.staticGetLivesLost();
     //TODO: Morale number interpreter
     moraleTxt.text    = "Current Morale: " + MoraleEffect.staticGetMoraleValue();
     jumpsLeftTxt.text = "Jumps until destination (estimate): " + WarpEffect.JumpsLeft;
     jumpsMadeTxt.text = "Jumps already made: " + WarpEffect.JumpsMade;
 }
Exemplo n.º 2
0
 public void updateLivesLost()
 {
     livesLostTxt.text = "Lives Lost: " + LivesEffect.staticGetLivesLost();
 }