Sceneform Maintained SDK for Android

Remove or Hide a node

Remove or Hide a node

Remove an AnchorNode from the Scene

anchorNode.anchor = null

Does this:

Remove a Model Node, VideoNode, AugmentedFaceNode,... from the Scene

node.parent = null

OR (do the same thing)

parentNode.removeChild(node)

Both does this:

Show/Hide a Node = Don't render it

node.enabled= false

Does this:

Destroy a Model Node = free renderable resources

node.renderableInstance.destroy()