Updated examples to make them clearer

This commit is contained in:
raysan5 2016-02-11 14:56:27 +01:00
parent 9cbfcbb820
commit 15cd4dce4e
5 changed files with 16 additions and 9 deletions

View file

@ -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