Difference between revisions of "Parallel State Machine Design"
From SWGANH Wiki
(→Abstract State) |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 2: | Line 2: | ||
Methods: | Methods: | ||
− | Entry(ActorState, State) | + | Entry(ActorState, State)<br /> |
− | Exit(ActorState, State) | + | Exit(ActorState, State)<br /> |
+ | Transition(ActorState, State) | ||
== Action State == | == Action State == | ||
+ | OnEntry(ActorState, State)<br /> | ||
+ | OnExit(ActorState, State)<br /> | ||
+ | OnTransition(ActorState, State)<br /> | ||
== Locomotion State == | == Locomotion State == | ||
+ | OnEntry(ActorState, State)<br /> | ||
+ | OnExit(ActorState, State)<br /> | ||
+ | OnTransition(ActorState, State)<br /> | ||
== Posture State == | == Posture State == | ||
+ | OnEntry(ActorState, State)<br /> | ||
+ | OnExit(ActorState, State)<br /> | ||
+ | OnTransition(ActorState, State)<br /> | ||
== StateManager == | == StateManager == |
Latest revision as of 14:51, 23 January 2012
Abstract State
Methods:
Entry(ActorState, State)
Exit(ActorState, State)
Transition(ActorState, State)
Action State
OnEntry(ActorState, State)
OnExit(ActorState, State)
OnTransition(ActorState, State)
Locomotion State
OnEntry(ActorState, State)
OnExit(ActorState, State)
OnTransition(ActorState, State)
Posture State
OnEntry(ActorState, State)
OnExit(ActorState, State)
OnTransition(ActorState, State)