Categories
- Air Native Extension
- Animation
- AS3 Game Gears Blog
- Assets
- Augmented Reality
- Authentication
- Backend
- Compression
- Computer Vision
- Cryptography
- Debug
- Decompilers
- Editors
- Engines
- Frameworks
- IA
- IDE
- IM
- Input
- Loaders
- Localization
- Math
- Misc
- Monetization
- Multiplayer
- Obfuscation
- Particles
- Path Finding
- Physics
- Profiling
- Serialization
- Sound
- Stage3D
- State machine
- Testing
- Text
- Tracking
- Tweening
- UI
- Video
- XML
statemachine-as3
Statemachine-as3 is lightweight state machine based on closures. The library comes with two state machine flavours: StateMachine (where transitions are triggered directly) and EventStateMachine (where transitions are triggered by Event and EventDispatcher). Sample //StateMachine var sm : StateMachine…
ActionScript State Machine
ActionScript State Machine is a state machine that optionally supports (using the decorator design pattern) history and event dispatching. Sample public function actionExists(checkAction:String):Boolean public function addAction(fromState:String, toState:String, action:String, handler:Function…
AS3 State Machine
AS3 State Machine allows you to create simple and hierarchical StateMachines. State Machines are composed of states, and each state has (optional) callbacks for entering and exiting state. It’s…
MIT
Comments Off on AS3 State Machine