Skip to content

Latest commit

 

History

History
25 lines (19 loc) · 1.12 KB

File metadata and controls

25 lines (19 loc) · 1.12 KB

SceneLoaderArgsBase

abstract class in AdvancedSceneManager.Core

Description

Base class for Core.SceneLoadArgs and Core.SceneUnloadArgs.

Properties

Member Description
SceneCollection collection { get; } The collection that the scene belongs to, if any.
string errorMessage { get; } The error message if SceneLoaderArgsBase.isError is true.
bool isError { get; } Indicates whether this operation resulted in an error.
bool isLoadingScreen Gets whether the associated scene is a loading screen.
bool isSplashScreen Gets whether the associated scene is a splash screen.
SceneOperation operation { get; } The Core.SceneOperation representing the current load or unload operation.
bool reportProgress { get; } Determines whether progress should be reported during this operation.
Scene scene { get; } The scene associated with this loading or unloading operation.

Methods

Member Description
void SetError(string message) Marks this operation as failed with the specified error message.