anchorNode.anchor = nullDoes this:
- Disable the AnchorNode repositioning every Anchor position update
- Remove itself and all it child Nodes from the Scene = setParent(null)
- Disable/Stop rendering itself and all it child Nodes = setEnable(false)
node.parent = nullOR (do the same thing)
parentNode.removeChild(node)Both does this:
- Remove himself and all it child Nodes from the Scene
- Disable/Stop rendering himself and all it child Nodes = setEnable(false)
node.enabled= falseDoes this:
- Disable/Stop rendering himself and all it child Nodes = setEnable(false)
node.renderableInstance.destroy()