Ray
1896268775
Reviewed examples for consistency
1年前
Gabriel dos Santos Sanches
2d5d0c2999
examples: core: adds 2D camera two player split screen ( #3298 )
1年前
MichaelFiber
18e9784c6d
Remove PLATFORM_RPI ( #3232 )
* Remove PLATFORM_RPI
* remove build artifacts
---------
Co-authored-by: MichaelFiber <michael@cubeofb.org>
Co-authored-by: Ray <raysan5@gmail.com>
1年前
Asdqwe
c147ab51c9
Fix examples/textures/textures_image_rotate.c help instructions ( #3286 )
1年前
Asdqwe
a69d401433
Fix examples/textures/textures_fog_of_war.c help instructions ( #3285 )
1年前
bXi
c03ab03627
Added rudimentary SVG support. ( #2738 )
* Added rudimentary SVG support. Added 2 functions ImageLoadSvg and ImageLoadSvgWithSize.
* Added an example on how to use ImageLoadSvgWithSize and adjusted Makefiles accordingly.
* Added actual correct example file.
* Reviewed the code to keep the raylib coding conventions in mind.
Moved the LoadImageSvg() code into LoadImage() guarded by SUPPORT_FILEFORMAT_SVG.
Renamed LoadImageSvgWithSize() to LoadImageSvg().
Added a LoadImageSvgFromString() function to parse the loaded SVG into an actual image. This does the bulk of the work.
* Fixed typo.
---------
Co-authored-by: Ray <raysan5@gmail.com>
1年前
Ray
d41e3141f1
REVIEWED: Added `SetTextLineSpacing()` to multiline examples
1年前
Asdqwe
927a030bbf
Fix examples/shapes/shapes_collision_area.c help instructions ( #3279 )
1年前
Asdqwe
3d0d54e070
Fix examples/shaders/shaders_texture_outline.c help instructions ( #3278 )
1年前
Asdqwe
fefe8fcda9
Fix examples/others/easings_testbed.c help instructions and small tweak ( #3277 )
1年前
Asdqwe
46bac461ce
Add examples/shaders/shaders_lightmap.c to Makefiles ( #3276 )
1年前
Asdqwe
1d2b43402e
Remove a duplicated screenshot and add missing one ( #3275 )
1年前
Asdqwe
752baac00c
Update examples/models/models_loading_gltf.png;m3d.png screenshots ( #3273 )
1年前
Asdqwe
d047597244
Fix example/audio/audio_module_player.c help instructions and small bug ( #3272 )
* Fix example/audio/audio_module_player.c help instructions and small bug
* Update example/audio/audio_module_player.png screenshot
1年前
Ethan Conneely
fc0d132566
Remove e from secondes ( #3270 )
1年前
Asdqwe
de3dc94d5b
Fix example/models/models_loading_m3d.c controls ( #3269 )
1年前
Asdqwe
9393500bff
Fix example/models/models_loading_gltf.c controls ( #3268 )
1年前
ubkp
016b7d0a3a
Fix text_unicode.c example crashing ( #3250 )
* Fix text_unicode.c example crashing
* Adjust the text_unicode.c example crashing fix
1年前
ubkp
e0afb8942e
Fix examples/others/rlgl_standalone.c compilation issue ( #3242 )
1年前
Jeffery Myers
62f5382d56
[AUDIO] Add an example of how to use LoadSoundAlias ( #3223 )
* Add a function to clone a sound and share data with another sound.
* rename items based on feedback
* PR Feedback, use custom unload for sound alias, not variant of normal sound unloading
* sound_multi example
1年前
Ray
86f95d7150
Reviewed C compilation issues and formatting
1年前
ubkp
b980268ba7
[example] Core Input Gestures for Web ( #3172 )
* [example] Core Input Gestures for Web
* Fix Doubletap for web
* Changes TAP_TIMEOUT and rgGetCurrentTime to seconds
1年前
Wytek01
3c4ce9c99b
Update examples_template.c to raylib 4.5 ( #3156 )
1年前
Ray
225b4fb3e2
REVIEWED: `Vector2Angle()`
1年前
Ray
fdc28fce80
Reviewed vector2angle example
1年前
Ray
e8af875756
Minor format tweak, another issue introduced...
1年前
Gisteron
64bb2fe3ec
fix vector angle example mode 0 circle segment drawing ( #3150 )
1年前
Ray
5361d498c3
WARNING: REDESIGN: `Vector2Angle()`<-->`Vector2LineAngle()` #2887
1年前
iacore
7392c4b0c5
Better examples/core_input_gamepad ( #3110 )
* examples/core_input_gamepad: Add visuals for LT,RT
* examples/core_input_gamepad: arrows left/right to choose gamepad
* Style change
1年前
Ray
6aada7d5ec
Updated examples to `raygui 4.0-dev`
1年前
Dane Madsen
e465ed0850
Added ImageRotate ( #3078 )
* Added ImageRotate
* Quick rename of the example
* Update ImageRotate by changing doubles to floats and checking code convention
* Update API
2年前
Dane Madsen
a4a6d4da8a
Add GenImageGradientSquare ( #3077 )
* Add GenImageGradientSquare to allow square gradients
* Fix GenImageGradientSquare and add to textures_image_generation example
* Remove params from GenImageGradientSquare
2年前
Dane Madsen
e96dc46d38
Replaced GenImageGradientH and GenImageGradientV with GenImageLinearGradient ( #3074 )
* Replaced GenImageGradientH and GenImageGradientV with GenImageLinearGradient
* renamed GenImageLinearGradient to GenImageGradientLinear
2年前
Gamer-Kold
6b92d71ea1
Reverted commits that deprecated the build.zig files, and added a note to all of them stating version of zig they were using ( #3060 )
* Revert "Fixed broken build.zig files. Now works with latest stable compiler (as of commit, latest is 0.10.1) (#3045 )"
This reverts commit de748dfffe
so that zig
build script works with master branch of zig.
* Added a note to build.zig files that denotes what version of zig they have been tested with.
* Standardised the note in the build.zig files
2年前
Alfred Reinold Baudisch
53b7b26c45
Added ModelAnimation.name, initially with GLTF animation names loaded ( #3044 )
2年前
Ray
5573f0f1c7
REVIEWED: Ligthmap example
2年前
Jussi Viitala
abcbd9817e
Lightmap example. ( #3043 )
2年前
Ray
a4a5a798bd
Update rlgl_compute_shader.c
2年前
star-tek-mb
ed2caa1277
fix for latest zig master ( #3037 )
2年前
Mingjie Shen
7b7c0c83ef
Fix offset used before range check ( #3021 )
This use of offset 'i' should follow the range check.
2年前
Mansour Quddus
4f43ceb0d2
add missing space in one of the cameraDescriptions ( #2977 )
2年前
Ray
2e02474b7a
Update core_loading_thread.c
2年前
Ray
54ccb18e87
Update write_depth.fs
2年前
Ray
3d64598e11
Update Makefile
2年前
Ray
1a361fdfe2
Update Makefile.Web
2年前
Ray
5a2c49b954
Updated Makefiles to include all missing new examples
2年前
Ray
90ec0d52e0
Reviewed filename
2年前
Ray
4f38830058
Some tweaks
2年前
Ray
8ca3212701
REVIEWED: `UpdateCameraPro()` to use `Vector3`
2年前
Ray
f9c4cc2040
ADDED: `UpdateCameraPro()` -Experimental-
REVIEWED: rcamera module formating
REVIEWED: `core_3d_camera_example`
2年前