Added support for skyboxes using a new SkyBox resource and component

This commit is contained in:
antopilo
2024-11-06 20:40:38 -05:00
parent 9647cac48b
commit 89209dc7ba
25 changed files with 665 additions and 34725 deletions

View File

@@ -119,11 +119,12 @@ Nuake::Application* Nuake::CreateApplication(int argc, char** argv)
ApplicationSpecification specification
{
.Name = "Editor",
.WindowWidth = 1100,
.WindowHeight = 630,
.WindowWidth = static_cast<uint32_t>(launchSettings.resolution.x),
.WindowHeight = static_cast<uint32_t>(launchSettings.resolution.y),
.VSync = true
};
#ifdef NK_DEBUG
specification.Name += "(DEBUG BUILD)";
#endif