Home -> IStateGroupNode -> AddChildNodes

Description

The AddChildNodes method adds the specified set of IRenderableNode objects to the list of child nodes.

Usage

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

Argument list

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

See also