SHADE_Y3/Assets/Scripts/Gameplay/Player/UT_PlayerWalkState.cs

32 lines
571 B
C#
Raw Normal View History

using SHADE;
using System;
public class PlayerWalkState : BaseState
{
public PlayerWalkState(StateMachine stateMachine) : base(stateMachine)
{
stateName = "Walk State";
}
public override void OnEnter()
{
//Debug.Log("WALK ENTER");
}
public override void update()
{
//Debug.Log("WALKING");
}
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");
}
}