Andrei Kurosh
Andrei Kurosh
Structs are an extremely broken feature which any sane and competent programmer should completely avoid: * Are copied by value, leading to unexpected behavior, e.g. `arrayOfStruct[1].Field = 1` is fine...
When using a self-closing tag in the included template, the slash is lost in the output, For example: `template.html`: ``` ``` `control.js`: ``` import template from './template.html'; ``` Result: ```...
Angular2 used to provide SystemJS bundles in their older package (`angular2`), but they stopped doing so after RC. I tried to use `gulp-jspm-build` to create such a package myself, but...
Shaders
* [x] Infrastructure * [x] Shader support in DynamicObject * [x] Platform-specific libraries * [ ] Effects * [x] Gaussian blur * [x] Radial blur (https://www.shadertoy.com/view/XsfSDs) * [x] Color /...
We need an example project that shows how to use the engine.
Create the wiki for the project with detailed guides and documentation.
An easy-to-use state machine implementation may be useful for things like: * Animation transitions * Dialog branches * etc...
Each character is a separate TextString. * [ ] Per-character styling by tags * [ ] Typing effect * [ ] Auto-break on max width
Rendering performance depends on the order of rendering object. Less spritebatches and render target switches is always better. Therefore, the engine should have an ability to reorder object graph for...