Skip to content
Alex Pineda edited this page Sep 29, 2023 · 3 revisions

Scenes in Titan Reactor

Scenes in Titan Reactor function as isolated logic units that establish specific game loops or processes. They operate independently of each other. The code for these scenes can be found in renderer/scenes. Scene transitions and loading are managed by scene-store.

Available Scenes:

  • prehome-scene

    Initializes the app and waits for essential settings and assets to load. If a configuration error exists, it displays an error message and halts progression to other scenes until resolved.

  • home-scene

    Serves as the application's landing page, displaying the title, social links, and potentially an integrated menu in future releases.

  • replay-scene

    Utilizes game-scene for its core functionality. Game data is loaded via replay-scene-loader.

  • map-scene

    Also built on game-scene, with game data loaded through map-scene-loader.

  • interstitial-scene

    Acts as a transitional loading screen between scenes when a new map or replay is initiated.