Click or drag to resize
Ab4d.SharpEngine logo

IInitializedSceneComponent Interface

ISceneComponent interface is implemented by a class that has the Scene and IsInitialized properties. The Scene property is set by calling the InitializeSceneResources(Scene) method.

Namespace: Ab4d.SharpEngine.Core
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 4.1.9680+a1b1e43de1ad9a7e35472c33948d688d7b40ef79
Syntax
C#
public interface IInitializedSceneComponent

The IInitializedSceneComponent type exposes the following members.

Properties
 NameDescription
Public propertyIsInitialized Gets a Boolean that specifies if this component has already been initialized (the Scene property was set by calling InitializeSceneResources(Scene) method).
Public propertyScene Gets the parent Scene (can be null).
Top
Methods
 NameDescription
Public methodInitializeSceneResources Initializes this component
Top
Events
 NameDescription
Public eventSceneResourcesInitialized ResourcesInitialized event is triggered after the resources were initialized by calling the InitializeSceneResources(Scene) method.
Top
See Also