23 lines
596 B (Stored with Git LFS)
C#
23 lines
596 B (Stored with Git LFS)
C#
namespace BehaviorDesigner.Runtime.Tasks.Unity.Math
|
|
{
|
|
[TaskCategory("Unity/Math")]
|
|
[TaskDescription("Sets a bool value")]
|
|
public class SetBool : Action
|
|
{
|
|
[Tooltip("The bool value to set")]
|
|
public SharedBool boolValue;
|
|
[Tooltip("The variable to store the result")]
|
|
public SharedBool storeResult;
|
|
|
|
public override TaskStatus OnUpdate()
|
|
{
|
|
storeResult.Value = boolValue.Value;
|
|
return TaskStatus.Success;
|
|
}
|
|
|
|
public override void OnReset()
|
|
{
|
|
boolValue = false;
|
|
}
|
|
}
|
|
} |