mirror of
https://github.com/antopilo/Nuake.git
synced 2026-01-04 22:10:34 +03:00
Added support for skyboxes using a new SkyBox resource and component
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user