Misiur
Misiur
I'm quite sure that's my fault, but better report it anyway: Worker: https://gist.github.com/Misiur/10474536 Listener: https://gist.github.com/Misiur/10474572 Services: https://gist.github.com/Misiur/10474669 What am I doing wrong here? Only the created event raises and error...
Minimal reproduction: ```haxe package; import ecx.common.EcxCommon; import ecx.WorldConfig; import ecx.World; import ecx.Entity; import ecx.Engine; class Main { private var _world:World; public static function main() { new Main(); } public function...
It seems that when doing `world.invalidate` nothing gets updated immediately, I have to manually add `_component.has(entity)` checks in systems to make sure component was removed. Any ideas how to circumvent...
Hi @Y-Less , did you delete the 3.1 branch?
Continuation of https://github.com/openfl/openfl/issues/1204 as I didn't find a solution. Windows 7x64 Steps to reproduce: 1. Install git bash/mingw 2. `openfl create project Foo` 3. In `Main` add line `trace(1.0 +...
Steps to reproduce: try to run `flambe run android --debug` Without debug flag works fine. Windows 7 x64 latest AIR, and flambe. Tried with android v4.0.4 SO question: http://stackoverflow.com/questions/34595814/adt-launchapp-fails-with-epipe-error
I can't pinpoint it but with a few YSI 5.x libraries it segfaults.
Adding $15 bounty. I require windows and linux support. I require those test cases: 1. Local inclusion with both backward and forward slash 2. Global inclusion with respecting `-i` flag...
Tag mismatch
```pawn #include enum E_TEST { E_WTF[32] } main () { new test[E_TEST]; (test[E_WTF])[0] = EOS; // Tag mismatch (_:test[E_WTF])[0] = EOS; // Still tag mismatch (test[E_WTF])[E_TEST:0] = EOS; // No...