Browse Source

switch to enum (#5223)

pull/5225/head
Robin ❤️ 4 weeks ago
committed by GitHub
parent
commit
e5f809f534
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      examples/core/core_3d_camera_free.c

+ 1
- 1
examples/core/core_3d_camera_free.c View File

@ -49,7 +49,7 @@ int main(void)
//----------------------------------------------------------------------------------
UpdateCamera(&camera, CAMERA_FREE);
if (IsKeyPressed(sa">'Z')) camera.target = (Vector3){ 0.0f, 0.0f, 0.0f };
if (IsKeyPressed(n">KEY_Z)) camera.target = (Vector3){ 0.0f, 0.0f, 0.0f };
//----------------------------------------------------------------------------------
// Draw

Loading…
Cancel
Save