mirror of
https://github.com/tym1116/BH3.git
synced 2025-12-19 09:54:46 +01:00
20 lines
404 B
C#
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;
|
|
}
|
|
}
|
|
}
|
|
}
|