You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.3 KiB
37 lines
1.3 KiB
2 years ago
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using UnityEngine;
|
||
|
|
||
|
public class set_bool_of : StateMachineBehaviour
|
||
|
{
|
||
|
// OnStateEnter is called when a transition starts and the state machine starts to evaluate this state
|
||
|
override public void OnStateEnter(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
|
||
|
{
|
||
|
animator.SetBool("Jump", false);
|
||
|
}
|
||
|
|
||
|
// OnStateUpdate is called on each Update frame between OnStateEnter and OnStateExit callbacks
|
||
|
//override public void OnStateUpdate(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
|
||
|
//{
|
||
|
//
|
||
|
//}
|
||
|
|
||
|
// OnStateExit is called when a transition ends and the state machine finishes evaluating this state
|
||
|
//override public void OnStateExit(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
|
||
|
//{
|
||
|
//
|
||
|
//}
|
||
|
|
||
|
// OnStateMove is called right after Animator.OnAnimatorMove()
|
||
|
//override public void OnStateMove(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
|
||
|
//{
|
||
|
// // Implement code that processes and affects root motion
|
||
|
//}
|
||
|
|
||
|
// OnStateIK is called right after Animator.OnAnimatorIK()
|
||
|
//override public void OnStateIK(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
|
||
|
//{
|
||
|
// // Implement code that sets up animation IK (inverse kinematics)
|
||
|
//}
|
||
|
}
|