From e5c9e5e328bfb40e75fc1da5cbbb0ca6fc95df44 Mon Sep 17 00:00:00 2001 From: Ray Date: Thu, 9 Jan 2020 13:57:24 +0100 Subject: [PATCH] Added new categories --- examples/README.md | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) diff --git a/examples/README.md b/examples/README.md index f911d04d8..a1c91ba4c 100644 --- a/examples/README.md +++ b/examples/README.md @@ -98,7 +98,7 @@ Examples using raylib models functionality, including models loading/generation | ## | example | image | developer | new | |----|----------|--------|:----------:|:---:| -| 65 | [models_animation](examples/models/models_animation.c) | models_animation | [culacant](https://github.com/culacant) | | +| 65 | [models_animation](examples/models/models_animation.c) | models_animation | [culacant](https://github.com/culacant) | ⭐️ | | 66 | [models_billboard](examples/models/models_billboard.c) | models_billboard | ray | | | 67 | [models_box_collisions](examples/models/models_box_collisions.c) | models_box_collisions | ray | | | 68 | [models_cubicmap](examples/models/models_cubicmap.c) | models_cubicmap | ray | | @@ -123,8 +123,6 @@ Examples using raylib shaders functionality, including shaders loading, paramete | ## | example | image | developer | new | |----|----------|--------|:----------:|:---:| -| ## | example | image | contributor | recent | -|----|-----------------------------------------------------------------------|-------------------------------------------------------------------------------------------|----------------------------------------------|--------| | 83 | [shaders_basic_lighting](examples/shaders/shaders_basic_lighting.c) | shaders_basic_lighting | [Chris Camacho](https://github.com/codifies) | ⭐️ | | 84 | [shaders_model_shader](examples/shaders/shaders_model_shader.c) | shaders_model_shader | ray | | | 85 | [shaders_shapes_textures](examples/shaders/shaders_shapes_textures.c) | shaders_shapes_textures | ray | | @@ -138,3 +136,27 @@ Examples using raylib shaders functionality, including shaders loading, paramete | 93 | [shaders_eratosthenes](examples/shaders/shaders_eratosthenes.c) | shaders_eratosthenes | [ProfJski](https://github.com/ProfJski) | ⭐️ | | 94 | [shaders_fog](examples/shaders/shaders_fog.c) | shaders_fog | [Chris Camacho](https://github.com/codifies) | ⭐️ | | 95 | [shaders_simple_mask](examples/shaders/shaders_simple_mask.c) | shaders_simple_mask | [Chris Camacho](https://github.com/codifies) | ⭐️ | + +### category: audio + +Examples using raylib audio functionality, including sound/music loading and playing. This functionality is provided by raylib [raudio](../src/raudio.c) module. Note this module can be used standalone independently of raylib, check [raudio_standalone](examples/others/raudio_standalone.c) example. + +| ## | example | image | developer | new | +|----|----------|--------|:----------:|:---:| +| 96 | [audio_module_playing](examples/audio/audio_module_playing.c) | audio_module_playing | ray | | +| 97 | [audio_music_stream](examples/audio/audio_music_stream.c) | audio_music_stream | ray | | +| 98 | [audio_raw_stream](examples/audio/audio_raw_stream.c) | audio_raw_stream | ray | | +| 99 | [audio_sound_loading](examples/audio/audio_sound_loading.c) | audio_sound_loading | ray | | +| 100 | [audio_multichannel_sound](examples/audio/audio_multichannel_sound.c) | audio_multichannel_sound | [Chris Camacho](https://github.com/codifies) | ⭐️ | + +### category: physics + +Examples showing physics functionality with raylib. This functionality is provided by [physac](https://github.com/victorfisac/Physac) library, included with raylib [sources](../src/physac.h). Note this library is not linked with raylib by default, it should be manually included in user code. + +| ## | example | image | developer | new | +|----|----------|--------|:----------:|:---:| +| 101 | [physics_demo](examples/physics/physics_demo.c) | physics_demo | [Victor Fisac](https://github.com/victorfisac) | | +| 102 | [physics_friction](examples/physics/physics_friction.c) | physics_friction | [Victor Fisac](https://github.com/victorfisac) | | +| 103 | [physics_movement](examples/physics/physics_movement.c) | physics_movement | [Victor Fisac](https://github.com/victorfisac) | | +| 104 | [physics_restitution](examples/physics/physics_restitution.c) | physics_restitution | [Victor Fisac](https://github.com/victorfisac) | | +| 105 | [physics_shatter](examples/physics/physics_shatter.c) | physics_shatter | [Victor Fisac](https://github.com/victorfisac) | |