Capítulo 443 de 859

Chapter 443: OutputStructNode

Core Idea

This node can be used to define multiple outputs in a shader programs.

Key Concepts

  • isOutputStructNode : boolean (readonly): This flag can be used for type testing.
  • members : Array.<Node>: An array of nodes which defines the output.

Reference Tables

Constructor

Signature
new OutputStructNode( …members : Node )

Properties

PropertyDescription
.isOutputStructNode : boolean (readonly)This flag can be used for type testing.
.members : Array.<Node>An array of nodes which defines the output.

Key Takeaways

  1. OutputStructNode extends: EventDispatcher → Node
  2. Most relevant properties: isOutputStructNode, members.

Connects To