Terry Cavanagh
Terry Cavanagh
For a little while now, I've been using haxegon with old versions of the tools. It's be nice to get it back up and running with the latest versions -...
To be honest, last time I looked into Intellij I wasn't personally a big fan - it requires a lot more familarity with coding than I expect a new user...
See @randomnine contributions
I end up doing a quick deltatime implementation for every new project. Just add it to the library already! Consideration: if I have both `update()` and `render()` functions, do I...
Haxegon's current packed texture behaviour is: - Scan the graphics folder on startup for packed texture index files. - When found, preload the image and create `HaxegonImage` objects for all...
Haxegon depends on a custom modified version of Starling. Those changes could be pulled back into private functions in Haxegon, allowing Haxegon to work with an unmodified version of Starling!...
Say we have a font `My-Font-Bold.ttf` and we want to use it in haxegon. All the following should work: ``` haxe Text.font = "My-Font-Bold"; Text.font = "my-font-bold"; Text.font = "my-font-bold.ttf";...
Make separate blankproject.zip files for each platform, with shell scripts to compile on each. e.g. on mac: ``` bash #!/bin/bash DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) cd...
See openfl for good examples. This is currently implemented in a really nonstandard/inconsistent way