Home -> IStateGroupNode -> RemoveChildNodes

Description

The RemoveChildNodes method removes the specified set of IRenderableNode objects from the list of child nodes if present.

Usage

void RemoveChildNodes(IRenderableNode* const* childNodes, size_t childNodeCount);
void RemoveChildNodes(IRenderableNode::unique_ptr const* childNodes, size_t childNodeCount);

Argument list

childNodes [IRenderableNode* const* / IRenderableNode::unique_ptr const*]
The set of IRenderableNode objects to remove from the list of child nodes
childNodeCount [size_t]
The number of IRenderableNode entries to read from the childNodes array

See also