Page rewrite to add more info |
make page translateable |
||
Line 24: | Line 24: | ||
<translate>Slots contain '''components''', which provide almost all the functionality in Resonite. See the main article for details.</translate> | <translate>Slots contain '''components''', which provide almost all the functionality in Resonite. See the main article for details.</translate> | ||
=== Fields === | === <translate>Fields</translate> === | ||
Similar to [[Component]]s, slots have a number of fields that can be modified: | <translate>Similar to [[Component]]s, slots have a number of fields that can be modified:</translate> | ||
{{Table TypeFields | {{Table TypeFields | ||
|Name|String|The name of the component, as shown in the scene inspector. | |Name|String|<translate>The name of the component, as shown in the scene inspector.</translate> | ||
|Parent|Slot|A reference to the parent slot in the hierarchy. | |Parent|Slot|<translate>A reference to the parent slot in the hierarchy.</translate> | ||
|Tag|String|A string tag used for identifying slots in various systems. | |Tag|String|<translate>A string tag used for identifying slots in various systems.</translate> | ||
|Active|Bool|A general-purpose field to "disable" this slot and its components. If a slot is deactivated, its children are deactivated too. Note that not all components and features respect this field. | |Active|Bool|<translate>A general-purpose field to "disable" this slot and its components. If a slot is deactivated, its children are deactivated too. Note that not all components and features respect this field.</translate> | ||
|Persistent|Bool|Whether this slot will be saved, for example to the [[Inventory]]. If this is disabled, the slot and all its descendants will not be saved. | |Persistent|Bool|<translate>Whether this slot will be saved, for example to the [[Inventory]]. If this is disabled, the slot and all its descendants will not be saved.</translate> | ||
|Position|Float3|The position offset this slot has relative to its parent. | |Position|Float3|<translate>The position offset this slot has relative to its parent.</translate> | ||
|Rotation|FloatQ|The rotation this slot has relative to its parent. | |Rotation|FloatQ|<translate>The rotation this slot has relative to its parent.</translate> | ||
|Scale|Float3|The scale this slot has relative to its parent. | |Scale|Float3|<translate>The scale this slot has relative to its parent.</translate> | ||
|OrderOffset|Long|Controls the sort order of this control relative to its siblings. Slots with a higher value are "after" sibling with a lower value. This controls the order both in the scene inspector, and in many of Resonite's internal processes. | |OrderOffset|Long|<translate>Controls the sort order of this control relative to its siblings. Slots with a higher value are "after" sibling with a lower value. This controls the order both in the scene inspector, and in many of Resonite's internal processes.</translate> | ||
}} | }} | ||
== <translate>Working With Slots</translate> == | == <translate>Working With Slots</translate> == | ||
Line 49: | Line 49: | ||
<translate>[[ProtoFlux]] has a set of nodes for working with the slot hierarchy, see [[:Category:ProtoFlux:Slots]] for a list. Note that access to a slot's components is currently limited.<ref><tvar name=1>{{CiteResoniteIssue|57|A way to use components on Protoflux}}</tvar></ref></translate> | <translate>[[ProtoFlux]] has a set of nodes for working with the slot hierarchy, see [[:Category:ProtoFlux:Slots]] for a list. Note that access to a slot's components is currently limited.<ref><tvar name=1>{{CiteResoniteIssue|57|A way to use components on Protoflux}}</tvar></ref></translate> | ||
== References == | == <translate>References</translate> == |
Revision as of 08:32, 6 March 2024
Every object in Resonite exists as a Slot. Slots form hierarchies, exist in 3D space via a transformation, and contain Components to add additional behavior.
Basic Properties
Hierarchy
A slot can contain zero or more slots, forming a hierarchy or "tree". A slot is a child if it is contained within another slot; that slot is its parent. The only slot without a parent is the root of the world, which contains all other slots.
This hierarchy is used for organization, transformation (see below), and many other features in Resonite.
Transformation
Every slot can be transformed in 3D space: it can be translated (moved), rotated, and scaled. A child slot's transformation is relative to its parent, so even though a child slot might specify no transformation, in global space it may be rotated or scaled because its parents are. Thus, a child's transform is called "local".
Components
Main article: Component
Slots contain components, which provide almost all the functionality in Resonite. See the main article for details.
Fields
Similar to Components, slots have a number of fields that can be modified:
Name | Type | Description |
---|---|---|
Name
|
String | The name of the component, as shown in the scene inspector. |
Parent
|
Slot | A reference to the parent slot in the hierarchy. |
Tag
|
String | A string tag used for identifying slots in various systems. |
Active
|
Bool | A general-purpose field to "disable" this slot and its components. If a slot is deactivated, its children are deactivated too. Note that not all components and features respect this field. |
Persistent
|
Bool | Whether this slot will be saved, for example to the Inventory. If this is disabled, the slot and all its descendants will not be saved. |
Position
|
Float3 | The position offset this slot has relative to its parent. |
Rotation
|
FloatQ | The rotation this slot has relative to its parent. |
Scale
|
Float3 | The scale this slot has relative to its parent. |
OrderOffset
|
Long | Controls the sort order of this control relative to its siblings. Slots with a higher value are "after" sibling with a lower value. This controls the order both in the scene inspector, and in many of Resonite's internal processes. |
Working With Slots
With the Scene Inspector
As a user, slots are primarily manipulated through the Scene Inspector. You can view, create, destroy and modify slots and their components.
With ProtoFlux
ProtoFlux has a set of nodes for working with the slot hierarchy, see Category:ProtoFlux:Slots for a list. Note that access to a slot's components is currently limited.[1]