您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
49 行
1.8 KiB
49 行
1.8 KiB
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
public class RandomIdleVariant : StateMachineBehaviour
|
|
{
|
|
// OnStateEnter is called before OnStateEnter is called on any state inside this state machine
|
|
override public void OnStateEnter(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
|
|
{
|
|
animator.SetInteger("IdleVariant", Random.Range(0, 4));
|
|
animator.SetFloat("SpeedVariant", Random.Range(0.7f, 1.2f));
|
|
}
|
|
|
|
// OnStateUpdate is called before OnStateUpdate is called on any state inside this state machine
|
|
//override public void OnStateUpdate(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
|
|
//{
|
|
//
|
|
//}
|
|
|
|
// OnStateExit is called before OnStateExit is called on any state inside this state machine
|
|
//override public void OnStateExit(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
|
|
//{
|
|
//
|
|
//}
|
|
|
|
// OnStateMove is called before OnStateMove is called on any state inside this state machine
|
|
//override public void OnStateMove(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
|
|
//{
|
|
//
|
|
//}
|
|
|
|
// OnStateIK is called before OnStateIK is called on any state inside this state machine
|
|
//override public void OnStateIK(Animator animator, AnimatorStateInfo stateInfo, int layerIndex)
|
|
//{
|
|
//
|
|
//}
|
|
|
|
// OnStateMachineEnter is called when entering a state machine via its Entry Node
|
|
//override public void OnStateMachineEnter(Animator animator, int stateMachinePathHash)
|
|
//{
|
|
//
|
|
//}
|
|
|
|
// OnStateMachineExit is called when exiting a state machine via its Exit Node
|
|
//override public void OnStateMachineExit(Animator animator, int stateMachinePathHash)
|
|
//{
|
|
//
|
|
//}
|
|
}
|