SHADE_Y3/Assets/Scripts/Gameplay/Player/PlayerStates/UT_PlayerRunState.cs

47 lines
1002 B
C#
Raw Normal View History

using SHADE;
using System;
public class PlayerRunState : BaseState
{
2022-11-21 21:01:44 +08:00
private float timer;
private float delay = 0.25f;
2023-03-10 16:26:52 +08:00
public PlayerRunState(StateMachine stateMachine) : base(stateMachine)
{
2022-11-21 21:01:44 +08:00
stateName = "Run State";
}
public override void OnEnter()
{
//Debug.Log("WALK ENTER");
2023-03-10 16:26:52 +08:00
if (PlayerAnimations.Instance)
{
PlayerAnimations.Instance.playerAnimator.Play(PlayerAnimations.Instance.playerRunClip);
PlayerAnimations.Instance.BagAnimator.Play(PlayerAnimations.Instance.playerRunClip);
}
}
public override void update()
{
//Debug.Log("WALKING");
2022-11-21 21:01:44 +08:00
timer += Time.DeltaTimeF;
if (timer > delay)
{
2022-11-23 00:44:27 +08:00
Audio.PlaySFXOnce2D("event:/Raccoon/raccoon_footsteps");
2022-11-21 21:01:44 +08:00
timer = 0;
}
}
public override void fixedUpdate()
{
//Debug.Log("FIXED WALKING");
}
public override void OnExit()
{
//Debug.Log("WALK EXIT");
}
public override void onTriggerEnter(CollisionInfo info)
{
//Debug.Log("TRIGGER");
}
}