Skip to content

Commit 27e530e

Browse files
authored
update examples with difficulty stars (#4694)
* update examples with difficulty stars * manual fix script issues * manual fix script issues
1 parent 7c7b087 commit 27e530e

File tree

132 files changed

+269
-5
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+269
-5
lines changed

examples/audio/audio_mixed_processor.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [audio] example - Mixed audio processing
44
*
5+
* Example complexity rating: [★★★★] 4/4
6+
*
57
* Example originally created with raylib 4.2, last time updated with raylib 4.2
68
*
79
* Example contributed by hkc (@hatkidchan) and reviewed by Ramon Santamaria (@raysan5)

examples/audio/audio_module_playing.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [audio] example - Module playing (streaming)
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Example originally created with raylib 1.5, last time updated with raylib 3.5
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/audio/audio_music_stream.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [audio] example - Music playing (streaming)
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Example originally created with raylib 1.3, last time updated with raylib 4.0
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/audio/audio_raw_stream.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [audio] example - Raw audio streaming
44
*
5+
* Example complexity rating: [★★★☆] 3/4
6+
*
57
* Example originally created with raylib 1.6, last time updated with raylib 4.2
68
*
79
* Example created by Ramon Santamaria (@raysan5) and reviewed by James Hofmann (@triplefox)

examples/audio/audio_sound_loading.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [audio] example - Sound loading and playing
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Example originally created with raylib 1.1, last time updated with raylib 3.5
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/audio/audio_sound_multi.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [audio] example - Playing sound multiple times
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* Example originally created with raylib 4.6
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/audio/audio_stream_effects.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [audio] example - Music stream processing effects
44
*
5+
* Example complexity rating: [★★★★] 4/4
6+
*
57
* Example originally created with raylib 4.2, last time updated with raylib 5.0
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_2d_camera.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - 2D Camera system
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* Example originally created with raylib 1.5, last time updated with raylib 3.0
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_2d_camera_mouse_zoom.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - 2d camera mouse zoom
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* Example originally created with raylib 4.2, last time updated with raylib 4.2
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_2d_camera_platformer.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - 2D Camera platformer
44
*
5+
* Example complexity rating: [★★★☆] 3/4
6+
*
57
* Example originally created with raylib 2.5, last time updated with raylib 3.0
68
*
79
* Example contributed by arvyy (@arvyy) and reviewed by Ramon Santamaria (@raysan5)

examples/core/core_2d_camera_split_screen.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - 2d camera split screen
44
*
5+
* Example complexity rating: [★★★★] 4/4
6+
*
57
* Addapted from the core_3d_camera_split_screen example:
68
* https://github.com/raysan5/raylib/blob/master/examples/core/core_3d_camera_split_screen.c
79
*

examples/core/core_3d_camera_first_person.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - 3d camera first person
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* Example originally created with raylib 1.3, last time updated with raylib 1.3
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_3d_camera_free.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Initialize 3d camera free
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Example originally created with raylib 1.3, last time updated with raylib 1.3
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_3d_camera_mode.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Initialize 3d camera mode
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Example originally created with raylib 1.0, last time updated with raylib 1.0
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_3d_camera_split_screen.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - 3d cmaera split screen
44
*
5+
* Example complexity rating: [★★★☆] 3/4
6+
*
57
* Example originally created with raylib 3.7, last time updated with raylib 4.0
68
*
79
* Example contributed by Jeffery Myers (@JeffM2501) and reviewed by Ramon Santamaria (@raysan5)

examples/core/core_3d_picking.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Picking in 3d mode
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* Example originally created with raylib 1.3, last time updated with raylib 4.0
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_automation_events.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - automation events
44
*
5+
* Example complexity rating: [★★★☆] 3/4
6+
*
57
* Example originally created with raylib 5.0, last time updated with raylib 5.0
68
*
79
* Example based on 2d_camera_platformer example by arvyy (@arvyy)

examples/core/core_basic_screen_manager.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] examples - basic screen manager
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* NOTE: This example illustrates a very simple screen manager based on a states machines
68
*
79
* Example originally created with raylib 4.0, last time updated with raylib 4.0

examples/core/core_basic_window.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Basic window
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Welcome to raylib!
68
*
79
* To test examples, just press F6 and execute 'raylib_compile_execute' script

examples/core/core_custom_frame_control.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - custom frame control
44
*
5+
* Example complexity rating: [★★★★] 4/4
6+
*
57
* NOTE: WARNING: This is an example for advanced users willing to have full control over
68
* the frame processes. By default, EndDrawing() calls the following processes:
79
* 1. Draw remaining batch data: rlDrawRenderBatchActive()

examples/core/core_custom_logging.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Custom logging
44
*
5+
* Example complexity rating: [★★★☆] 3/4
6+
*
57
* Example originally created with raylib 2.5, last time updated with raylib 2.5
68
*
79
* Example contributed by Pablo Marcos Oltra (@pamarcos) and reviewed by Ramon Santamaria (@raysan5)

