Files
2024-11-20 15:21:28 +01:00

67 lines
1.3 KiB
C#

// (c) Copyright HutongGames, LLC 2010-2013. All rights reserved.
namespace HutongGames.PlayMaker.Actions
{
[ActionCategory(ActionCategory.Logic)]
[Tooltip("Tests if any of the given Bool Variables are True.")]
public class BoolAnyTrue : FsmStateAction
{
[RequiredField]
[UIHint(UIHint.Variable)]
[Tooltip("The Bool variables to check.")]
public FsmBool[] boolVariables;
[Tooltip("Event to send if any of the Bool variables are True.")]
public FsmEvent sendEvent;
[UIHint(UIHint.Variable)]
[Tooltip("Store the result in a Bool variable.")]
public FsmBool storeResult;
[Tooltip("Repeat every frame while the state is active.")]
public bool everyFrame;
public override void Reset()
{
boolVariables = null;
sendEvent = null;
storeResult = null;
everyFrame = false;
}
public override void OnEnter()
{
DoAnyTrue();
if (!everyFrame)
{
Finish();
}
}
public override void OnUpdate()
{
DoAnyTrue();
}
void DoAnyTrue()
{
if (boolVariables.Length == 0)
{
return;
}
storeResult.Value = false;
for (var i = 0; i < boolVariables.Length; i++)
{
if (boolVariables[i].Value)
{
Fsm.Event(sendEvent);
storeResult.Value = true;
return;
}
}
}
}
}