Component image 
Slot Gizmo component as seen in the Scene Inspector

The SlotGizmo is used with the Dev tool to interact with slots when they are selected and their sub gizmos. This is rarely interacted directly with by the user, but is a very important component for interacting with the game.
Fields
Name | Type | Description |
---|---|---|
persistent
|
Bool | Determines whether or not this item will be saved to the server. |
UpdateOrder
|
Int | Controls the order in which this component is updated. |
Enabled
|
Bool | Controls whether or not this component is enabled. Some components stop their functionality when this field is disabled, but some don't. |
GizmoReplaced
|
delegate of identity SlotGizmo.SlotGizmoReplacement | A sync delegate to call when the gizmo is replaced with another one. Usually located on the dev tool that created the gizmo. |
_isFolded
|
Bool | Whether the gizmo is folded up. |
_activeGizmo
|
Worker | Which gizmo is being shown right now via tool options. |
_targetSlot
|
direct TransformRelayRef | The slot this is affecting. |
_positionDrive
|
field drive of Float3 | The field to drive position with for this visual. |
_scaleDrive
|
field drive of Float3 | The field to drive scale with for this visual. |
_boundsMesh
|
reference drive of TubeBoxMesh | The mesh to use to show bounds. |
_boundsRoot
|
Slot | The slot to make bounds for. |
_boundsRotation
|
field drive of FloatQ | the field to drive for the bounds rotation. |
_boundsOffset
|
field drive of Float3 | The field to drive for bounds offset. |
_boundsActive
|
field drive of Bool | The field to drive with whether the bounds are active or not. |
_nameText
|
field drive of String | The field to drive with the name of the target slot. |
_nameOffset
|
field drive of Float3 | The position offset field for the visual of the name of targeted slot. |
_nameRotation
|
field drive of FloatQ | The rotation field for the visual of the name of targeted slot. |
_nameActive
|
field drive of Bool | The active field for the visual of the name of targeted slot. |
_xPosSegment
|
reference drive of SegmentMesh | The segment used for the X position vs this slot's parent slot. |
_yPosSegment
|
reference drive of SegmentMesh | The segment used for the Y position vs this slot's parent slot. |
_zPosSegment
|
reference drive of SegmentMesh | The segment used for the Z position vs this slot's parent slot. |
_boundsAnchorPositions
|
list of SlotGizmo.AnchorInfo | A list of infos for anchors this slot gizmo has. |
_rootAnchor
|
PointAnchor | The root point anchor for this gizmo. |
_translationGizmo
|
TranslationGizmo | The gizmo used for changing this slot's position. |
_rotationGizmo
|
RotationGizmo | The gizmo used for changing this slot's rotation. |
_scaleGizmo
|
ScaleGizmo | The gizmo used for changing this slot's scale. |
IsLocalSpace
|
Bool | Whether this gizmo is oriented to local space or not. |
SlotGizmoReplacement
Sync Delegate of identity Func`2<SlotGizmo, SlotGizmo> for replacing the old gimzo (argument 1) with a new one.
AnchorInfo
Name | Type | Description |
---|---|---|
anchor
|
PointAnchor | The point anchor to snap to for other gizmos. |
posDrive
|
field drive of Float3 | The position to drive for this point anchor. |
scaleDrive
|
field drive of Float3 | The scale to drive for this point anchor. |