Jarrio
Jarrio
Do you have any advice on how to work around this issue? ```Access to fetch at 'https://www.bitmex.com/api/v1/trade/bucketed?binSize=5m' from origin 'http://192.168.0.8:3000' has been blocked by CORS policy: No 'Access-Control-Allow-Origin' header is...
This happens occasionally depending on what frameworks you're working with. It is definitely related to this library, and could be related to macro changes in haxe 4. Currently running haxe...
## Setup ``` VSCode: 1.20.1 Kha: Git Haxe: 4.0.0 Preview 3 HXCPP: 3.4.196 ``` ## Test Case Main.hx ```haxe package; import kha.System; class Main { public static function main() {...
As discussed on the discord `System.notifyOnFrames((frames) -> Game.framebuffer = frames[0]);` is bad and can cause bad things.
I believe this issue is unique to Kha as I've tried 2 different debuggers and both seem to work in Haxe, OpenFL and with Haxeflixel. I think it would be...
I just had an issue where a local variable named `haxe` was causing my trace line to report an error. It wasn't immediately obvious that it was due to this...
testcase: ```hx function foo() { var body = ''; var answers = []; for (i => ans in answers) { if (ans == null) { continue; } body += switch...
```hx class Test { static function main() { var now = Date.now().getTime() - Foo.a; trace(now); } } enum abstract Foo(Float) to Float { var a = 10000001; } ``` This...