C4 Engine
C4 Engine API Documentation

Node::AppendNewSubnode

Defined in:  C4Node.h
Adds a newly created subnode to a node.
Prototype

void AppendNewSubnode(Node *node);

Parameters
node A pointer to the subnode to add.
Description
The AppendNewSubnode function add the subnode specified by the node parameter to a node and subsequently preprocesses the subnode. Calling AppendNewSubnode is equivalent to calling Tree::AppendSubnode for the same node object and then calling Node::PreprocessNode for the node specified by node.
See Also

Tree::AppendSubnode

Node::PreprocessNode

World::AddNewNode