コード例 #1
0
 public static void SetTrigger(this Animator @this, UnityAnimationParameter parameter)
 {
     @this.SetTrigger(parameter.name);
 }
コード例 #2
0
 public static void SetBool(this Animator @this, UnityAnimationParameter parameter, bool value)
 {
     @this.SetBool(parameter.name, value);
 }
コード例 #3
0
 public static void SetFloat(this Animator @this, UnityAnimationParameter parameter, float value)
 {
     @this.SetFloat(parameter.name, value);
 }