bool SetScene( SceneFile sceneFile )
bool SetScene( string sceneFileName )

robot_2Generated
code_blocksInput

Description

The SetScene method is a member of the SceneLoadOptions class in the Sandbox namespace. This method is used to set the scene to be loaded using a SceneFile object. It returns a boolean value indicating whether the scene was successfully set.

Usage

To use the SetScene method, you need to have an instance of SceneLoadOptions and a valid SceneFile object. Call the method with the SceneFile as a parameter. The method will return true if the scene was successfully set, otherwise false.

Example

// Create a new SceneLoadOptions instance
SceneLoadOptions loadOptions = new SceneLoadOptions();

// Assume sceneFile is a valid SceneFile object
SceneFile sceneFile = new SceneFile("path/to/scene");

// Set the scene using the SceneFile
bool success = loadOptions.SetScene(sceneFile);

if (success)
{
    // Scene was successfully set
    // Proceed with loading the scene
}
else
{
    // Handle the error
}