Create New Instance
Work In progress
// Create Blackprint Interpreter instance, `instance` in this documentation will refer to this
var instance = new Blackprint.Interpreter();
// Example: Create new node (after registration)
var node = instance.createNode('math/multiply', {/* node options */});
// Clear all nodes on this instance
instance.clearNodes();
// Example: Import nodes from JSON (after registration)
instance.importJSON(/* JSON || Object */);
Last updated