57 lines
1.4 KiB
ReStructuredText
57 lines
1.4 KiB
ReStructuredText
raylib.pyray
|
|
============
|
|
|
|
.. comment::
|
|
|
|
Link to API reference:
|
|
toctree::
|
|
:maxdepth: 1
|
|
|
|
autoapi/raylib/pyray/index
|
|
|
|
|
|
This is a wrapper around the static bindings.
|
|
|
|
The API is *still the same as Raylib*, so you should still reply on `the official Raylib docs <https://www.raylib.com/cheatsheet/cheatsheet.html>`_, except:
|
|
|
|
* the function names are in **snake_case**.
|
|
|
|
* Some string and pointer conversions are handled automatically.
|
|
|
|
* There are some helper functions to create structures.
|
|
|
|
Example program:
|
|
|
|
.. code-block::
|
|
|
|
from raylib.pyray import PyRay
|
|
from raylib.colors import *
|
|
|
|
pyray = PyRay()
|
|
|
|
pyray.init_window(800, 450, "Hello Pyray")
|
|
pyray.set_target_fps(60)
|
|
|
|
camera = pyray.Camera3D([18.0, 16.0, 18.0], [0.0, 0.0, 0.0], [0.0, 1.0, 0.0], 45.0, 0)
|
|
pyray.set_camera_mode(camera, pyray.CAMERA_ORBITAL)
|
|
|
|
while not pyray.window_should_close():
|
|
pyray.update_camera(camera)
|
|
pyray.begin_drawing()
|
|
pyray.clear_background(RAYWHITE)
|
|
pyray.begin_mode_3d(camera)
|
|
pyray.draw_grid(20, 1.0)
|
|
pyray.end_mode_3d()
|
|
pyray.draw_text("Hello world", 190, 200, 20, VIOLET)
|
|
pyray.end_drawing()
|
|
pyray.close_window()
|
|
|
|
|
|
See also https://github.com/electronstudio/raylib-python-cffi/blob/master/test_pyray.py
|
|
|
|
API reference
|
|
-------------
|
|
|
|
.. autoapimodule:: raylib.pyray
|
|
:members:
|
|
:undoc-members:
|