Difference between revisions of "Slot"

From Neos Wiki
Jump to navigation Jump to search
m
 
Line 1: Line 1:
 
<languages/><translate>
 
<languages/><translate>
 
<!--T:1-->
 
<!--T:1-->
Every object in Neos exists as a '''slot'''. A slot is a container for [[Component|Components]], which add additional behavior to slots. Every slot has a translation, rotation, and scale associated with it, which define its behavior and orientation in Neos' 3D coordinate space. For example, a slot with a [[MeshRenderer_(Component)|MeshRenderer]] component will render a model, and scaling that slot will scale the rendered model.
+
Every object in Neos exists as a '''slot'''. A slot is a container for [[Component|Components]], which add additional behavior to slots. Every slot has a transformation (a translation, rotation, and scale) associated with it, which define its behavior and orientation in Neos' 3D coordinate space. For example, a slot with a [[MeshRenderer_(Component)|MeshRenderer]] component will render a model, and scaling that slot will scale the rendered model.
  
 
<!--T:2-->
 
<!--T:2-->
Slots can be contained in other slots. A slot is a '''child''' if it is contained within another slot; that slot is its '''parent'''. Children will inherit the transformations of their parents.
+
Slots can be contained in other slots. A slot is a '''child''' if it is contained within another slot; that slot is its '''parent'''. 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".
  
 
<!--T:3-->
 
<!--T:3-->

Latest revision as of 17:05, 20 May 2021

Other languages:
English • ‎日本語 • ‎한국어

Every object in Neos exists as a slot. A slot is a container for Components, which add additional behavior to slots. Every slot has a transformation (a translation, rotation, and scale) associated with it, which define its behavior and orientation in Neos' 3D coordinate space. For example, a slot with a MeshRenderer component will render a model, and scaling that slot will scale the rendered model.

Slots can be contained in other slots. A slot is a child if it is contained within another slot; that slot is its parent. 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".

Every world has a root slot under which everything else is placed. The resulting tree of slots is called the hierarchy.

Slots can be browsed through and examined in the Scene Inspector.