您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
55 行
1.7 KiB
55 行
1.7 KiB
using UnityEngine;
|
|
using NaughtyAttributes;
|
|
|
|
|
|
namespace GameplayIngredients.Actions
|
|
{
|
|
public enum AnimatorParameterType { Bool, Float, Int, Trigger };
|
|
|
|
public class SetAnimatorParameterAction : ActionBase
|
|
{
|
|
public Animator animator;
|
|
public string parameterName;
|
|
[OnValueChanged("OnParameterTypeChanged")]
|
|
public AnimatorParameterType parameterType = AnimatorParameterType.Bool;
|
|
|
|
bool showFloat;
|
|
bool showInt;
|
|
bool showBool = true;
|
|
[ShowIf("showFloat")]
|
|
public float floatValue;
|
|
[ShowIf("showInt")]
|
|
public int intValue;
|
|
[ShowIf("showBool")]
|
|
public bool boolValue;
|
|
|
|
public override void Execute(GameObject instigator = null)
|
|
{
|
|
if (animator == null)
|
|
return;
|
|
|
|
switch (parameterType)
|
|
{
|
|
case AnimatorParameterType.Bool:
|
|
animator.SetBool(parameterName, boolValue);
|
|
break;
|
|
case AnimatorParameterType.Float:
|
|
animator.SetFloat(parameterName, floatValue);
|
|
break;
|
|
case AnimatorParameterType.Int:
|
|
animator.SetInteger(parameterName, intValue);
|
|
break;
|
|
case AnimatorParameterType.Trigger:
|
|
animator.SetTrigger(parameterName);
|
|
break;
|
|
}
|
|
}
|
|
|
|
private void OnParameterTypeChanged()
|
|
{
|
|
showBool = (parameterType == AnimatorParameterType.Bool);
|
|
showFloat = (parameterType == AnimatorParameterType.Float);
|
|
showInt = (parameterType == AnimatorParameterType.Int);
|
|
}
|
|
}
|
|
}
|