mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-19 09:54:46 +01:00
14 lines
405 B
C#
14 lines
405 B
C#
namespace BehaviorDesigner.Runtime.Tasks
|
|
{
|
|
[TaskDescription("Returns a TaskStatus of running. Will only stop when interrupted or a conditional abort is triggered.")]
|
|
[TaskIcon("{SkinColor}IdleIcon.png")]
|
|
[HelpURL("http://www.opsive.com/assets/BehaviorDesigner/documentation.php?id=112")]
|
|
public class Idle : Action
|
|
{
|
|
public override TaskStatus OnUpdate()
|
|
{
|
|
return TaskStatus.Running;
|
|
}
|
|
}
|
|
}
|