raylib-py icon indicating copy to clipboard operation
raylib-py copied to clipboard

A Python binding for the great C library raylib.

Results 21 raylib-py issues
Sort by recently updated
recently updated
newest added

`python -m pip install raylip-py` needs to be `python -m pip install raylib-py`

The `_vec4` function had the incorrect type hint of `'Vector3'` I have changed this to `'Vector4'`

I noticed this issue when I blindly copy-and-pasted that line into my terminal. I should probably be a bit more careful with random terminal commands I find online...

Hello, I really like raylib and it works without any problem in C Today i wanted to use it inside python, I did`pip install raylib-py` then opened a python terminal...

It looks like there was a typo in the `draw_line_ex` function that made it unusable. It tried to coerce the `thick` parameter (a float) into a vec2, then back into...

I'm trying to run one of the examples: ```python import os os.environ["RAYLIB_BIN_PATH"] = "libraylib.dll" from raylibpy import * init_window(800, 450, "raylib [core] example - basic window") set_target_fps(60) while not window_should_close():...

Like i said: font = load_font("/xxx/KAISG.ttf") draw_text_ex(font, "asdasd", Vector2(19, 640), 30, 2, BLACK) Doing nothing

Referring both to https://github.com/raysan5/raylib/blob/2.0.0/src/raylib.h and analysis of released DLL with DependencyWalker. The `__init__.py` attempts to load the following functions which do not exist in the 2.0 release of raylib -...

Problem Statement: `examples/models/models_heightmap.py` shows that textures are not applied when rendering models. Raylib-C Equivalent Example (Shows darkened edges of the model due to texture used): ![image](https://user-images.githubusercontent.com/28033767/53702536-179d6f00-3dd6-11e9-9282-c7b4bca887ef.png) Raylib-Py Example of Issue...

It may seem that this project is abandoned and, in some sense it is. In the first days of this project I encountered some difficulties related to the maintenance of...