raylibpyctbg icon indicating copy to clipboard operation
raylibpyctbg copied to clipboard

A Python ctypes binding generator for the awesome C library Raylib.

Results 3 raylibpyctbg issues
Sort by recently updated
recently updated
newest added

Please, if it is possible, add support (by json files) for Raylib GUI and Physics addons.

help wanted

There are many types in the __init__.py file with underscores '_int' and '_bool' that cause errors like these: NameError: name '_bool' is not defined. Did you mean: 'bool'?

A minimal example using "scarfy.png" from the raylib examples which has the dimensions 768 x 128 : ```python texture = rl.load_texture("resources/scarfy.png") print("Texture:", texture.id, texture.width, texture.height, texture.mipmaps, texture.format) ``` gives the...

help wanted