N E W
InspectorNode is a wrapper node that allows inspection of node values during rendering. It can be used to debug or analyze node outputs in the rendering pipeline.
Constructor
new InspectorNode(node, name?, callback?)| Parameter | Type | Default Value |
|---|---|---|
| node | Node | — |
| name? | string | |
| callback? | null | Function | null |
Creates an InspectorNode.
| Accessor | Type | Modifiers |
|---|---|---|
| get type | string | static |
| Method | Type | Modifiers |
|---|---|---|
| getName | () => string | — |
| update | (frame: NodeFrame) => void | — |
| getNodeType | (builder: NodeBuilder) => string | — |
| setup | (builder: NodeBuilder) => Node | — |
Extends
NodeN E W
Creates an inspector node to wrap around a given node for inspection purposes.
| Parameter | Type | Default Value |
|---|---|---|
| node | Node | — |
| name? | string | |
| callback? | null | Function | null |
Returns
Node