Matt Tuttle
Matt Tuttle
:+1: NME takes a good 10 minutes for me in the central US. Most other libraries are not a problem since they usually fall under 1MB.
I think I had to setup my socket as blocking and run in a thread. I'll see what I can do about getting an example up.
Technically UDP was never officially added to Haxe. It was planned for a release in Neko but it had to be compiled from source. They haven't done a binary release...
Yeah, multiple tilesets should have better support. I haven't looked into it fully but aren't there cases where map.tilesets need to be populated with the actual bitmap data? Maybe that's...
Couldn't you use `sys.io.Process`? This allows you to write to stdin.
At one point this was working with openfl. I'm assuming the gl context gets lost but I'm not sure what the fix would be.
I've had to open Sublime from the terminal for certain commands due to the way paths are setup. I use `subl .` to launch sublime for the current directory. http://www.sublimetext.com/docs/2/osx_command_line.html
Try using something like `launchctl setenv PATH $PATH` to set your environment variables on OSX. I just found out about this the other day so hopefully it helps. There may...
OSX is weird in that the paths set in the terminal are different than the ones use for visual apps. NodeJS is usually the reason it fails because OSX can't...
`Date.getTime()` returns a different value on Lua, Python, and PHP apparently. I had to increment the day by one on those targets. There's also some inconsistencies on Windows and Mac...