コード例 #1
0
ファイル: TTSpendPoints.cs プロジェクト: prim4t/rocketeers
 // Called by: ToolTipManager.SpendPoints()
 // Causes Item to transition to BoughtState()
 public void Purchase(int spend_amt)
 {
     ui_spend_amt.text = spend_amt.ToString();
     // JF: Disable button ToolTip
     buttonImage.enabled = false;
     state = TTSpendPointsStates.BOUGHT;
 }
コード例 #2
0
ファイル: TTSpendPoints.cs プロジェクト: prim4t/rocketeers
 // Called by: ToolTipManager.DisplayPrice()
 // Causes Item to transition to DisplayState()
 public void Display(int spend_amt)
 {
     ui_spend_amt.text = spend_amt.ToString();
     state             = TTSpendPointsStates.DISPLAY;
 }