blob: 2cd9f2f429ee7a2f745d436fd3a8e91a3e0f40f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
namespace BehaviorDesigner.Runtime.Tasks
{
[TaskDescription("Returns a TaskStatus of running. Will only stop when interrupted or a conditional abort is triggered.")]
[HelpURL("http://www.opsive.com/assets/BehaviorDesigner/documentation.php?id=112")]
[TaskIcon("{SkinColor}IdleIcon.png")]
public class Idle : Action
{
public override TaskStatus OnUpdate()
{
return TaskStatus.Running;
}
}
}
|