Skip to main content

Meta_Visual

Module: Metanodes / Definitions

A Visual provides an instance of a Meta_Model, and is attached as a child of a Meta_Assembly to position it in the scene.

#include <meta_importables.hpp>

Public Types

TypeName
enumCullFace { CullFace_Default = 0, CullFace_None = 1, CullFace_Front = 1028, CullFace_Back = 1029 }
Values for Idx_CullFace.
enumDrawMode { DrawMode_Default = 0, DrawMode_Points = 6912, DrawMode_Lines = 6913, DrawMode_Solid = 6914 }
Values for Idx_DrawMode.
enumIDX { Idx_Enabled, Idx_Model, Idx_Material, Idx_CullFace, Idx_DrawMode, Idx_ShadowCaster, Idx_RenderToCamera, Idx_Invert }
Property index.
enumShadowCaster { ShadowCaster_PerGeoGroup, ShadowCaster_All, ShadowCaster_None }
Values for Idx_ShadowCaster.

Public Types Documentation

enum CullFace

EnumeratorValueDescription
CullFace_Default0No override - use whatever CullFace is specified by the model's Meta_GeoGroup nodes (Symbols - C: "CullFaceNoOverride", Lua: __Visual_CullFaceNoOverride)
CullFace_None1Disable face culling (Symbols - C: "CullFaceNone", Lua: __Visual_CullFaceNone)
CullFace_Front1028Cull front faces (Symbols - C: "CullFaceFront", Lua: __Visual_CullFaceFront)
CullFace_Back1029Cull back faces (Symbols - C: "CullFaceBack", Lua: __Visual_CullFaceBack)

Values for Idx_CullFace.

enum DrawMode

EnumeratorValueDescription
DrawMode_Default0No override - use whatever DrawMode is specified by the model's Meta_GeoGroup nodes (Symbols - C: "DrawModeNoOverride", Lua: __Visual_DrawModeNoOverride)
DrawMode_Points6912Draw as points (Symbols - C: "DrawModePoints", Lua: __Visual_DrawModePoints)
DrawMode_Lines6913Draw as lines (Symbols - C: "DrawModeLines", Lua: __Visual_DrawModeLines)
DrawMode_Solid6914Draw as triangles (Symbols - C: "DrawModeSolid", Lua: __Visual_DrawModeSolid)

Values for Idx_DrawMode.

enum IDX

EnumeratorValueDescription
Idx_Enabledbool - If true, model is drawn.
Idx_Modellink - The Meta_Model to draw if this is enabled.
Idx_Materiallink - The override material to pass to the models geogroups, which will use this material unless theirs is 'locked'. (Meta_StdMaterial, Meta_GUIMaterial, Meta_WaterMaterial)
Idx_CullFaceCullFace (int) - The cull face mode to pass to the models geogroups.
Idx_DrawModeDrawMode (int) - the polygon mode to pass to the models geogroups.
Idx_ShadowCasterShadowCaster (int) - indicates to the model whether it should be drawn into shadowmaps or not.
Idx_RenderToCamerabool - indicates to the model whether it should be drawn into cameras or not.
Idx_Invertbool - indicates to the models geogroups whether the polygon winding order should be reversed or not.

Property index.

enum ShadowCaster

EnumeratorValueDescription
ShadowCaster_PerGeoGroupNo override - use whatever ShadowCaster mode is specified by the model's Meta_GeoGroup nodes (Symbols - C: "ShadowCasterPerGeoGroup", Lua: __Visual_ShadowCasterPerGeoGroup)
ShadowCaster_AllForce the model to cast shadows (Symbols - C: "ShadowCasterAll", Lua: __Visual_ShadowCasterAll)
ShadowCaster_NoneDo not cast any shadows (Symbols - C: "ShadowCasterNone", Lua: __Visual_ShadowCasterNone)

Values for Idx_ShadowCaster.