nimraylib_now
nimraylib_now copied to clipboard
The Ultimate Raylib gaming library wrapper for Nim
Heya, I don't get a transparent framebuffer with the window state. Not sure if it's a issue on my end, a issue with raylib itself or with the wrapper. `echo...
The [Bouncing Balls example](https://github.com/greenfork/nimraylib_now/blob/master/examples/shapes/shapes_bouncing_ball.nim) does not compile successsfully and throws an error at isKeyPressed. ``` if isKeyPressed(SPACE): pause = not pause ``` throws ``` C:\Users\risharan\Documents\Dev\nim\nimRaylibNow-starter-template\src\game.nim(56, 20) Error: type mismatch: got...
With the last update shortcuts like `isKeyDown(Right)` broke. We now need to specify the enum type `KeyboardKey.Right`, this is tedious, however there is a working solution. First we `--experimental:overloadableEnums`, added...
After following the readme and doing ``` nimble install nimraylib_now ``` Then trying to run a nim file with just ```nim import nimraylib_now ``` in it With ``` nim c...
It would be nice if we can replace codepoints arrays with seq[Rune]. Need to investigate if such conversion is possible.
Currently crashes on exit. If I remove `closeWindow()`, doesn't crash. Probably because there's a call to `unloadTexture` after the window was closed and that causes the crash. ``` $ cd...
Not everything needs to be wrapped, for example math objects are ok. Fields with naming like xCount need to be write protected. However object like `Mesh` hold collections that need...
This is a genuine question at this point, cause I don't have a plan :P