Freeloader
  • Freeloader Documentation
  • đŸ•šī¸Quick Start
    • Installation
    • Add a Loading Screen
      • Customization Settings
  • 📄Scripting
    • Loading
    • Tracking Progress
  • Events
  • đŸ› ī¸Support
    • Getting Help
  • 📚Changelogs
    • Latest Releases
  • ⭐Rate Me?
Powered by GitBook
On this page
  • Loading a Scene
  • Load By Scene Name
  • Load By Build Index
  1. Scripting

Loading

Remember to use the Esper.Freeloader namespace.

Freeloader is a simple asset meant for loading scenes. You can use Freeloader to load scenes as long as you have an instance of a loading screen in your initial scene. See Add a Loading Screen.

Loading a Scene

Create a new script that will work with the LoadingScreen class and then use the Load method to load a scene.

Load By Scene Name

string sceneName = "scene name";
LoadingScreen.Instance.Load(sceneName)

Load By Build Index

int buildIndex = 1;
LoadingScreen.Instance.Load(buildIndex);
PreviousCustomization SettingsNextTracking Progress

Last updated 12 days ago

📄