this repo has no description
at main 493 B view raw
1import { Node, NodeType } from "../../structs/node"; 2import { NodeDefinition } from "../Nodes"; 3 4export let NodeOSCActionsSendChatbox: NodeDefinition = { 5 os: 'any', 6 7 isSingle: true, 8 name: 'Send Chatbox', 9 typeId: 'oscsendchatbox', 10 11 w: 200, 12 13 statics: [{ 14 type: NodeType.Label, 15 name: 'Send Chatbox', 16 value: null 17 }], 18 19 inputs: [ 20 { name: "Flow", type: NodeType.Flow }, 21 { name: "Value", type: NodeType.String } 22 ], 23 24 onStaticsUpdate: async ( _node: Node ) => {} 25}