コード例 #1
0
ファイル: FrontDoorHandle.cs プロジェクト: soraphis/HorrorOma
 public void fireAction()
 {
     if (StateMachine.Instance.State == GameState.FindBox00 || !StateMachine.Instance.State2_BoxFound)
     {
         NotificationText.SimpleScreenText("(Ich sollte den Keller nicht ohne Kiste verlassen)");
     }
     else
     {
         NotificationText.SimpleScreenText("(Die Tür ist verschraubt, ich muss sie irgendwie öffnen)");
     }
 }
コード例 #2
0
ファイル: WrongBoxScript.cs プロジェクト: soraphis/HorrorOma
 public void fireAction()
 {
     NotificationText.SimpleScreenText(errorMessage);
 }