update readme
This commit is contained in:
parent
86eecec6b3
commit
53853065d5
2 changed files with 11 additions and 18 deletions
13
BUILDING.rst
13
BUILDING.rst
|
@ -4,7 +4,7 @@ Building from source
|
|||
Have Pip build from source
|
||||
--------------------------
|
||||
|
||||
Useful if the binaries don’t work on your system.
|
||||
Useful if the binaries don’t work on your system, or you want to use a newer version of Raylib.
|
||||
|
||||
Make sure Raylib is installed and then:
|
||||
|
||||
|
@ -123,17 +123,6 @@ Build and install Raylib from the raylib-c directory.
|
|||
cd ../..
|
||||
|
||||
|
||||
.. note:: Optional: Make a patched version of raylib header. (**Not necessary** if
|
||||
you’ve already got raylib_modifed.h from repo and haven’t changed
|
||||
anything.)
|
||||
|
||||
::
|
||||
|
||||
cd raylib
|
||||
cp raylib.h raylib_modified.h
|
||||
patch -p0 <raylib_modified.h.patch
|
||||
cd ..
|
||||
|
||||
Build
|
||||
|
||||
::
|
||||
|
|
16
README.md
16
README.md
|
@ -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
|
||||
original Raylib. Faster, fewer bugs and easier to maintain than ctypes. Commercial-friendly license.
|
||||
Docstrings and auto-completion.
|
||||
New CFFI API static bindings.
|
||||
* Automatically generated to be as close as possible to
|
||||
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)
|
||||
|
||||
|
@ -22,7 +26,7 @@ Docstrings and auto-completion.
|
|||
|
||||
# Installation
|
||||
|
||||
First make sure you have latest pip installed:
|
||||
First make sure you have the latest pip installed:
|
||||
|
||||
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:
|
||||
|
||||
python3 -m pip install raylib==4.0a3
|
||||
python3 -m pip install raylib==4.0a6
|
||||
|
||||
|
||||
# How to use
|
||||
|
|
Reference in a new issue