blob: 8a783800abb955611faf59eef72c2fec5ed855ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
using UnityEngine;
namespace BehaviorDesigner.Runtime.Tasks.Basic.UnityInput
{
[TaskCategory("Basic/Input")]
[TaskDescription("Returns success when the specified button is pressed.")]
public class IsButtonDown : Conditional
{
[Tooltip("The name of the button")]
public SharedString buttonName;
public override TaskStatus OnUpdate()
{
return Input.GetButtonDown(buttonName.Value) ? TaskStatus.Success : TaskStatus.Failure;
}
public override void OnReset()
{
buttonName = "Fire1";
}
}
}
|