Register Node
Node?
// Register a new node
// -> (namespace, callback)
Blackprint.registerNode('math/multiply', function(node, iface){
// node = Blackprint flow handler
// iface = ScarletsFrame element handler
// Give it a title
iface.title = "Random";
// Give it a description
iface.description = "Multiply something";
// If the node would have value that can be exported to JSON
// It must being set inside options object
iface.options = {};
//> We will use `default` node type, so let this empty or undefined
// iface.interface = 'bp/default';
// ... Other information below ...
});Reserved handler property
Node port registration
Last updated