nimraylib_now icon indicating copy to clipboard operation
nimraylib_now copied to clipboard

The Ultimate Raylib gaming library wrapper for Nim

Results 20 nimraylib_now issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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...

help wanted
windows
windows11

It would be nice if we can replace codepoints arrays with seq[Rune]. Need to investigate if such conversion is possible.

enhancement

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...

enhancement

This is a genuine question at this point, cause I don't have a plan :P

enhancement