projectEli/Assets/NeoFPS/Core/MotionGraphs/Conditions/TriggerCondition.cs
2022-11-06 20:28:33 -05:00

26 lines
724 B
C#

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using NeoFPS.CharacterMotion.Parameters;
namespace NeoFPS.CharacterMotion.Conditions
{
[MotionGraphElement("Parameters/Trigger")]
public class TriggerCondition : MotionGraphCondition
{
[SerializeField] private TriggerParameter m_Property = null;
public override bool CheckCondition(MotionGraphConnectable connectable)
{
if (m_Property == null)
return false;
else
return m_Property.CheckTrigger();
}
public override void CheckReferences(IMotionGraphMap map)
{
m_Property = map.Swap(m_Property);
}
}
}