From 406d2faf4c142baae67f0e7af7602436167e53d6 Mon Sep 17 00:00:00 2001 From: Noah Metz Date: Wed, 10 Jan 2024 13:30:15 -0700 Subject: [PATCH] updated default values --- src/main.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/main.c b/src/main.c index 1c72271..1359478 100644 --- a/src/main.c +++ b/src/main.c @@ -2849,9 +2849,11 @@ VulkanContext* init_vulkan(GLFWwindow* window, uint32_t max_frames_in_flight) { return 0; } glm_quat_identity(position->rotation); - position->scale[0] = 0.1f; - position->scale[1] = 0.1f; - position->scale[2] = 0.1f; + position->scale[0] = 1.f; + position->scale[1] = 1.f; + position->scale[2] = 1.f; + position->position[0] = 0.0f; + position->position[1] = 0.0f; position->position[2] = 1.0f; bool map_result = map_add(&triangle_object_textured.attributes, ATTRIBUTE_ID_POSITION, position); if(map_result == 0) {