fourst4r
fourst4r
I cloned a git repo and it automatically converted \n to \r\n in the process since I'm on Windows. So I used the find/replace in files functionality of vscode to...
As per flash docs for DisplayObject.rotation > Indicates the rotation of the DisplayObject instance, in degrees, from its original orientation. Values from 0 to 180 represent clockwise rotation; values from...
**Describe the bug** In Flash, DisplayObject positions are rounded to the nearest twip (https://web.archive.org/web/20220725103035/https://community.adobe.com/t5/animate-discussions/problems-with-sub-pixel-coordinate-movement/m-p/1765225) Because OpenFL's DisplayObject positions are not rounded to the nearest twip, my code ported from AS3...
A little bit ago some inactive accounts were deleted, some of which had beloved levels to their name. Fortunately the deleted accounts' levels remain on the server, but they are...
```haxe function main() { var p:NullString> = () -> "ok"; trace(p?.bind()()); } ``` https://try.haxe.org/#070F275b Looking at the generated js you can see that no null check gets inserted for a...
I noticed this library is not uploaded to lib.haxe.org, is that intentional?
```haxe var i = 1; i += i += 1; // i == 3 ``` will get translated into ```haxe var i = 1; i += 1; i += i;...