فهرست منبع

Fix GetCameraRight (#3784)

Danil 1 سال پیش
والد
کامیت
6a8cc62b67
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/rcamera.h

+ 1 - 1
src/rcamera.h

@@ -243,7 +243,7 @@ Vector3 GetCameraRight(Camera *camera)
     Vector3 forward = GetCameraForward(camera);
     Vector3 up = GetCameraUp(camera);
 
-    return Vector3CrossProduct(forward, up);
+    return Vector3Normalize(Vector3CrossProduct(forward, up));
 }
 
 // Moves the camera in its forward direction