14 lines
363 B (Stored with Git LFS)
C#
14 lines
363 B (Stored with Git LFS)
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")]
|
|
public class Idle : Action
|
|
{
|
|
public override TaskStatus OnUpdate()
|
|
{
|
|
return TaskStatus.Running;
|
|
}
|
|
}
|
|
} |