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