Blatant copy rcorre's 'Fix SetShaderValue and port rlights.'

This commit is contained in:
Not-Nik 2021-07-25 02:19:01 +02:00
parent 3e6462d3af
commit bc85894992
Failed to generate hash of commit
7 changed files with 342 additions and 21 deletions

View file

@ -1,6 +1,6 @@
# 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.
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
@ -9,13 +9,9 @@ Examples using raylib core platform functionality like window creation, inputs,
| ## | 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
@ -24,4 +20,13 @@ Examples using raylib models functionality, including models loading/generation
| ## | example | developer |
|----|----------|:----------:|
| 74 | [models_loading](models/models_loading.zig) ([Won't work](https://github.com/G3bE/raylib-zig#Technical-restrictions)) | ray
| 74 | [models_loading](models/models_loading.zig) | ray
### category: shaders
Examples using raylib shaders functionality, including shaders loading, parameters configuration and drawing using them (model shaders and postprocessing shaders). This
functionality is directly provided by raylib rlgl module.
| ## | example | developer |
|----|----------|:----------:|
| 74 | [shaders_basic_lighting](shaders/shaders_basic_lighting.zig) | [Chris Camacho](https://github.com/codifies)