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: 2.0.8956+4c7684e186ca1be74e7a284fbe739d9a1b843d3c
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