There are a few things that Excalibur does that are good to know before you start building games!
Conventions
- 
Excalibur uses a theater metaphor, for example: Scenes, Actors, and Actions.
 - 
Excalibur uses Resources to load external files like images and sounds. They can also be used to load other things like data or config.
 - 
The negative y direction is up, and the positive y direction is down.
 - 
Distance units are in pixels, velocity in pixels per second, and acceleration in pixels per second per second.
 - 
Rotation units are in radians.
 - 
All elapsed times and durations in Excalibur in are milliseconds.
 - 
Actor z-index's follow the browser way of doing things.
- Things with larger positive numbers are on top of lower numbers.
 
 - 
Excalibur handles offscreen draw culling for you! No need to manage that!
 - 
Excalibur uses pre-multiplied alphas when drawing which is important to know if you use Material