コード例 #1
0
ファイル: MenuInGame.cs プロジェクト: pb0/ID0_Test
 // fsm interface
 public void ToggleCheat()
 {
     if (buttonPanel != null)
     {
         buttonPanel = null;
     }
     else
     {
         buttonPanel = new ButtonPanel(UI.GetPuzzleArea(), BlockSpawn.GetDart(subClassEntity.subClassCode), heroCharacter, itemDropManager, 0);
         buttonPanel.SetQueue(user.commandQueue);
     }
 }
コード例 #2
0
ファイル: MenuInGame.cs プロジェクト: pb0/ID0_Test
 // fsm interface
 public void ToggleCheat()
 {
     if (buttonPanel != null)
     {
         buttonPanel = null;
     }
     else
     {
         buttonPanel = new ButtonPanel(UI.GetPuzzleArea(), heroEntity, heroCharacter, itemDropManager, stageEntity.ConsumableTier);
         buttonPanel.SetQueue(user.commandQueue);
     }
 }