Skip to main content

Meta_ModelMarkerStyle

Module: Metanodes / Definitions

A ModelMarkerStyle provides styling for a marker, using a custom model instead of the default sphere.

#include <meta_gui.hpp>

Public Types

TypeName
enumAlignMode { AlignMode_World, AlignMode_Camera, AlignMode_Screen, AlignMode_Camera_X, AlignMode_Camera_Y, AlignMode_Camera_Z, AlignMode_Vector, AlignMode_World_Up }
Values for Idx_AlignMode.
enumDepthTestMode { DepthTestMode_Normal, DepthTestMode_ShowThrough, DepthTestMode_AlwaysOnTop }
Values for Idx_DepthTestMode.
enumHitTestMode { HitTestMode_Sphere, HitTestMode_Box }
Values for Idx_HitTestMode.
enumIDX { Idx_Visible, Idx_Size, Idx_SizeMode, Idx_AlignMode, Idx_MinimumSize, Idx_MaximumSize, Idx_Material, Idx_UseMaterialColour, Idx_Colour, Idx_Colour_hovering, Idx_Colour_pressed, Idx_Colour_highlight, Idx_Model, Idx_ModelTransform, Idx_CursorName, Idx_HitTestMode, Idx_HitTestRadius, Idx_DepthTestMode, Idx_MapAutoScale }
Property index.
enumSizeMode { SizeMode_World, SizeMode_View, SizeMode_Pixels, SizeMode_Local }
Values for Idx_SizeMode.

Public Types Documentation

enum AlignMode

EnumeratorValueDescription
AlignMode_WorldAligns in world space, based on parent assembly transforms (Symbols - C: "AlignModeWorld", Lua: __ModelMarkerStyle_AlignModeWorld)
AlignMode_CameraAligns to the camera (Symbols - C: "AlignModeCamera", Lua: __ModelMarkerStyle_AlignModeCamera)
AlignMode_ScreenAligns to the screen (Symbols - C: "AlignModeScreen", Lua: __ModelMarkerStyle_AlignModeScreen)
AlignMode_Camera_XAligns to the camera around the X axis (Symbols - C: "AlignModeCameraX", Lua: __ModelMarkerStyle_AlignModeCameraX)
AlignMode_Camera_YAligns to the camera around the Y axis (Symbols - C: "AlignModeCameraY", Lua: __ModelMarkerStyle_AlignModeCameraY)
AlignMode_Camera_ZAligns to the camera around the Z axis (Symbols - C: "AlignModeCameraZ", Lua: __ModelMarkerStyle_AlignModeCameraZ)
AlignMode_VectorAligns to the vector specified on the marker (Symbols - C: "AlignModeVector", Lua: __ModelMarkerStyle_AlignModeVector)
AlignMode_World_UpAligns to the world up vector regardless of the parent transform hierarchy (Symbols - C: "AlignModeWorldUp", Lua: __ModelMarkerStyle_AlignModeWorldUp)

Values for Idx_AlignMode.

enum DepthTestMode

EnumeratorValueDescription
DepthTestMode_NormalMarkers are occluded by objects in front of them (Symbols - C: "DepthTestModeNormal", Lua: __ModelMarkerStyle_DepthTestModeNormal)
DepthTestMode_ShowThroughMarkers appear stippled through objects in front of them (Symbols - C: "DepthTestModeStipple", Lua: __ModelMarkerStyle_DepthTestModeStipple)
DepthTestMode_AlwaysOnTopMarkers are always rendered on top of objects (Symbols - C: "DepthTestModeAlwaysOnTop", Lua: __ModelMarkerStyle_DepthTestModeAlwaysOnTop)

Values for Idx_DepthTestMode.

enum HitTestMode

EnumeratorValueDescription
HitTestMode_SphereCursor collides with a bounding sphere whose radius is set by Idx_HitTestRadius (Symbols - C: "HitTestModeSphere", Lua: __ModelMarkerStyle_HitTestModeSphere)
HitTestMode_BoxCursor collides with the bounding box of the model (Symbols - C: "HitTestModeBox", Lua: __ModelMarkerStyle_HitTestModeBox)

Values for Idx_HitTestMode.

enum IDX

EnumeratorValueDescription
Idx_Visiblebool - Controls the visibility of all markers using this style
Idx_Sizefloat - Scale of the model
Idx_SizeModeSizeMode (int) - How to size the markers
Idx_AlignModeAlignMode (int) - Specifies the alignment mode
Idx_MinimumSizefloat - Specifies the minimum view or screen size that this marker can display based on camera distance
Idx_MaximumSizefloat - Specifies the maximum view or screen size that this marker can display based on camera distance
Idx_Materiallink - Material to use when Idx_UseMaterialColour is true. Using a material means there are no highlight colour distinctions. (Meta_StdMaterial, Meta_GUIMaterial, Meta_WaterMaterial
Idx_UseMaterialColourbool - When enabled, uses the material specified in Idx_Material instead of the style colours
Idx_Colourvec4f - Default marker colour when not using a material; RGBA 0.0f to 1.0f
Idx_Colour_hoveringvec4f - Default hover colour when not using a material; RGBA 0.0f to 1.0f
Idx_Colour_pressedvec4f - Default pressed colour when not using a material; RGBA 0.0f to 1.0f
Idx_Colour_highlightvec4f - Default highlight colour when not using a material; RGBA 0.0f to 1.0f
Idx_Modellink - Model to use to render the markers
Idx_ModelTransformmat4w - Transformation to apply to the model to align it as desired
Idx_CursorNamestring - Name of the cursor to display when pointing at the marker. These are found in <usernode>/Cursors/Mouse/Cursor - defaults to "SceneDefault", which is the 3D cursor. "GUIDefault" is the 2D pointer.
Idx_HitTestModeHitTestMode (int) - Specifies the hit test method used to do cursor collisions with the markers
Idx_HitTestRadiusfloat - Radius of the where when HitTestMode==Sphere
Idx_DepthTestModeDepthTestMode (int) - Controls how the marker is rendered when occluded by other objects
Idx_MapAutoScalevec3f - Optionally specifies a fixed scale to apply to textures, relative to the Marker's alignment vector

Property index.

enum SizeMode

EnumeratorValueDescription
SizeMode_WorldScale the billboard using the value in Idx_WorldScale (Symbols - C: "SizeModeWorld", Lua: __ModelMarkerStyle_SizeModeWorld)
SizeMode_ViewScale the billboard using the value in Idx_ViewScale (Symbols - C: "SizeModeView", Lua: __ModelMarkerStyle_SizeModeView)
SizeMode_PixelsScale the billboard using the value in Idx_PixelScale (Symbols - C: "SizeModePixels", Lua: __ModelMarkerStyle_SizeModePixels)
SizeMode_LocalSize is world units with local scaling applied (Symbols - C: "SizeModeLocal", Lua: __ModelMarkerStyle_SizeModeLocal)

Values for Idx_SizeMode.