update raylib to 4.5

This commit is contained in:
electronstudio 2023-05-22 16:42:24 +01:00 committed by Richard Smith
parent cbcb0719a6
commit 42d6762fbe
60 changed files with 6581 additions and 18340 deletions

View file

@ -36,7 +36,6 @@ mapPosition = [ -16.0, 0.0, -8.0 ] # Set model position
UnloadImage(image) # Unload cubesmap image from RAM, already uploaded to VRAM
SetCameraMode(camera[0], CAMERA_ORBITAL) # Set an orbital camera mode
SetTargetFPS(60) # Set our game to run at 60 frames-per-second
#--------------------------------------------------------------------------------------
@ -46,7 +45,7 @@ while not WindowShouldClose(): # Detect window close button or ESC key
# Update
#----------------------------------------------------------------------------------
UpdateCamera(camera) # Update camera
UpdateCamera(camera, CAMERA_ORBITAL) # Update camera
#----------------------------------------------------------------------------------
# Draw