actually fix text_draw_3d

This commit is contained in:
Crydsch 2022-07-18 18:20:59 +02:00
parent 4c163b26e4
commit ec4e138113

View File

@ -181,12 +181,12 @@ int main(void)
if (spin)
{
camera.position = (Vector3){ -10.0f, 15.0f, -10.0f }; // Camera position
SetCameraMode(camera, CAMERA_ORBITAL);
SetCameraMode(&camera, CAMERA_ORBITAL);
}
else
{
camera.position = (Vector3){ 10.0f, 10.0f, -10.0f }; // Camera position
SetCameraMode(camera, CAMERA_FREE);
SetCameraMode(&camera, CAMERA_FREE);
}
}