mirror of
https://github.com/Not-Nik/raylib-zig.git
synced 2025-09-09 12:07:27 +00:00
28 lines
1.0 KiB
Markdown
Executable File
28 lines
1.0 KiB
Markdown
Executable File
# Examples
|
|
Making raylib bindings in zig is pretty straight forward since zig has a built-in c parser, so I am now on a quest to port all the examples.
|
|
|
|
|
|
### category: core
|
|
|
|
Examples using raylib core platform functionality like window creation, inputs, drawing modes and system functionality.
|
|
|
|
| ## | example | developer |
|
|
|----|----------|:----------:|
|
|
| 01 | [core_basic_window](core/basic_window.zig) | ray
|
|
| |
|
|
| 02 | [core_input_keys](core/input_keys.zig) | ray
|
|
| |
|
|
| 04 | [core_input_mouse_wheel](core/input_mouse_wheel.zig) | ray
|
|
| |
|
|
| 06 | [core_input_multitouch](core/input_multitouch.zig) | [Berni](https://github.com/Berni8k)
|
|
| |
|
|
| 08 | [core_2d_camera](core/2d_camera.zig) | ray
|
|
|
|
### category: models
|
|
|
|
Examples using raylib models functionality, including models loading/generation and drawing, provided by raylib models module.
|
|
|
|
| ## | example | developer |
|
|
|----|----------|:----------:|
|
|
| 74 | [models_loading](models/models_loading.zig) ([Won't work](https://github.com/G3bE/raylib-zig#Technical-restrictions)) | ray
|