this repo has no description
at main 432 B view raw
1import { Node, NodeType } from "../../structs/node"; 2import { NodeDefinition } from "../Nodes"; 3 4export let NodeStaticsString: NodeDefinition = { 5 os: 'any', 6 7 isSingle: true, 8 name: 'String', 9 typeId: 'staticstring', 10 11 w: 200, 12 13 statics: [{ 14 type: NodeType.String, 15 name: 'Value', 16 value: 'Hello World!' 17 }], 18 19 outputs: [{ name: "String", type: NodeType.String }], 20 21 onStaticsUpdate: async ( _node: Node ) => {} 22}