35 lines
915 B
C#
35 lines
915 B
C#
|
using NodeCanvas.Framework;
|
|||
|
using ParadoxNotion;
|
|||
|
using ParadoxNotion.Design;
|
|||
|
using UnityEngine;
|
|||
|
|
|||
|
|
|||
|
namespace NodeCanvas.Tasks.Conditions
|
|||
|
{
|
|||
|
|
|||
|
[Category("Input (Legacy System)")]
|
|||
|
public class CheckButtonInput : ConditionTask
|
|||
|
{
|
|||
|
|
|||
|
public PressTypes pressType = PressTypes.Down;
|
|||
|
[RequiredField] public BBParameter<string> buttonName = "Fire1";
|
|||
|
|
|||
|
protected override string info {
|
|||
|
get { return pressType.ToString() + " " + buttonName.ToString(); }
|
|||
|
}
|
|||
|
|
|||
|
protected override bool OnCheck() {
|
|||
|
|
|||
|
if ( pressType == PressTypes.Down )
|
|||
|
return Input.GetButtonDown(buttonName.value);
|
|||
|
|
|||
|
if ( pressType == PressTypes.Up )
|
|||
|
return Input.GetButtonUp(buttonName.value);
|
|||
|
|
|||
|
if ( pressType == PressTypes.Pressed )
|
|||
|
return Input.GetButton(buttonName.value);
|
|||
|
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|