From 42ef4cda81219a528830b4e1e58fae88cc28248a Mon Sep 17 00:00:00 2001 From: Dynamitos Date: Sat, 25 Jan 2025 15:13:46 +0100 Subject: [PATCH] moving camera --- src/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 42c9758..8035e4c 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -11,8 +11,8 @@ int main() Window window(1920, 1080); scene.startRender( Camera{ - .position = glm::vec3(10, 0, 0), - .direction = glm::vec3(-1, 0, 0), + .position = glm::vec3(0, 0, 10), + .direction = glm::vec3(0, 0, -1), }, RenderParameter{ .width = 1920,