projectEli/Assets/NeoFPS/Core/MotionGraphs/Conditions/TriggerCondition.cs

26 lines
724 B
C#
Raw Normal View History

2022-11-07 01:28:33 +00:00
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);
}
}
}