examples/core/core_drop_files.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Windows drop files
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* NOTE: This example only works on platforms that support drag & drop (Windows, Linux, OSX, Html5?)
68
*
79
* Example originally created with raylib 1.3, last time updated with raylib 4.2

examples/core/core_input_gamepad.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Gamepad input
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* NOTE: This example requires a Gamepad connected to the system
68
* raylib is configured to work with the following gamepads:
79
* - Xbox 360 Controller (Xbox 360, Xbox One)

examples/core/core_input_gestures.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Input Gestures Detection
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* Example originally created with raylib 1.4, last time updated with raylib 4.2
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_input_keys.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Keyboard input
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Example originally created with raylib 1.0, last time updated with raylib 1.0
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_input_mouse.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Mouse input
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Example originally created with raylib 1.0, last time updated with raylib 5.5
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_input_mouse_wheel.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] examples - Mouse wheel input
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Example originally created with raylib 1.1, last time updated with raylib 1.3
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_input_multitouch.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Input multitouch
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Example originally created with raylib 2.1, last time updated with raylib 2.5
68
*
79
* Example contributed by Berni (@Berni8k) and reviewed by Ramon Santamaria (@raysan5)

examples/core/core_loading_thread.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - loading thread
44
*
5+
* Example complexity rating: [★★★☆] 3/4
6+
*
57
* NOTE: This example requires linking with pthreads library on MinGW,
68
* it can be accomplished passing -static parameter to compiler
79
*

examples/core/core_random_values.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Generate random values
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Example originally created with raylib 1.1, last time updated with raylib 1.1
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_scissor_test.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Scissor test
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Example originally created with raylib 2.5, last time updated with raylib 3.0
68
*
79
* Example contributed by Chris Dill (@MysteriousSpace) and reviewed by Ramon Santamaria (@raysan5)

examples/core/core_smooth_pixelperfect.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Smooth Pixel-perfect camera
44
*
5+
* Example complexity rating: [★★★☆] 3/4
6+
*
57
* Example originally created with raylib 3.7, last time updated with raylib 4.0
68
*
79
* Example contributed by Giancamillo Alessandroni (@NotManyIdeasDev) and

examples/core/core_storage_values.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Storage save/load values
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* Example originally created with raylib 1.4, last time updated with raylib 4.2
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_vr_simulator.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - VR Simulator (Oculus Rift CV1 parameters)
44
*
5+
* Example complexity rating: [★★★☆] 3/4
6+
*
57
* Example originally created with raylib 2.5, last time updated with raylib 4.0
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_window_flags.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - window flags
44
*
5+
* Example complexity rating: [★★★☆] 3/4
6+
*
57
* Example originally created with raylib 3.5, last time updated with raylib 3.5
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_window_letterbox.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - window scale letterbox (and virtual mouse)
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* Example originally created with raylib 2.5, last time updated with raylib 4.0
68
*
79
* Example contributed by Anata (@anatagawa) and reviewed by Ramon Santamaria (@raysan5)

examples/core/core_window_should_close.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - Window should close
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Example originally created with raylib 4.2, last time updated with raylib 4.2
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/core/core_world_screen.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [core] example - World to screen
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* Example originally created with raylib 1.3, last time updated with raylib 1.4
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/models/models_animation.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [models] example - Load 3d model with animations and play them
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* Example originally created with raylib 2.5, last time updated with raylib 3.5
68
*
79
* Example contributed by Culacant (@culacant) and reviewed by Ramon Santamaria (@raysan5)

examples/models/models_billboard.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [models] example - Drawing billboards
44
*
5+
* Example complexity rating: [★★★☆] 3/4
6+
*
57
* Example originally created with raylib 1.3, last time updated with raylib 3.5
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/models/models_box_collisions.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [models] example - Detect basic 3d collisions (box vs sphere vs box)
44
*
5+
* Example complexity rating: [★☆☆☆] 1/4
6+
*
57
* Example originally created with raylib 1.3, last time updated with raylib 3.5
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/models/models_cubicmap.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [models] example - Cubicmap loading and drawing
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* Example originally created with raylib 1.8, last time updated with raylib 3.5
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/models/models_draw_cube_texture.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [models] example - Draw textured cube
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* Example originally created with raylib 4.5, last time updated with raylib 4.5
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

examples/models/models_first_person_maze.c

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*
33
* raylib [models] example - first person maze
44
*
5+
* Example complexity rating: [★★☆☆] 2/4
6+
*
57
* Example originally created with raylib 2.5, last time updated with raylib 3.5
68
*
79
* Example licensed under an unmodified zlib/libpng license, which is an OSI-certified,

0 commit comments

Comments
 (0)