Ray
565319184c
Reviewed struct field name
před 3 roky
Ray
2760304d66
Update CMakeLists.txt
před 3 roky
Ray
9bd3d78374
WARNING: Moved some **extra** raylib libraries to /extras/ directory
před 3 roky
Ray
1c5de9721a
WARNING: BREAKING: RENAMED: RayHitInfo to RayCollision #1781
- RENAMED: RayHitInfo to RayCollision
- RENAMED/REDESIGNED: Multiple Ray collision functions to be more consistent and return RayCollision data -WIP-
před 3 roky
Ray
7bcb2ad4f1
Update uwp_events.h
před 3 roky
Ray
89e734de6b
Review config flags #1784
před 3 roky
Julianiolo
cc4de1d1f9
note ( #1797 )
před 3 roky
Ray
71995d52b3
REVIEWED: exit() on LOG_FATAL instead of LOG_ERROR #1796
před 3 roky
Ray
a178a2170b
Structs tweaks for consistency
před 3 roky
Ray
3c1c13b660
ADDED: raylib header parser
před 3 roky
Ray
0369ec9adf
Some code tweaks
před 3 roky
Ray
c828e481fb
Review code format
před 3 roky
Ray
e3ba11bead
Review some comments
před 3 roky
Hristo Stamenov
beeac18eb1
Fix QuaternionToMatrix returning transposed result. ( #1793 )
před 3 roky
Hristo Stamenov
470574517a
Implement vertex color attribute for GLTF and IQM ( #1790 )
Added a simple cube with vertex colors for testing both.
před 3 roky
Ray
c5ef96272f
Merge branch 'master' of https://github.com/raysan5/raylib
před 3 roky
Ray
1c7c8c682c
REVIEWED: models_skybox #1792 #1778
před 3 roky
Milan Nikolic
ded6754de4
Update raylib-go bindings ( #1791 )
před 3 roky
Ray
05aff1e097
Merge branch 'master' of https://github.com/raysan5/raylib
před 3 roky
Ray
7959d95db0
Review raylib structs comments
před 3 roky
Ben Beshara
6fe0a229e2
Bumped minimum GLFW vers in cmake ( #1788 )
před 3 roky
Ray
9f45fea31e
Remove line break in DrawTextRecEx()
před 3 roky
DanielG
e5e401c640
Fixed CMake linking on MacOS ( #1783 )
Added links to IOKit, Cocoa, and OpenGL to the CMake build file for MacOS platforms
před 3 roky
Chris
6c874feb7b
Update BINDINGS.md ( #1782 )
před 3 roky
Ray
03710c9d8e
Some code tweaks for consistency
před 3 roky
Ray
cb698dd37d
Update Makefile
před 3 roky
Ray
b36422083e
Remove headers from shaders
před 3 roky
Ray
5765b7895c
Minor comments tweaks
před 3 roky
raysan5
4aa680d6d3
Merge branch 'master' of https://github.com/raysan5/raylib
před 3 roky
raysan5
60ca8acd0a
Update version to 3.8-dev to note breaking changes
Some breaking changes were introduced lately, it's better to note that current version is not 3.7 anymore...
před 3 roky
Bxil
352db3a183
Removes debug information from release builds ( #1780 )
před 3 roky
Ray
4a099c3658
Review ExportImage() to use SaveFileData() #1779
před 3 roky
Ray
23a08a483e
WARNING: RENAMED: IsMusicPlaying() -> IsMusicStreamPlaying()
před 3 roky
Ray
f33cec64aa
Use output->boneCount instead of nodes_count
před 3 roky
Ray
e401d5c48e
WARNING: RENAMED: MeshBoundingBox() -> GetMeshBoundingBox()
Renamed for consistency with other function in raylib.
před 3 roky
Ray
9360e4e2c1
Comment minor tweak
před 3 roky
Ray
7b6b87ec5b
Update VS2019 project: rlgl_standalone
před 3 roky
Guillaume DEVOILLE
b90ac7bd31
Fixed over-allocation of buffer ( #1772 )
output->framePoses[frame] is over-allocated.
framePoses is a 2D array:
- first dimension: frames (allocated l. 4717)
- second dimension: nodes (allocated l. 4731)
Second dimension should be allocated of nodes_count transformations only.
před 3 roky
Gianni Alessandroni
a84e98ba6c
Hotfix for smooth pixel-perfect camera example [core_2d_camera_smooth_pixelperfect.c] ( #1771 )
* Hotfix for glitchy camera
Super small fix that was causing the camera to glitch every x amount of seconds/pixels. Works much better now, 3/4 lines changed.
* fixed dumb visual studio formatting problems
před 3 roky
Ray
232378ed2d
Merge branch 'master' of https://github.com/raysan5/raylib
před 3 roky
Ray
3baba7ffe8
Review some VS warnings and messages
před 3 roky
Guillaume DEVOILLE
45b0dc63cd
Fixed GLTF boneWeights uint32 loading ( #1768 )
boneWeights uint32 were loaded in normals instead of boneWeights.
před 3 roky
Ray
fff06d24da
Merge branch 'master' of https://github.com/raysan5/raylib
před 3 roky
Ray
6c56fe2670
Update shell.html
před 3 roky
Bxil
dbe1c9c6e6
Removes Whole Program Optimization ( #1767 )
před 3 roky
Astie Teddy
d8e1a77da5
Update raylib-lua and raylib-wren binding versions ( #1766 )
před 3 roky
Ray
6bd63de8d0
Reviewed latest PR
REMOVED: DrawBillboardEx()
před 3 roky
nobytesgiven
ac204a11f7
Redesigned billboards - added rotation/pro functions ( #1759 )
* Redesigned billboards - added rotation/pro functions
* updated parameters
Co-authored-by: nobytesgiven <nobytesigiven@github.com>
před 3 roky
Gianni Alessandroni
4ab28fffb4
Added smooth pixel-perfect camera example + Small typo fix in examples_template.c ( #1760 )
* Typo fix
Changed "bsasic" to "basic" in the comments.
* Added pixel-perfect camera example
Added pixel-perfect camera example, both the .c file and the cover .png image. The example works with any resolution you want, as long as the ratio stays the same
(ex. 16:9, 4:3) ecc.
* Fixed Typecasts
Fixed compiler errors (implicit conversions)
* Precomputed rectangles, time-based movement and whitespace fix
Moved the source and destination rectangles for the renderTexture into their own variables, modified the animation to be time-based instead of frame-based, fixed the bug with whitespaces.
* Fixed spacing and added more consistency with sinf() and cosf()
* Fixed *= operator spacing
před 3 roky
Lambert Wang
e39e45824d
Add RenderPolyLinesEx routine ( #1758 )
Co-authored-by: Lambert Wang <lambert.ww@gmail.com>
před 3 roky