Skip to content

Instantly share code, notes, and snippets.

@johans2
Created February 19, 2021 09:31
Show Gist options
  • Save johans2/e655bfa78182650dd37a59a54fb21fcb to your computer and use it in GitHub Desktop.
Save johans2/e655bfa78182650dd37a59a54fb21fcb to your computer and use it in GitHub Desktop.
StateMachine example state.
public class RunState : StateMachine {
protected override void OnEnter() {
Debug.Log("Enter RunState");
}
protected override void OnUpdate() {
Debug.Log("Updating RunState");
}
protected override void OnExit() {
Debug.Log("Exit JumpState");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment