From 15cd4dce4ed19bb80a765eb8eeeca0c6583d7b2a Mon Sep 17 00:00:00 2001 From: raysan5 Date: Thu, 11 Feb 2016 14:56:27 +0100 Subject: Updated examples to make them clearer --- examples/core_3d_camera_first_person.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'examples/core_3d_camera_first_person.c') diff --git a/examples/core_3d_camera_first_person.c b/examples/core_3d_camera_first_person.c index 8a092275..2b8dc7fc 100644 --- a/examples/core_3d_camera_first_person.c +++ b/examples/core_3d_camera_first_person.c @@ -22,7 +22,7 @@ int main() InitWindow(screenWidth, screenHeight, "raylib [core] example - 3d camera first person"); - // Define the camera to look into our 3d world + // Define the camera to look into our 3d world (position, target, up vector) Camera camera = {{ 0.0f, 10.0f, 10.0f }, { 0.0f, 0.0f, 0.0f }, { 0.0f, 1.0f, 0.0f }}; // Generates some random columns -- cgit v1.2.3