blob: f1fe4100c7500985eaec6bf4e73aa29cbfbd391d (
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 key is pressed.")]
public class IsKeyDown : Conditional
{
[Tooltip("The key to test")]
public KeyCode key;
public override TaskStatus OnUpdate()
{
return Input.GetKeyDown(key) ? TaskStatus.Success : TaskStatus.Failure;
}
public override void OnReset()
{
key = KeyCode.None;
}
}
}
|