From 5840cd6e50890fdc8bb964cf4ed86524f1ca1675 Mon Sep 17 00:00:00 2001 From: Ray Date: Tue, 2 Aug 2022 18:12:57 +0200 Subject: Remove unneeded comment --- examples/core/core_3d_camera_first_person.c | 2 +- examples/core/core_3d_camera_free.c | 2 +- examples/core/core_3d_picking.c | 2 +- examples/core/core_vr_simulator.c | 2 +- examples/core/core_world_screen.c | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'examples/core') diff --git a/examples/core/core_3d_camera_first_person.c b/examples/core/core_3d_camera_first_person.c index 768edd19..3af829e2 100644 --- a/examples/core/core_3d_camera_first_person.c +++ b/examples/core/core_3d_camera_first_person.c @@ -57,7 +57,7 @@ int main(void) { // Update //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera + UpdateCamera(&camera); //---------------------------------------------------------------------------------- // Draw diff --git a/examples/core/core_3d_camera_free.c b/examples/core/core_3d_camera_free.c index 845227af..b3b0b9b0 100644 --- a/examples/core/core_3d_camera_free.c +++ b/examples/core/core_3d_camera_free.c @@ -45,7 +45,7 @@ int main(void) { // Update //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera + UpdateCamera(&camera); if (IsKeyDown('Z')) camera.target = (Vector3){ 0.0f, 0.0f, 0.0f }; //---------------------------------------------------------------------------------- diff --git a/examples/core/core_3d_picking.c b/examples/core/core_3d_picking.c index bbbde814..8cd3a3fe 100644 --- a/examples/core/core_3d_picking.c +++ b/examples/core/core_3d_picking.c @@ -50,7 +50,7 @@ int main(void) { // Update //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera + UpdateCamera(&camera); if (IsMouseButtonPressed(MOUSE_BUTTON_LEFT)) { diff --git a/examples/core/core_vr_simulator.c b/examples/core/core_vr_simulator.c index b7d888d7..f5dc4d55 100644 --- a/examples/core/core_vr_simulator.c +++ b/examples/core/core_vr_simulator.c @@ -109,7 +109,7 @@ int main(void) { // Update //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera (simulator mode) + UpdateCamera(&camera); //---------------------------------------------------------------------------------- // Draw diff --git a/examples/core/core_world_screen.c b/examples/core/core_world_screen.c index 82eb72c5..80d9cf91 100644 --- a/examples/core/core_world_screen.c +++ b/examples/core/core_world_screen.c @@ -46,7 +46,7 @@ int main(void) { // Update //---------------------------------------------------------------------------------- - UpdateCamera(&camera); // Update camera + UpdateCamera(&camera); // Calculate cube screen space position (with a little offset to be in top) cubeScreenPosition = GetWorldToScreen((Vector3){cubePosition.x, cubePosition.y + 2.5f, cubePosition.z}, camera); -- cgit v1.2.3