Skip to main content

Meta_Marker

Module: Metanodes / Definitions

A Marker is a 3D icon used to represent a clickable / draggable object in the scene - defaults to a sphere.

#include <meta_gui.hpp>

Public Types

TypeName
enumAutoSelectMode { AutoSelect_Off, AutoSelect_Marker, AutoSelect_Parent, AutoSelect_Link }
Values for Idx_AutoSelect.
enumIDX { Idx_Enabled, Idx_Position, Idx_Style, Idx_Draggable, Idx_AutoSelect, Idx_AutoSelectLink, Idx_Unpickable, Idx_Rotation, Idx_SnapTo, Idx_SizingReference, Idx_AlignmentVector, Idx_MapOffset, Idx_SupportClipPlanes }
Property index.
enumSnapTo { SnapTo_Geometry, SnapTo_Plane, SnapTo_GeometryOrPlane }
Values for Idx_SnapTo.

Public Types Documentation

enum AutoSelectMode

EnumeratorValueDescription
AutoSelect_OffNo tree selection when marker is clicked (Symbols - C: "AutoSelectOff", Lua: __Marker_AutoSelectOff)
AutoSelect_MarkerSelect the marker itself when it is clicked (Symbols - C: "AutoSelectMarker", Lua: __Marker_AutoSelectMarker)
AutoSelect_ParentSelect the parent of the marker when it is clicked (Symbols - C: "AutoSelectParent", Lua: __Marker_AutoSelectParent)
AutoSelect_LinkSelect the node specified in Idx_AutoSelectLink (Symbols - C: "AutoSelectLink", Lua: __Marker_AutoSelectLink)

Values for Idx_AutoSelect.

enum IDX

EnumeratorValueDescription
Idx_Enabledbool - Enables or disables the marker and its visual
Idx_Positionvec3w - Position of the marker relative to its parent
Idx_Stylelink - A style to apply to the marker (Meta_SphericalMarkerStyle, Meta_ModelMarkerStyle, Meta_ImageMarkerStyle)
Idx_Draggablebool - Whether the marker is draggable with the mouse
Idx_AutoSelectAutoSelectMode (int) - What happens when the marker is clicked in the scene
Idx_AutoSelectLinklink - When AutoSelectMode==Link, this node is selected
Idx_Unpickablebool - Whether the marker is pickable (false means the cursor cannot click on it)
Idx_Rotationvec3w - Rotation of the marker relative to its parent
Idx_SnapToSnapTo - What to snap to when dragging
Idx_SizingReferencelink - Optionally specify a node whose bounding sphere is used as the reference for calculating screen scale (if the style indicates a screen sized marker)
Idx_AlignmentVectorvec3w - Specifies the orientation and length when the style is set to Vector alignment mode
Idx_MapOffsetfloat - Adjusts the texture mapping when the style uses Map Auto Scale
Idx_SupportClipPlanesbool - Should the gui item respond to clip planes

Property index.

enum SnapTo

EnumeratorValueDescription
SnapTo_GeometryDragging the marker snaps to whatever surface the cursor is touching (Symbols - C: "SnapToGeometry", Lua: __Marker_SnapToGeometry)
SnapTo_PlaneDragging the marker snaps to the camera-aligned plane it was on before it was dragged (Symbols - C: "SnapToPlane", Lua: __Marker_SnapToPlane)
SnapTo_GeometryOrPlaneDragging the marker snaps as per Geometry mode, but switches to Plane mode when Shift is held down (Symbols - C: "SnapToGeometryOrPlane", Lua: __Marker_SnapToGeometryOrPlane)

Values for Idx_SnapTo.