-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathREADME
16 lines (12 loc) · 858 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Modular JavaScript Framework HTML5 Game Development
===================================================
Provides important libraries for developing JavaScript games in the browser.
Defines the main PixieEngine GameObject and includes mixins to easily augment their behavior.
Mixins
- Bounded: access the GameObject's bounding box. Useful to pass into collision code.
- Drawable: provides a simple draw method to the including object.
- Durable: cause GameObjects to be destroyed after a given duration.
- Emitter / Emitterable: A parameterizable system for creating particles
- Movable: Provides a basic position update according to velocity and acceleration.
- Rotatable: Rotate a GameObject based on a rotational velocity you define.
Common helper classes are included as well such as basic collisions, sprites, a drawing helper, and a particle system.