Readonly
idReadonly
stickfigureReadonly
draw_Get the index of every node that is a direct child of this node.
Get the reference of every node that is a direct child of this node.
Get the index of every node that has the same parent as this node.
Get the reference of every node that has the same parent as this node.
Get the index of every node that is a child of this node, recursively.
Includes child nodes of child nodes of child nodes and so on.
Use get_child_indices()
to get only direct children of this node.
Use get_descendant_nodes()
to get the reference of descendant nodes instead.
Get the reference of every node that is a child of this node, recursively.
Includes child nodes of child nodes of child nodes and so on.
Use get_child_nodes()
to get only direct children of this node.
Use get_descendant_indices()
to get the index of descendant nodes instead.
Get the index of every node that is a parent of this node, recursively.
Includes parent node of parent node of parent node and so on.
Use get_parent_index()
to get only the direct parent of this node.
Use get_ancestor_nodes()
to get the reference of ancestor nodes instead.
Get the reference of every node that is a parent of this node, recursively.
Includes parent node of parent node of parent node and so on.
Use get_parent_node()
to get only the direct parent of this node.
Use get_ancestor_indices()
to get the index of ancestor nodes instead.
Get the index of the direct parent of this node.
Use get_parent_node()
to get the reference of the parent node instead.
Get the reference of the direct parent of this node.
Use get_parent_index()
to get the index of the parent node instead.
Add a new node as a sibling of this node (a child of this node's parent).
Delete this current node.
Set the draw index of this node to a new draw index. Will increment all indices that are >= the desired draw index if the desired draw index is already occupied.