Description
The StartLoading
method is a public instance method of the Scene
class in the Sandbox framework. This method initiates the loading process for the scene. It is typically used to begin the sequence of operations required to load a scene's resources and prepare it for activation.
Usage
To use the StartLoading
method, you need to have an instance of the Scene
class. Once you have the instance, you can call this method to start the loading process for that particular scene. This method does not take any parameters and does not return any value.
Example
// Assuming 'scene' is an instance of Sandbox.Scene
scene.StartLoading();
// This will initiate the loading process for the scene.