Class LODLevel
Represents the LOD level of a model. It contains all elements associated with a specific LOD level.
Namespace: Evergine.Framework.Graphics
Assembly: Evergine.Framework.dll
Syntax
public class LODLevel
Properties
Entries
Gets or sets the nodes.
Declaration
public LODEntry[] Entries { get; set; }
Property Value
Type | Description |
---|---|
LODEntry[] |
LOD
Gets or sets the LOD level.
Declaration
public int LOD { get; set; }
Property Value
Type | Description |
---|---|
int |
Methods
DisableLOD()
Disables this LOD entry.
Declaration
public void DisableLOD()
EnableLOD()
Enables this LOD entry.
Declaration
public void EnableLOD()
RefreshLOD(bool)
Refreshes this LOD entry.
Declaration
public void RefreshLOD(bool isEnabled)
Parameters
Type | Name | Description |
---|---|---|
bool | isEnabled | Indicates if this LOD entry is enabled. |