raylib-ocaml
raylib-ocaml copied to clipboard
OCaml bindings for raylib and raygui
New raylib version just released https://github.com/raysan5/raylib/releases/tag/4.2.0 Might be a good reason to try out the new dune ctypes stanza
Is it possible to add bindings to access `Mesh` fields which is useful for mesh generation like [here](https://github.com/raysan5/raylib/blob/master/examples/models/models_mesh_generation.c)? I've seen such bindings in old version of raylib-ocaml (0.2.0 I think),...
are there plans to support [raygui](https://github.com/raysan5/raygui)? It'd be useful to get a quick GUI running in OCaml…
Reported on discord. We might be able to add this build to actions using an m1 runner. setup-ocaml should have support for it, according to https://github.com/ocaml/setup-ocaml/pull/536 and https://github.com/rescript-lang/rescript-compiler/pull/5415/files. This would...
I was wondering whether you think it's possible to export raylib-ocaml games to WASM?
When I call `Raygui.text_box bounds text edit_mode` the result will append the byte `0` onto `text` even if no key has been pressed. I can work around this by trimming...