Sfoglia il codice sorgente

Clamp camera pitch

pull/5137/head
feive7 1 mese fa
parent
commit
8b0cbb6f47
1 ha cambiato i file con 3 aggiunte e 1 eliminazioni
  1. +3
    -1
      examples/core/core_3d_fps_controller.c

+ 3
- 1
examples/core/core_3d_fps_controller.c Vedi File

@ -261,7 +261,9 @@ static void UpdateCameraAngle(Camera *camera)
Vector3 right = Vector3Normalize(Vector3CrossProduct(yaw, up));
// Rotate view vector around right axis
Vector3 pitch = Vector3RotateByAxisAngle(yaw, right, -lookRotation.y - lean.y);
float pitchAngle = -player.body.lookRotation.y - player.lean.y;
pitchAngle = Clamp(pitchAngle, -PI / 2 + 0.0001f, PI / 2 - 0.0001f); // Clamp angle so it doesn't go past straight up or straight down
Vector3 pitch = Vector3RotateByAxisAngle(yaw, right, pitchAngle);
// Head animation
// Rotate up direction around forward axis

Caricamento…
Annulla
Salva