Files
BH3/Assets/Plugins/Assembly-CSharp-firstpass/BehaviorDesigner/Runtime/Tasks/Composite.cs
2025-08-13 09:26:42 +08:00

20 lines
404 B
C#

using UnityEngine;
namespace BehaviorDesigner.Runtime.Tasks
{
public abstract class Composite : ParentTask
{
[SerializeField]
[Tooltip("Specifies the type of conditional abort. More information is located at http://www.opsive.com/assets/BehaviorDesigner/documentation.php?id=89.")]
protected AbortType abortType;
public AbortType AbortType
{
get
{
return abortType;
}
}
}
}