this repo has no description
1import { Node, NodeType } from "../structs/node";
2import { NodeDefinition } from "./Nodes";
3
4export let NodeDebug: NodeDefinition = {
5 os: 'any',
6
7 isSingle: true,
8 name: 'Debug',
9 typeId: 'debug',
10
11 w: 200,
12
13 statics: [
14 {
15 name: "Debug",
16 type: NodeType.Label,
17 value: null
18 }
19 ],
20
21 inputs: [
22 {
23 name: "Flow",
24 type: NodeType.Flow,
25 },
26 {
27 name: "Value",
28 type: NodeType.AnyTypeA,
29 }
30 ],
31
32 onStaticsUpdate: async ( _node: Node ) => {}
33};