コード例 #1
0
 public void SetMotionType(AnimationMotionType type)
 {
     if (enableMotionInput)
     {
         animator.SetInteger("MotionType", (int)type);
     }
 }
コード例 #2
0
 public void SetMotionTypeImmediately(AnimationMotionType type)
 {
     animator.SetInteger("MotionType", (int)type);
 }
コード例 #3
0
ファイル: AnimationSys.cs プロジェクト: Visin1991/VRPG-Core
 public void Force_SetMotionType(AnimationMotionType type)
 {
     animator.SetInteger("MotionType", (int)type);
 }