Enum LocatableAttribute.InstaniatePrefabHierachyPosition
- Namespace
- JLChnToZ.VRC.Foundation
The position of the prefab to instantiate.
[Flags]
public enum LocatableAttribute.InstaniatePrefabHierachyPosition : byte
- Extension Methods
Fields
After = SameLevel | NextSiblingJust after the attached game object.
Before = SameLevel | PreviousSiblingJust before the attached game object.
Child = 1As a child of the attached game object.
First = 16As the first of the designated level.
FirstChild = Child | FirstAs the first child of the attached game object.
FirstRoot = 16As the first child of the root.
FirstSameLevel = SameLevel | FirstAs the first child of the same level.
Last = 32As the last of the designated level.
LastChild = Child | LastAs the last child of the attached game object.
LastRoot = 32As the last child of the root.
LastSameLevel = SameLevel | LastAs the last child of the same level.
NextSibling = 8As the next sibling.
PreviousSibling = 4As the previous sibling.
Root = 0At the root of the hierarchy.
SameLevel = 2At the same level of the attached game object.