Ash Blue
Ash Blue
Every time an image is requested it loads a fresh copy off the server. Currently they are not being cached and pulled properly. At load all images should be cached...
I've completed most of a custom Tween library per a request at https://github.com/ashblue/canvas-tween-demo. Just need to move it into Canvas Prime.
A delta should be included in the master loop so time sensitive data can be multiplied by it. For example, updating a square's x position should look like so. ```...
Ability to generate a pre-rendered Canvas on the fly via cp.preRender();
Right now John Resig's JavaScript Prototypical Inheritance script works for what we need, but it suffers from some speed issues and doesn't quite meed the needs of the engine. It...
A grid based level editor that runs in browser and includes entity interaction needs to be included in the game at some point. Needs to at least have basic trigger...
Make sure all timers conform to a delay created by the request animation frame.
A toolbar should be included during development with the following features. - Ability to toggle on and off via local storage or debug variable - Immediate removal of bar and...
Private methods and functions should be used to reduce the scope index size wherever possible. Also a few other things need to be cleaned / done as follows - Reduce...