Eric Lund
Eric Lund
Consider moving into InputService?
When monospace is used and a space character is passed, bitmap text returns "Error determining space width."
Add an Entity mixin class, so we can extend the behavior of Entities.
Layout system is fairly basic and buggy right now. Reimplement it with an a new manner of cascading/inheriting transforms and/or other properties.
Look into supporting alternate frame rates, such as a time accumulator (semi-fixed time step), variable with min/max limiter, and dual frame rates (fixed for physics/game logic, variable for particle effects...
Look into adding some mechanism for creating and caching static components on the fly. Some ideas: ``` haxe var image = Image.cache("art/mybutt.png"); // cleanest but possibly most work; macro magic?...
Instead of doing `newSetEntity("mySet", "myPrefix")` I'd like to be able to eliminate the prefix, and have the prefix picked up from the set itself. For example, `newComponentSet("mySet", "myPrefix")`. Also it...