player-03

Results 356 comments of player-03

My opinion: I prefer RblSb's original proposal over the others, but I find it hard to read and I'm not ready to endorse it. I feel like I'd have trouble...

Actually, roobie linked to [a better explanation of what's wrong](https://blog.codinghorror.com/the-danger-of-naivete/).

Hey, I just noticed this hasn't been merged yet. Why not?

The currently-submitted version is the best I could come up with, but I also tried some alternatives. For the record: - I tried storing data in one big `haxe.io.Bytes` object,...

I'd say the instructions are worded correctly, it's just that users often won't pay close attention to wording. One thing I have seen done is putting "https://" just in front...

What if you could leave out the body of the accessor? ```haxe @:isVar public var property(get, set):T; function get_property():T; function set_property(val:T):T; ``` This removes some of the repetitive code without...

Actually, all of this could be a build macro. For each property field, check if the accessors exist. If not, add them.

> I've also had it working on Hashlink but ever since I've merged this change into 9.0.0-dev I keep getting a strange and seemingly unrelated error: `FATAL ERROR : Invalid...

Oh yeah, if you don't have that merged, you'll need it. Edit: ok, merged into 9.0.0-Dev. You can pull from there.

Digging through the code, it looks like Lime directly reports SDL's values. https://github.com/openfl/lime/blob/58275329cc2e0158d994fe3950ce6498c4bc0388/project/src/backend/sdl/SDLWindow.cpp#L580 I don't know why SDL is returning 0. Over the years, there have been various bug reports...