22 lines
592 B
C#
Raw Permalink Normal View History

using UnityEngine;
namespace BehaviorDesigner.Runtime.Tasks.Unity.UnityInput
{
[TaskCategory("Unity/Input")]
[TaskDescription("Returns success when the specified mouse button is pressed.")]
public class IsMouseUp : Conditional
{
[Tooltip("The button index")]
public SharedInt buttonIndex;
public override TaskStatus OnUpdate()
{
return Input.GetMouseButtonUp(buttonIndex.Value) ? TaskStatus.Success : TaskStatus.Failure;
}
public override void OnReset()
{
buttonIndex = 0;
}
}
}