diff options
| author | MegaMech <MegaMech@users.noreply.github.com> | 2026-02-24 14:51:25 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-02-24 14:51:25 -0700 |
| commit | 548ccf0063f6c4d6608cf87f46a347c71079c0bd (patch) | |
| tree | 42708916b67dc1dd553c70199339541a401dca15 /src/engine/registry/RegisterTracks.cpp | |
| parent | 321d440089fc7424002879c9b2e74a4b0ffe9a8d (diff) | |
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
Diffstat (limited to 'src/engine/registry/RegisterTracks.cpp')
| -rw-r--r-- | src/engine/registry/RegisterTracks.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/engine/registry/RegisterTracks.cpp b/src/engine/registry/RegisterTracks.cpp index 47a6a6ff2..a347e907f 100644 --- a/src/engine/registry/RegisterTracks.cpp +++ b/src/engine/registry/RegisterTracks.cpp @@ -214,6 +214,15 @@ void RegisterTracks(Registry<TrackInfo>& r) { r.Add(info, []() { GetWorld()->SetCurrentTrack(std::make_unique<BigDonut>()); }); info = { + .ResourceName = "mk:podium_ceremony", + .Name = "podium ceremony", + .DebugName = "podium", + .Length = "1025m", + }; + + r.Add(info, []() { GetWorld()->SetCurrentTrack(std::make_unique<PodiumCeremony>()); }); + + info = { .ResourceName = "hm:test_track", .Name = "test track", .DebugName = "test track", |
