2023-01-07 23:24:18 +08:00
|
|
|
using Game;
|
|
|
|
using System.Collections;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using UnityEngine;
|
|
|
|
|
2023-01-09 00:17:20 +08:00
|
|
|
public class anime_DeadAnimeEnd : StateMachineBehaviour
|
2023-01-07 23:24:18 +08:00
|
|
|
{
|
2023-01-09 00:17:20 +08:00
|
|
|
public int RoleID = 0;
|
|
|
|
public int NodeType = 0;
|
|
|
|
|
2023-01-07 23:24:18 +08:00
|
|
|
// 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)
|
|
|
|
{
|
2023-01-09 00:17:20 +08:00
|
|
|
NodeType = animator.GetInteger("NodeType");
|
|
|
|
RoleID = animator.GetInteger("RoleID");
|
2023-01-07 23:24:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// OnState}Update is called on each Update frame between OnStateEnter and OnStateExit callbacks
|
2023-01-09 00:17:20 +08:00
|
|
|
//override public void OnStateUpdate(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
|
|
|
|
//{
|
|
|
|
//}
|
2023-01-07 23:24:18 +08:00
|
|
|
|
|
|
|
// 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)
|
|
|
|
{
|
2023-01-09 00:17:20 +08:00
|
|
|
AppEntry.Event.Fire(null, RoleDeadAnimeEndEventArgs.Create((E_NODE_TYPE)NodeType,RoleID));
|
2023-01-07 23:24:18 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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)
|
|
|
|
//}
|
|
|
|
}
|