Capítulo 491 de 859

Chapter 491: SubBuildNode

Core Idea

This node is used to build a sub-build in the node system.

Key Concepts

  • isSubBuildNode : boolean (readonly): This flag can be used for type testing.
  • name : string: The name of the sub-build.
  • node : Node: The node to be built in the sub-build.

Reference Tables

Constructor

Signature
new SubBuildNode( node : Node, name : string, nodeType : string )

Properties

PropertyDescription
.isSubBuildNode : boolean (readonly)This flag can be used for type testing.
.name : stringThe name of the sub-build.
.node : NodeThe node to be built in the sub-build.

Key Takeaways

  1. SubBuildNode extends: EventDispatcher → Node
  2. Most relevant properties: isSubBuildNode, name, node.

Connects To