David Konsumer
David Konsumer
I think for uniformity, it should probly look like this, which maybe we can take up with the upstream parser team: ```json [ { "name": "m0", "type": "float" }, {...
Yep, I did similar, I just have an ignore list, and I added it to the top of the other files. I suspect it will never change.
> Is there a way to (when developing) configure cmake to only clone the raylib repo once? I am not sure. I noticed this problem, too. very annoying. For end-users...
I looked into cmake git prob more. I think it might be related to npm/cmake-js. if I make a new dir and run `cmake ..` it caches it, properly. It's...
> Also, a lot of the errors with Matrix were that there wasn't a conversion in ToValue.h (since its being filtered out) so I hardcoded one to that section as...
I talked to ray on discord. He said he likes the visual structure of `Matrix` in original header, but would consider changing the parser to output more like we want...
Ok, so this weekend I have a little time to look at this. Seems like remaining issues are sized-arrays like this: ``` ToObject.h: In function ‘Material ToMaterial(Napi::Env&, const Napi::Value&)’: ToObject.h:818:16:...
With help from @RobLoach I got [my fork](https://github.com/notnullgames/node-raylib/tree/raylib4) generating & building from current JSON, and able to run basic example on raylib4. It's still missing a few things (mostly around...
> In general, after looking more closely at raylib and how its functions work, there are a lot more functions that while compiling fine won't have the expected behavior, which...
I currently expose all the constants in the c-wrapper. It might be fine, as it would be an at-import cost, and my feeling is it would actually be pretty light,...