update readme

This commit is contained in:
richard 2021-10-16 21:16:52 +01:00
parent 86eecec6b3
commit 53853065d5
2 changed files with 11 additions and 18 deletions

View file

@ -4,7 +4,7 @@ Building from source
Have Pip build from source Have Pip build from source
-------------------------- --------------------------
Useful if the binaries dont work on your system. Useful if the binaries dont work on your system, or you want to use a newer version of Raylib.
Make sure Raylib is installed and then: Make sure Raylib is installed and then:
@ -123,17 +123,6 @@ Build and install Raylib from the raylib-c directory.
cd ../.. cd ../..
.. note:: Optional: Make a patched version of raylib header. (**Not necessary** if
youve already got raylib_modifed.h from repo and havent changed
anything.)
::
cd raylib
cp raylib.h raylib_modified.h
patch -p0 <raylib_modified.h.patch
cd ..
Build Build
:: ::

View file

@ -1,8 +1,12 @@
# Python Bindings for Raylib 3.7 # Python Bindings for Raylib 4.0-dev
New CFFI API static bindings. Automatically generated to be as close as possible to New CFFI API static bindings.
original Raylib. Faster, fewer bugs and easier to maintain than ctypes. Commercial-friendly license. * Automatically generated to be as close as possible to
Docstrings and auto-completion. original Raylib.
* Faster, fewer bugs and easier to maintain than ctypes.
* Commercial-friendly license.
* Docstrings and auto-completion.
* **Now includes extra libraries: raygui, rlgl and physac**
[Full documentation](http://electronstudio.github.io/raylib-python-cffi) [Full documentation](http://electronstudio.github.io/raylib-python-cffi)
@ -22,7 +26,7 @@ Docstrings and auto-completion.
# Installation # Installation
First make sure you have latest pip installed: First make sure you have the latest pip installed:
python3 -m pip install --upgrade pip python3 -m pip install --upgrade pip
@ -49,7 +53,7 @@ There is now a separate dynamic version of this binding:
You can install an alpha or beta version by specifying the version number like this: You can install an alpha or beta version by specifying the version number like this:
python3 -m pip install raylib==4.0a3 python3 -m pip install raylib==4.0a6
# How to use # How to use