Version: Unity 6.3 Beta (6000.3)
LanguageEnglish
  • C#

Hierarchy.SetParent

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public void SetParent(ref Unity.Hierarchy.HierarchyNode node, ref Unity.Hierarchy.HierarchyNode parent);

Parameters

Parameter Description
node The hierarchy node.
parent The hierarchy node to set as a parent.

Description

Sets the parent of a hierarchy node.


Declaration

public void SetParent(ref Unity.Hierarchy.HierarchyNode node, ref Unity.Hierarchy.HierarchyNode parent, int index);

Parameters

Parameter Description
node The hierarchy node.
parent The hierarchy node to set as a parent.
index The index at which to insert the node in the parent's children list.

Description

Sets the parent of a hierarchy node.

The index maximum value is the parent's child count, or child count minus one if moving within the same parent.