コード例 #1
0
ファイル: PlayerJump.cs プロジェクト: FabioHEPL/Hunt
 private void InputManager_JumpButtonPressed(object sender, JumpButtonPressedArgs e)
 {
     if (_allowed)
     {
         StartCoroutine(Execute());
         OnExecute();
     }
 }
コード例 #2
0
ファイル: InputManager.cs プロジェクト: FabioHEPL/Hunt
 private void OnJumpButtonPressed(JumpButtonPressedArgs args)
 {
     JumpButtonPressed?.Invoke(this, args);
 }