コード例 #1
0
 //function called by EncounterSystem once encounter is calculated
 public void DeclareTheWinner(bool wins)
 {
     DialogueSystem.SetGlobalVariable <bool>("playerWins", wins);
 }
コード例 #2
0
ファイル: PlayerStats.cs プロジェクト: KellyeAnnora/GGJ2020
 public void Update()
 {
     DialogueSystem.SetGlobalVariable("PlayerPower", combatPower);
     DialogueSystem.SetGlobalVariable("HasEnoughParts", HasEnoughParts);
 }
コード例 #3
0
 public void IdentifyBot(int botNumber)
 {
     DialogueSystem.SetGlobalVariable <int>("botIdentity", botNumber);
 }
コード例 #4
0
 public void Update()
 {
     DialogueSystem.SetGlobalVariable("playerPower", combatPower);
 }