raylibpyctbg
raylibpyctbg copied to clipboard
A Python ctypes binding generator for the awesome C library Raylib.
Please, if it is possible, add support (by json files) for Raylib GUI and Physics addons.
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...