OmegaEngine API
1.0.3
|
An object that can be Rendered by the Engine. More...
Public Member Functions | |
override string | ToString () |
Public Member Functions inherited from OmegaEngine.EngineElement | |
void | Dispose () |
Protected Member Functions | |
virtual void | OnPreRender () |
void | PrepareRender () |
Should be called before rendering anything - usually called by base constructor More... | |
Protected Member Functions inherited from OmegaEngine.EngineElement | |
void | RegisterChild (EngineElement element, bool autoDispose=true) |
Registers a child EngineElement for automatic Engine setting and Dispose calling. More... | |
void | UnregisterChild (EngineElement element) |
Unregisters a child EngineElement (opposite of RegisterChild). More... | |
virtual void | OnEngineSet () |
Hook that is calld when Engine is set for the first time. More... | |
virtual void | OnDispose () |
Hook that is called when the object needs to dispose its internal resources. More... | |
Properties | |
int | RenderCount [get] |
How many times has this entity been rendered in this frame? More... | |
string | Name [get, set] |
Text value to make it easier to identify a particular render entity More... | |
bool | Visible = true [get, set] |
Shall the entity be rendered? More... | |
bool | Wireframe [get, set] |
Shall this entity be drawn in wireframe-mode? (used for debugging) More... | |
float | VisibilityDistance [get, set] |
The maximum distance from which the entity is visible - 0 for infinite More... | |
int | Alpha [get, set] |
The level of transparency from 0 (solid) to 255 (invisible), OmegaEngine.EngineState.AlphaChannel, OmegaEngine.EngineState.BinaryAlphaChannel or OmegaEngine.EngineState.AdditivBlending More... | |
Properties inherited from OmegaEngine.EngineElement | |
Engine | Engine [get, set] |
The Engine instance used by this object. Must be set before using the object. May not be changed once it has been set! More... | |
bool | IsDisposed [get] |
Indicates whether this object has been disposed and can therefore no longer be used. More... | |
Events | |
Action | PreRender |
Occurs once per frame before rendering the entity. Will not be executed if the entity is excluded by a culling test. More... | |
Additional Inherited Members | |
Public Attributes inherited from OmegaEngine.EngineElement | |
bool | IsEngineSet => _engine != null |
true if the Engine has been set. More... | |
An object that can be Rendered by the Engine.
|
inlineprotected |
Should be called before rendering anything - usually called by base constructor
|
getset |
The level of transparency from 0 (solid) to 255 (invisible), OmegaEngine.EngineState.AlphaChannel, OmegaEngine.EngineState.BinaryAlphaChannel or OmegaEngine.EngineState.AdditivBlending
|
getset |
Text value to make it easier to identify a particular render entity
|
get |
How many times has this entity been rendered in this frame?
Used to debug culling methods
|
getset |
The maximum distance from which the entity is visible - 0 for infinite
|
getset |
Shall the entity be rendered?
|
getset |
Shall this entity be drawn in wireframe-mode? (used for debugging)
Action OmegaEngine.Graphics.Renderables.Renderable.PreRender |
Occurs once per frame before rendering the entity. Will not be executed if the entity is excluded by a culling test.