Terry Cavanagh
Terry Cavanagh
Seems to be a limitation of openfl, but we might be able to override its templates!
Starling is super good at gradient fills, it turns out: ``` var quad:Quad = new Quad(768, 480, Color.RED); quad.setVertexColor(0, Color.RED); quad.setVertexColor(1, Color.GREEN); quad.setVertexColor(2, Color.BLUE); quad.setVertexColor(3, Color.YELLOW); addChild(quad); ``` Would be...
Right now haxegon.com is a static, out of date minimal webpage that doesn't actually link to the github repo, which is much more active. Use github pages to host the...
Have been meaning to do proper examples for the documentation, but in the short term, should AT LEAST have single line simple examples.
HaxePunk got it to work! https://github.com/HaxePunk/HaxePunk/issues/500
Will need to check and throw an error if you try to use this without loading beforehand! You just need two extra commands: `Data.requestasset()` `Data.assetready()`
Tricky one to fix :/
Boo, not sure when this started happening. On my UK keyboard, `SHIFT+2` is ", and `SHIFT+'` is @. On a US keyboard, these are the other way around. The starling...
This would give you autocomplete on dynamic objects, which is very cool! The other way to do this is to use a macro to build this data at compile time,...