David Konsumer
David Konsumer
Maybe I could write a simple `stub_missing` if there is a non-fatal way to get all the signatures imported from wasm3?
Updating `@raylib/api` to latest seems to fix errors with actual raylib, but then I see other errors with raygui. We may have to split these or work on getting raygui...
I also tested C raylib 4.2 with [this](https://drive.google.com/drive/folders/13_9_rUe-KRrGcVmRBX8IQcg1RHDfC3oe) (with the animation stuff uncommented) and it worked ok (hold space to animate.) https://user-images.githubusercontent.com/83857/203748013-997c5831-e412-49f1-b7af-cfd8604bef2c.mov I compiled with ``` gcc $(pkg-config --cflags --libs...
I think it might be passing a value when it expects a pointer, but I'm not totally sure. (`address=0x1` in error, and I happen to be setting the animation-count to...
Hmm, neither `SetShaderVector4` or `SetShaderVec4 ` are listed on [cheatsheet](https://www.raylib.com/cheatsheet/cheatsheet.html), so the wrapping/typescript-generation code may be out-of-date that includes it, but it's not part of raylib 4.5. I think it...
I saw your other solution on #174 where you use `SetShaderVec4`. Did you get it worked out? I think there may be a mismatch on the typescript generation and raylib...
I really like that, as a solution. essentially leave it up to the user, so they can include either one, since the default import will work fine (in X.)
I would recommend looking at the original [raylib examples](https://github.com/raysan5/raylib/tree/master/examples), which all of our examples are based on. If you can't find an example of what you are trying to do,...
There is no way to auto-detect that a string is URL-encoded over base64, and personally I think it would be a confusing option in the UI, since it's a specific,...
I made these libs: - [rawproto](https://github.com/konsumer/rawproto) - can generate SDL (proto file) and basic JSON from raw proto - [rawprotoparse](https://github.com/konsumer/rawprotoparse) - can generate JSON - [protoquery](https://github.com/konsumer/protoquery) - lets you query...