您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
27 行
850 B
27 行
850 B
using UnityEngine;
|
|
using UOP1.StateMachine;
|
|
using UOP1.StateMachine.ScriptableObjects;
|
|
|
|
[CreateAssetMenu(fileName = "IsSliding", menuName = "State Machines/Conditions/Is Sliding")]
|
|
public class IsSlidingConditionSO : StateConditionSO<IsSlidingCondition> { }
|
|
|
|
public class IsSlidingCondition : Condition
|
|
{
|
|
private CharacterController _characterController;
|
|
private Protagonist _protagonistScript;
|
|
|
|
public override void Awake(StateMachine stateMachine)
|
|
{
|
|
_characterController = stateMachine.GetComponent<CharacterController>();
|
|
_protagonistScript = stateMachine.GetComponent<Protagonist>();
|
|
}
|
|
|
|
protected override bool Statement()
|
|
{
|
|
if (_protagonistScript.lastHit == null)
|
|
return false;
|
|
|
|
float currentSlope = Vector3.Angle(Vector3.up, _protagonistScript.lastHit.normal);
|
|
return (currentSlope >= _characterController.slopeLimit);
|
|
}
|
|
}
|