From 548ccf0063f6c4d6608cf87f46a347c71079c0bd Mon Sep 17 00:00:00 2001 From: MegaMech Date: Tue, 24 Feb 2026 14:51:25 -0700 Subject: Impl Sky and SkyActors (#630) * Create Cloud.cpp * Create Cloud.h * Fix the cloud * Cleanup * More cleanup * Update Track.h * Refactor SkyboxCloud position calculations * Update SkyboxStar.cpp * Update SkyboxStar.cpp * Refactor SkyboxStar.cpp by removing redundant code * Update SkyboxCloud.cpp * Refactor SkyboxSnow.cpp by reordering includes * Update SkyboxCloud.h * Refactor SkyboxStar.h for improved formatting * Impl skyboxcloud * Update comment * update comment * Work now * Fully impl Sky * Fix define * Fix args --- src/engine/World.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/engine/World.cpp') diff --git a/src/engine/World.cpp b/src/engine/World.cpp index bc6cbfc1b..d1619ae18 100644 --- a/src/engine/World.cpp +++ b/src/engine/World.cpp @@ -6,6 +6,7 @@ #include #include "objects/Object.h" #include "port/Game.h" +#include "engine/sky/Sky.h" extern "C" { #include "objects.h" @@ -270,4 +271,5 @@ void World::CleanWorld(void) { Objects.clear(); Emitters.clear(); Lakitus.clear(); + Sky::Instance->GetSkyActors().clear(); } -- cgit v1.2.3