Version: Unity 6.5 Alpha (6000.5)
LanguageEnglish
  • C#

ContextNode.AddBlockNode

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public void AddBlockNode(BlockNode blockNode);

Parameters

Parameter Description
blockNode The BlockNode to add.

Description

Adds an existing BlockNode to this context node.

Use this method to add an existing block node to the end of this context node. Consider using ContextNode.InsertBlockNode to insert at a specific position, or ContextNode.CreateBlockNode to create and add a new block node. When the block node already belongs to another context node, it is removed from that context and added to this one. Throws ArgumentException if the block node is not compatible with this context node.