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