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