update raylib to 4.5
This commit is contained in:
parent
cbcb0719a6
commit
42d6762fbe
60 changed files with 6581 additions and 18340 deletions
|
@ -32,8 +32,6 @@ mapPosition = ( -8.0, 0.0, -8.0 ) # Define model position
|
|||
|
||||
UnloadImage(image) # Unload heightmap 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
|
||||
#--------------------------------------------------------------------------------------
|
||||
|
||||
|
@ -41,7 +39,7 @@ SetTargetFPS(60) # Set our game to run at 60 frames-per-se
|
|||
while not WindowShouldClose(): # Detect window close button or ESC key
|
||||
# Update
|
||||
#----------------------------------------------------------------------------------
|
||||
UpdateCamera(camera) # Update camera
|
||||
UpdateCamera(camera, CAMERA_ORBITAL) # Update camera
|
||||
#----------------------------------------------------------------------------------
|
||||
|
||||
# Draw
|
||||
|
|
Reference in a new issue