Skip to content
Entertainment Computing 2019

Entertainment Computing 2019

Just another Kyoung Shin Park’s Lectures Sites site

Posted on April 3, 2019April 11, 2019 by kpark

Unity Gems Finite State Machine (FSM)

Unity Gems: Advanced Tutorial on Finite State Machines

http://forum.unity3d.com/threads/unity-gems-advanced-tutorial-on-finite-state-machines.156878/

public enum EnemyStates
{
    sleeping = 0,
    following = 1,
    attacking = 2,
    beingHit = 3,
    dying = 4
}
public EnemyStates currentState = EnemyStates.sleeping;

http://unityindepth.tistory.com/27

CategoriesLecture Note, Project

Post navigation

Previous PostPrevious Pounce Game Mouse Character FSM
Next PostNext HW5

Recent Posts

  • Final Take-Home Exam
  • Term Project – Final
  • lecture12
  • lecture11
  • lecture10

Recent Comments

    Archives

    • June 2019
    • May 2019
    • April 2019
    • March 2019
    • January 2019

    Categories

    • Lecture Note
    • Project
    • Readings
    • Uncategorized

    Meta

    • Log in
    • Entries RSS
    • Comments RSS
    • WordPress.org
    Proudly powered by WordPress