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: 1.0.8740+deb2991acfe86a95cca780cd4f82bcae2805c1a5
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