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