2023-11-22 17:52:20 +00:00
|
|
|
import { ComfyWidgets, addValueControlWidgets } from "../../scripts/widgets.js";
|
2023-07-10 09:09:03 +00:00
|
|
|
import { app } from "../../scripts/app.js";
|
2023-12-05 21:02:10 +00:00
|
|
|
import { applyTextReplacements } from "../../scripts/utils.js";
|
2023-03-23 21:37:19 +00:00
|
|
|
|
|
|
|
const CONVERTED_TYPE = "converted-widget";
|
Execution Model Inversion (#2666)
* Execution Model Inversion
This PR inverts the execution model -- from recursively calling nodes to
using a topological sort of the nodes. This change allows for
modification of the node graph during execution. This allows for two
major advantages:
1. The implementation of lazy evaluation in nodes. For example, if a
"Mix Images" node has a mix factor of exactly 0.0, the second image
input doesn't even need to be evaluated (and visa-versa if the mix
factor is 1.0).
2. Dynamic expansion of nodes. This allows for the creation of dynamic
"node groups". Specifically, custom nodes can return subgraphs that
replace the original node in the graph. This is an incredibly
powerful concept. Using this functionality, it was easy to
implement:
a. Components (a.k.a. node groups)
b. Flow control (i.e. while loops) via tail recursion
c. All-in-one nodes that replicate the WebUI functionality
d. and more
All of those were able to be implemented entirely via custom nodes,
so those features are *not* a part of this PR. (There are some
front-end changes that should occur before that functionality is
made widely available, particularly around variant sockets.)
The custom nodes associated with this PR can be found at:
https://github.com/BadCafeCode/execution-inversion-demo-comfyui
Note that some of them require that variant socket types ("*") be
enabled.
* Allow `input_info` to be of type `None`
* Handle errors (like OOM) more gracefully
* Add a command-line argument to enable variants
This allows the use of nodes that have sockets of type '*' without
applying a patch to the code.
* Fix an overly aggressive assertion.
This could happen when attempting to evaluate `IS_CHANGED` for a node
during the creation of the cache (in order to create the cache key).
* Fix Pyright warnings
* Add execution model unit tests
* Fix issue with unused literals
Behavior should now match the master branch with regard to undeclared
inputs. Undeclared inputs that are socket connections will be used while
undeclared inputs that are literals will be ignored.
* Make custom VALIDATE_INPUTS skip normal validation
Additionally, if `VALIDATE_INPUTS` takes an argument named `input_types`,
that variable will be a dictionary of the socket type of all incoming
connections. If that argument exists, normal socket type validation will
not occur. This removes the last hurdle for enabling variant types
entirely from custom nodes, so I've removed that command-line option.
I've added appropriate unit tests for these changes.
* Fix example in unit test
This wouldn't have caused any issues in the unit test, but it would have
bugged the UI if someone copy+pasted it into their own node pack.
* Use fstrings instead of '%' formatting syntax
* Use custom exception types.
* Display an error for dependency cycles
Previously, dependency cycles that were created during node expansion
would cause the application to quit (due to an uncaught exception). Now,
we'll throw a proper error to the UI. We also make an attempt to 'blame'
the most relevant node in the UI.
* Add docs on when ExecutionBlocker should be used
* Remove unused functionality
* Rename ExecutionResult.SLEEPING to PENDING
* Remove superfluous function parameter
* Pass None for uneval inputs instead of default
This applies to `VALIDATE_INPUTS`, `check_lazy_status`, and lazy values
in evaluation functions.
* Add a test for mixed node expansion
This test ensures that a node that returns a combination of expanded
subgraphs and literal values functions correctly.
* Raise exception for bad get_node calls.
* Minor refactor of IsChangedCache.get
* Refactor `map_node_over_list` function
* Fix ui output for duplicated nodes
* Add documentation on `check_lazy_status`
* Add file for execution model unit tests
* Clean up Javascript code as per review
* Improve documentation
Converted some comments to docstrings as per review
* Add a new unit test for mixed lazy results
This test validates that when an output list is fed to a lazy node, the
node will properly evaluate previous nodes that are needed by any inputs
to the lazy node.
No code in the execution model has been changed. The test already
passes.
* Allow kwargs in VALIDATE_INPUTS functions
When kwargs are used, validation is skipped for all inputs as if they
had been mentioned explicitly.
* List cached nodes in `execution_cached` message
This was previously just bugged in this PR.
2024-08-15 15:21:11 +00:00
|
|
|
const VALID_TYPES = ["STRING", "combo", "number", "toggle", "BOOLEAN"];
|
2023-10-04 19:48:55 +00:00
|
|
|
const CONFIG = Symbol();
|
2023-10-06 20:48:30 +00:00
|
|
|
const GET_CONFIG = Symbol();
|
2023-12-05 20:27:13 +00:00
|
|
|
const TARGET = Symbol(); // Used for reroutes to specify the real target widget
|
|
|
|
|
|
|
|
export function getWidgetConfig(slot) {
|
|
|
|
return slot.widget[CONFIG] ?? slot.widget[GET_CONFIG]();
|
|
|
|
}
|
2023-03-23 21:37:19 +00:00
|
|
|
|
2023-10-03 19:19:12 +00:00
|
|
|
function getConfig(widgetName) {
|
|
|
|
const { nodeData } = this.constructor;
|
|
|
|
return nodeData?.input?.required[widgetName] ?? nodeData?.input?.optional?.[widgetName];
|
|
|
|
}
|
|
|
|
|
2023-03-23 21:37:19 +00:00
|
|
|
function isConvertableWidget(widget, config) {
|
2023-08-04 02:49:52 +00:00
|
|
|
return (VALID_TYPES.includes(widget.type) || VALID_TYPES.includes(config[0])) && !widget.options?.forceInput;
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function hideWidget(node, widget, suffix = "") {
|
2024-02-11 21:59:25 +00:00
|
|
|
if (widget.type?.startsWith(CONVERTED_TYPE)) return;
|
2023-03-23 21:37:19 +00:00
|
|
|
widget.origType = widget.type;
|
|
|
|
widget.origComputeSize = widget.computeSize;
|
|
|
|
widget.origSerializeValue = widget.serializeValue;
|
|
|
|
widget.computeSize = () => [0, -4]; // -4 is due to the gap litegraph adds between widgets automatically
|
|
|
|
widget.type = CONVERTED_TYPE + suffix;
|
|
|
|
widget.serializeValue = () => {
|
|
|
|
// Prevent serializing the widget if we have no input linked
|
2023-09-02 15:48:44 +00:00
|
|
|
if (!node.inputs) {
|
|
|
|
return undefined;
|
|
|
|
}
|
2023-09-02 16:17:30 +00:00
|
|
|
let node_input = node.inputs.find((i) => i.widget?.name === widget.name);
|
|
|
|
|
|
|
|
if (!node_input || !node_input.link) {
|
2023-03-23 21:37:19 +00:00
|
|
|
return undefined;
|
|
|
|
}
|
2023-04-02 12:43:40 +00:00
|
|
|
return widget.origSerializeValue ? widget.origSerializeValue() : widget.value;
|
2023-03-23 21:37:19 +00:00
|
|
|
};
|
|
|
|
|
2023-04-13 00:57:13 +00:00
|
|
|
// Hide any linked widgets, e.g. seed+seedControl
|
2023-03-23 21:37:19 +00:00
|
|
|
if (widget.linkedWidgets) {
|
|
|
|
for (const w of widget.linkedWidgets) {
|
|
|
|
hideWidget(node, w, ":" + widget.name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function showWidget(widget) {
|
|
|
|
widget.type = widget.origType;
|
|
|
|
widget.computeSize = widget.origComputeSize;
|
|
|
|
widget.serializeValue = widget.origSerializeValue;
|
|
|
|
|
|
|
|
delete widget.origType;
|
|
|
|
delete widget.origComputeSize;
|
|
|
|
delete widget.origSerializeValue;
|
|
|
|
|
2023-04-13 00:57:13 +00:00
|
|
|
// Hide any linked widgets, e.g. seed+seedControl
|
2023-03-23 21:37:19 +00:00
|
|
|
if (widget.linkedWidgets) {
|
|
|
|
for (const w of widget.linkedWidgets) {
|
|
|
|
showWidget(w);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function convertToInput(node, widget, config) {
|
|
|
|
hideWidget(node, widget);
|
|
|
|
|
2023-10-05 18:16:39 +00:00
|
|
|
const { type } = getWidgetType(config);
|
2023-03-23 21:37:19 +00:00
|
|
|
|
|
|
|
// Add input and store widget config for creating on primitive node
|
2023-03-24 16:36:11 +00:00
|
|
|
const sz = node.size;
|
2023-10-05 18:16:39 +00:00
|
|
|
node.addInput(widget.name, type, {
|
2023-10-06 20:48:30 +00:00
|
|
|
widget: { name: widget.name, [GET_CONFIG]: () => config },
|
2023-03-23 21:37:19 +00:00
|
|
|
});
|
2023-03-24 16:36:11 +00:00
|
|
|
|
2023-06-20 16:03:46 +00:00
|
|
|
for (const widget of node.widgets) {
|
|
|
|
widget.last_y += LiteGraph.NODE_SLOT_HEIGHT;
|
|
|
|
}
|
|
|
|
|
2023-03-24 16:36:11 +00:00
|
|
|
// Restore original size but grow if needed
|
|
|
|
node.setSize([Math.max(sz[0], node.size[0]), Math.max(sz[1], node.size[1])]);
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function convertToWidget(node, widget) {
|
|
|
|
showWidget(widget);
|
2023-03-24 16:36:11 +00:00
|
|
|
const sz = node.size;
|
2023-03-23 21:37:19 +00:00
|
|
|
node.removeInput(node.inputs.findIndex((i) => i.widget?.name === widget.name));
|
2023-03-24 16:36:11 +00:00
|
|
|
|
2023-06-20 16:03:46 +00:00
|
|
|
for (const widget of node.widgets) {
|
|
|
|
widget.last_y -= LiteGraph.NODE_SLOT_HEIGHT;
|
|
|
|
}
|
|
|
|
|
2023-03-24 16:36:11 +00:00
|
|
|
// Restore original size but grow if needed
|
|
|
|
node.setSize([Math.max(sz[0], node.size[0]), Math.max(sz[1], node.size[1])]);
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
2023-10-05 18:16:39 +00:00
|
|
|
function getWidgetType(config) {
|
2023-03-23 21:37:19 +00:00
|
|
|
// Special handling for COMBO so we restrict links based on the entries
|
|
|
|
let type = config[0];
|
|
|
|
if (type instanceof Array) {
|
|
|
|
type = "COMBO";
|
|
|
|
}
|
2023-10-05 18:16:39 +00:00
|
|
|
return { type };
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
2023-10-21 02:49:04 +00:00
|
|
|
function isValidCombo(combo, obj) {
|
|
|
|
// New input isnt a combo
|
|
|
|
if (!(obj instanceof Array)) {
|
|
|
|
console.log(`connection rejected: tried to connect combo to ${obj}`);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// New imput combo has a different size
|
|
|
|
if (combo.length !== obj.length) {
|
|
|
|
console.log(`connection rejected: combo lists dont match`);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
// New input combo has different elements
|
|
|
|
if (combo.find((v, i) => obj[i] !== v)) {
|
|
|
|
console.log(`connection rejected: combo lists dont match`);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-12-05 20:27:13 +00:00
|
|
|
export function setWidgetConfig(slot, config, target) {
|
|
|
|
if (!slot.widget) return;
|
|
|
|
if (config) {
|
|
|
|
slot.widget[GET_CONFIG] = () => config;
|
|
|
|
slot.widget[TARGET] = target;
|
|
|
|
} else {
|
|
|
|
delete slot.widget;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (slot.link) {
|
|
|
|
const link = app.graph.links[slot.link];
|
|
|
|
if (link) {
|
|
|
|
const originNode = app.graph.getNodeById(link.origin_id);
|
|
|
|
if (originNode.type === "PrimitiveNode") {
|
|
|
|
if (config) {
|
|
|
|
originNode.recreateWidget();
|
|
|
|
} else if(!app.configuringGraph) {
|
|
|
|
originNode.disconnectOutput(0);
|
|
|
|
originNode.onLastDisconnect();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-30 19:13:27 +00:00
|
|
|
export function mergeIfValid(output, config2, forceUpdate, recreateWidget, config1) {
|
|
|
|
if (!config1) {
|
|
|
|
config1 = output.widget[CONFIG] ?? output.widget[GET_CONFIG]();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (config1[0] instanceof Array) {
|
|
|
|
if (!isValidCombo(config1[0], config2[0])) return false;
|
|
|
|
} else if (config1[0] !== config2[0]) {
|
|
|
|
// Types dont match
|
|
|
|
console.log(`connection rejected: types dont match`, config1[0], config2[0]);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const keys = new Set([...Object.keys(config1[1] ?? {}), ...Object.keys(config2[1] ?? {})]);
|
|
|
|
|
|
|
|
let customConfig;
|
|
|
|
const getCustomConfig = () => {
|
|
|
|
if (!customConfig) {
|
|
|
|
if (typeof structuredClone === "undefined") {
|
|
|
|
customConfig = JSON.parse(JSON.stringify(config1[1] ?? {}));
|
|
|
|
} else {
|
|
|
|
customConfig = structuredClone(config1[1] ?? {});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return customConfig;
|
|
|
|
};
|
|
|
|
|
|
|
|
const isNumber = config1[0] === "INT" || config1[0] === "FLOAT";
|
|
|
|
for (const k of keys.values()) {
|
2024-08-14 05:22:10 +00:00
|
|
|
if (k !== "default" && k !== "forceInput" && k !== "defaultInput" && k !== "control_after_generate" && k !== "multiline" && k !== "tooltip") {
|
2023-11-30 19:13:27 +00:00
|
|
|
let v1 = config1[1][k];
|
|
|
|
let v2 = config2[1]?.[k];
|
|
|
|
|
|
|
|
if (v1 === v2 || (!v1 && !v2)) continue;
|
|
|
|
|
|
|
|
if (isNumber) {
|
|
|
|
if (k === "min") {
|
|
|
|
const theirMax = config2[1]?.["max"];
|
|
|
|
if (theirMax != null && v1 > theirMax) {
|
|
|
|
console.log("connection rejected: min > max", v1, theirMax);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
getCustomConfig()[k] = v1 == null ? v2 : v2 == null ? v1 : Math.max(v1, v2);
|
|
|
|
continue;
|
|
|
|
} else if (k === "max") {
|
|
|
|
const theirMin = config2[1]?.["min"];
|
|
|
|
if (theirMin != null && v1 < theirMin) {
|
|
|
|
console.log("connection rejected: max < min", v1, theirMin);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
getCustomConfig()[k] = v1 == null ? v2 : v2 == null ? v1 : Math.min(v1, v2);
|
|
|
|
continue;
|
|
|
|
} else if (k === "step") {
|
|
|
|
let step;
|
|
|
|
if (v1 == null) {
|
|
|
|
// No current step
|
|
|
|
step = v2;
|
|
|
|
} else if (v2 == null) {
|
|
|
|
// No new step
|
|
|
|
step = v1;
|
|
|
|
} else {
|
|
|
|
if (v1 < v2) {
|
|
|
|
// Ensure v1 is larger for the mod
|
|
|
|
const a = v2;
|
|
|
|
v2 = v1;
|
|
|
|
v1 = a;
|
|
|
|
}
|
|
|
|
if (v1 % v2) {
|
|
|
|
console.log("connection rejected: steps not divisible", "current:", v1, "new:", v2);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
step = v1;
|
|
|
|
}
|
|
|
|
|
|
|
|
getCustomConfig()[k] = step;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log(`connection rejected: config ${k} values dont match`, v1, v2);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (customConfig || forceUpdate) {
|
|
|
|
if (customConfig) {
|
|
|
|
output.widget[CONFIG] = [config1[0], customConfig];
|
|
|
|
}
|
|
|
|
|
|
|
|
const widget = recreateWidget?.call(this);
|
|
|
|
// When deleting a node this can be null
|
|
|
|
if (widget) {
|
|
|
|
const min = widget.options.min;
|
|
|
|
const max = widget.options.max;
|
|
|
|
if (min != null && widget.value < min) widget.value = min;
|
|
|
|
if (max != null && widget.value > max) widget.value = max;
|
|
|
|
widget.callback(widget.value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return { customConfig };
|
|
|
|
}
|
|
|
|
|
2024-04-18 20:41:23 +00:00
|
|
|
let useConversionSubmenusSetting;
|
2023-03-23 21:37:19 +00:00
|
|
|
app.registerExtension({
|
|
|
|
name: "Comfy.WidgetInputs",
|
2024-04-18 20:41:23 +00:00
|
|
|
init() {
|
|
|
|
useConversionSubmenusSetting = app.ui.settings.addSetting({
|
|
|
|
id: "Comfy.NodeInputConversionSubmenus",
|
|
|
|
name: "Node widget/input conversion sub-menus",
|
|
|
|
tooltip: "In the node context menu, place the entries that convert between input/widget in sub-menus.",
|
|
|
|
type: "boolean",
|
|
|
|
defaultValue: true,
|
|
|
|
});
|
|
|
|
},
|
2023-03-23 21:37:19 +00:00
|
|
|
async beforeRegisterNodeDef(nodeType, nodeData, app) {
|
|
|
|
// Add menu options to conver to/from widgets
|
|
|
|
const origGetExtraMenuOptions = nodeType.prototype.getExtraMenuOptions;
|
2024-02-06 16:55:55 +00:00
|
|
|
nodeType.prototype.convertWidgetToInput = function (widget) {
|
|
|
|
const config = getConfig.call(this, widget.name) ?? [widget.type, widget.options || {}];
|
|
|
|
if (!isConvertableWidget(widget, config)) return false;
|
|
|
|
convertToInput(this, widget, config);
|
|
|
|
return true;
|
|
|
|
};
|
2023-03-23 21:37:19 +00:00
|
|
|
nodeType.prototype.getExtraMenuOptions = function (_, options) {
|
|
|
|
const r = origGetExtraMenuOptions ? origGetExtraMenuOptions.apply(this, arguments) : undefined;
|
|
|
|
|
|
|
|
if (this.widgets) {
|
|
|
|
let toInput = [];
|
|
|
|
let toWidget = [];
|
|
|
|
for (const w of this.widgets) {
|
2023-08-04 02:49:52 +00:00
|
|
|
if (w.options?.forceInput) {
|
|
|
|
continue;
|
|
|
|
}
|
2023-03-23 21:37:19 +00:00
|
|
|
if (w.type === CONVERTED_TYPE) {
|
|
|
|
toWidget.push({
|
|
|
|
content: `Convert ${w.name} to widget`,
|
|
|
|
callback: () => convertToWidget(this, w),
|
|
|
|
});
|
|
|
|
} else {
|
2023-10-03 19:19:12 +00:00
|
|
|
const config = getConfig.call(this, w.name) ?? [w.type, w.options || {}];
|
2023-03-23 21:37:19 +00:00
|
|
|
if (isConvertableWidget(w, config)) {
|
|
|
|
toInput.push({
|
|
|
|
content: `Convert ${w.name} to input`,
|
|
|
|
callback: () => convertToInput(this, w, config),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-04-12 21:02:17 +00:00
|
|
|
|
|
|
|
//Convert.. main menu
|
2023-03-23 21:37:19 +00:00
|
|
|
if (toInput.length) {
|
2024-04-18 20:41:23 +00:00
|
|
|
if (useConversionSubmenusSetting.value) {
|
|
|
|
options.push({
|
|
|
|
content: "Convert Widget to Input",
|
|
|
|
submenu: {
|
|
|
|
options: toInput,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
options.push(...toInput, null);
|
|
|
|
}
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
if (toWidget.length) {
|
2024-04-18 20:41:23 +00:00
|
|
|
if (useConversionSubmenusSetting.value) {
|
|
|
|
options.push({
|
|
|
|
content: "Convert Input to Widget",
|
|
|
|
submenu: {
|
|
|
|
options: toWidget,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
options.push(...toWidget, null);
|
|
|
|
}
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
};
|
|
|
|
|
2023-10-03 19:19:12 +00:00
|
|
|
nodeType.prototype.onGraphConfigured = function () {
|
|
|
|
if (!this.inputs) return;
|
|
|
|
|
|
|
|
for (const input of this.inputs) {
|
|
|
|
if (input.widget) {
|
2023-10-06 20:48:30 +00:00
|
|
|
if (!input.widget[GET_CONFIG]) {
|
|
|
|
input.widget[GET_CONFIG] = () => getConfig.call(this, input.widget.name);
|
2023-10-03 19:19:12 +00:00
|
|
|
}
|
|
|
|
|
2023-10-05 18:16:39 +00:00
|
|
|
// Cleanup old widget config
|
|
|
|
if (input.widget.config) {
|
|
|
|
if (input.widget.config[0] instanceof Array) {
|
|
|
|
// If we are an old converted combo then replace the input type and the stored link data
|
|
|
|
input.type = "COMBO";
|
|
|
|
|
|
|
|
const link = app.graph.links[input.link];
|
|
|
|
if (link) {
|
|
|
|
link.type = input.type;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
delete input.widget.config;
|
|
|
|
}
|
|
|
|
|
2023-10-03 19:19:12 +00:00
|
|
|
const w = this.widgets.find((w) => w.name === input.widget.name);
|
|
|
|
if (w) {
|
|
|
|
hideWidget(this, w);
|
|
|
|
} else {
|
|
|
|
convertToWidget(this, input);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const origOnNodeCreated = nodeType.prototype.onNodeCreated;
|
2023-08-04 02:49:52 +00:00
|
|
|
nodeType.prototype.onNodeCreated = function () {
|
|
|
|
const r = origOnNodeCreated ? origOnNodeCreated.apply(this) : undefined;
|
2023-10-03 19:19:12 +00:00
|
|
|
|
|
|
|
// When node is created, convert any force/default inputs
|
|
|
|
if (!app.configuringGraph && this.widgets) {
|
2023-08-04 02:49:52 +00:00
|
|
|
for (const w of this.widgets) {
|
2023-09-08 04:53:29 +00:00
|
|
|
if (w?.options?.forceInput || w?.options?.defaultInput) {
|
2023-10-03 19:19:12 +00:00
|
|
|
const config = getConfig.call(this, w.name) ?? [w.type, w.options || {}];
|
2023-08-04 02:49:52 +00:00
|
|
|
convertToInput(this, w, config);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-10-03 19:19:12 +00:00
|
|
|
|
2023-08-04 02:49:52 +00:00
|
|
|
return r;
|
2023-10-03 19:19:12 +00:00
|
|
|
};
|
2023-08-04 02:49:52 +00:00
|
|
|
|
2023-03-23 21:37:19 +00:00
|
|
|
const origOnConfigure = nodeType.prototype.onConfigure;
|
|
|
|
nodeType.prototype.onConfigure = function () {
|
|
|
|
const r = origOnConfigure ? origOnConfigure.apply(this, arguments) : undefined;
|
2023-10-03 19:19:12 +00:00
|
|
|
if (!app.configuringGraph && this.inputs) {
|
|
|
|
// On copy + paste of nodes, ensure that widget configs are set up
|
2023-03-23 21:37:19 +00:00
|
|
|
for (const input of this.inputs) {
|
2023-10-06 20:48:30 +00:00
|
|
|
if (input.widget && !input.widget[GET_CONFIG]) {
|
|
|
|
input.widget[GET_CONFIG] = () => getConfig.call(this, input.widget.name);
|
2023-10-08 08:04:25 +00:00
|
|
|
const w = this.widgets.find((w) => w.name === input.widget.name);
|
|
|
|
if (w) {
|
|
|
|
hideWidget(this, w);
|
|
|
|
}
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return r;
|
|
|
|
};
|
|
|
|
|
2023-03-24 20:20:34 +00:00
|
|
|
function isNodeAtPos(pos) {
|
|
|
|
for (const n of app.graph._nodes) {
|
|
|
|
if (n.pos[0] === pos[0] && n.pos[1] === pos[1]) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-03-23 21:37:19 +00:00
|
|
|
// Double click a widget input to automatically attach a primitive
|
|
|
|
const origOnInputDblClick = nodeType.prototype.onInputDblClick;
|
2023-03-24 20:20:34 +00:00
|
|
|
const ignoreDblClick = Symbol();
|
2023-03-23 21:37:19 +00:00
|
|
|
nodeType.prototype.onInputDblClick = function (slot) {
|
|
|
|
const r = origOnInputDblClick ? origOnInputDblClick.apply(this, arguments) : undefined;
|
|
|
|
|
2023-03-24 20:20:34 +00:00
|
|
|
const input = this.inputs[slot];
|
2023-04-15 16:34:46 +00:00
|
|
|
if (!input.widget || !input[ignoreDblClick]) {
|
|
|
|
// Not a widget input or already handled input
|
2023-10-06 20:48:30 +00:00
|
|
|
if (!(input.type in ComfyWidgets) && !(input.widget[GET_CONFIG]?.()?.[0] instanceof Array)) {
|
2023-04-15 16:34:46 +00:00
|
|
|
return r; //also Not a ComfyWidgets input or combo (do nothing)
|
|
|
|
}
|
2023-04-08 17:05:22 +00:00
|
|
|
}
|
2023-03-24 20:20:34 +00:00
|
|
|
|
2023-04-08 17:05:22 +00:00
|
|
|
// Create a primitive node
|
|
|
|
const node = LiteGraph.createNode("PrimitiveNode");
|
|
|
|
app.graph.add(node);
|
2023-03-24 20:20:34 +00:00
|
|
|
|
2023-04-08 17:05:22 +00:00
|
|
|
// Calculate a position that wont directly overlap another node
|
|
|
|
const pos = [this.pos[0] - node.size[0] - 30, this.pos[1]];
|
|
|
|
while (isNodeAtPos(pos)) {
|
|
|
|
pos[1] += LiteGraph.NODE_TITLE_HEIGHT;
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
2023-04-08 17:05:22 +00:00
|
|
|
node.pos = pos;
|
|
|
|
node.connect(0, this, slot);
|
|
|
|
node.title = input.name;
|
|
|
|
|
|
|
|
// Prevent adding duplicates due to triple clicking
|
|
|
|
input[ignoreDblClick] = true;
|
|
|
|
setTimeout(() => {
|
|
|
|
delete input[ignoreDblClick];
|
|
|
|
}, 300);
|
|
|
|
|
2023-03-23 21:37:19 +00:00
|
|
|
return r;
|
|
|
|
};
|
2023-10-21 02:49:04 +00:00
|
|
|
|
|
|
|
// Prevent connecting COMBO lists to converted inputs that dont match types
|
|
|
|
const onConnectInput = nodeType.prototype.onConnectInput;
|
|
|
|
nodeType.prototype.onConnectInput = function (targetSlot, type, output, originNode, originSlot) {
|
|
|
|
const v = onConnectInput?.(this, arguments);
|
|
|
|
// Not a combo, ignore
|
|
|
|
if (type !== "COMBO") return v;
|
|
|
|
// Primitive output, allow that to handle
|
|
|
|
if (originNode.outputs[originSlot].widget) return v;
|
|
|
|
|
|
|
|
// Ensure target is also a combo
|
|
|
|
const targetCombo = this.inputs[targetSlot].widget?.[GET_CONFIG]?.()?.[0];
|
|
|
|
if (!targetCombo || !(targetCombo instanceof Array)) return v;
|
|
|
|
|
|
|
|
// Check they match
|
|
|
|
const originConfig = originNode.constructor?.nodeData?.output?.[originSlot];
|
|
|
|
if (!originConfig || !isValidCombo(targetCombo, originConfig)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return v;
|
|
|
|
};
|
2023-03-23 21:37:19 +00:00
|
|
|
},
|
|
|
|
registerCustomNodes() {
|
2023-12-05 21:02:10 +00:00
|
|
|
const replacePropertyName = "Run widget replace on values";
|
2023-03-23 21:37:19 +00:00
|
|
|
class PrimitiveNode {
|
|
|
|
constructor() {
|
|
|
|
this.addOutput("connect to widget input", "*");
|
|
|
|
this.serialize_widgets = true;
|
|
|
|
this.isVirtualNode = true;
|
2023-12-05 21:02:10 +00:00
|
|
|
|
|
|
|
if (!this.properties || !(replacePropertyName in this.properties)) {
|
|
|
|
this.addProperty(replacePropertyName, false, "boolean");
|
|
|
|
}
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
2023-11-30 19:13:27 +00:00
|
|
|
applyToGraph(extraLinks = []) {
|
2023-03-23 21:37:19 +00:00
|
|
|
if (!this.outputs[0].links?.length) return;
|
|
|
|
|
2023-06-09 06:48:42 +00:00
|
|
|
function get_links(node) {
|
|
|
|
let links = [];
|
|
|
|
for (const l of node.outputs[0].links) {
|
|
|
|
const linkInfo = app.graph.links[l];
|
|
|
|
const n = node.graph.getNodeById(linkInfo.target_id);
|
|
|
|
if (n.type == "Reroute") {
|
|
|
|
links = links.concat(get_links(n));
|
|
|
|
} else {
|
|
|
|
links.push(l);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return links;
|
|
|
|
}
|
|
|
|
|
2023-11-30 19:13:27 +00:00
|
|
|
let links = [...get_links(this).map((l) => app.graph.links[l]), ...extraLinks];
|
2023-12-05 21:02:10 +00:00
|
|
|
let v = this.widgets?.[0].value;
|
|
|
|
if(v && this.properties[replacePropertyName]) {
|
|
|
|
v = applyTextReplacements(app, v);
|
|
|
|
}
|
|
|
|
|
2023-03-23 21:37:19 +00:00
|
|
|
// For each output link copy our value over the original widget value
|
2023-11-30 19:13:27 +00:00
|
|
|
for (const linkInfo of links) {
|
2023-03-23 21:37:19 +00:00
|
|
|
const node = this.graph.getNodeById(linkInfo.target_id);
|
|
|
|
const input = node.inputs[linkInfo.target_slot];
|
2023-12-05 20:27:13 +00:00
|
|
|
let widget;
|
|
|
|
if (input.widget[TARGET]) {
|
|
|
|
widget = input.widget[TARGET];
|
|
|
|
} else {
|
|
|
|
const widgetName = input.widget.name;
|
|
|
|
if (widgetName) {
|
|
|
|
widget = node.widgets.find((w) => w.name === widgetName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (widget) {
|
2023-12-06 08:01:35 +00:00
|
|
|
widget.value = v;
|
2023-12-05 20:27:13 +00:00
|
|
|
if (widget.callback) {
|
|
|
|
widget.callback(widget.value, app.canvas, node, app.canvas.graph_mouse, {});
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-03 19:19:12 +00:00
|
|
|
refreshComboInNode() {
|
|
|
|
const widget = this.widgets?.[0];
|
|
|
|
if (widget?.type === "combo") {
|
2023-10-06 20:48:30 +00:00
|
|
|
widget.options.values = this.outputs[0].widget[GET_CONFIG]()[0];
|
2023-10-03 19:19:12 +00:00
|
|
|
|
|
|
|
if (!widget.options.values.includes(widget.value)) {
|
|
|
|
widget.value = widget.options.values[0];
|
|
|
|
widget.callback(widget.value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onAfterGraphConfigured() {
|
|
|
|
if (this.outputs[0].links?.length && !this.widgets?.length) {
|
2023-10-21 02:49:04 +00:00
|
|
|
if (!this.#onFirstConnection()) return;
|
2023-10-03 19:19:12 +00:00
|
|
|
|
|
|
|
// Populate widget values from config data
|
2023-10-04 19:48:55 +00:00
|
|
|
if (this.widgets) {
|
|
|
|
for (let i = 0; i < this.widgets_values.length; i++) {
|
|
|
|
const w = this.widgets[i];
|
|
|
|
if (w) {
|
|
|
|
w.value = this.widgets_values[i];
|
|
|
|
}
|
|
|
|
}
|
2023-10-03 19:19:12 +00:00
|
|
|
}
|
2023-10-04 19:48:55 +00:00
|
|
|
|
|
|
|
// Merge values if required
|
|
|
|
this.#mergeWidgetConfig();
|
2023-10-03 19:19:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-23 21:37:19 +00:00
|
|
|
onConnectionsChange(_, index, connected) {
|
2023-10-03 19:19:12 +00:00
|
|
|
if (app.configuringGraph) {
|
|
|
|
// Dont run while the graph is still setting up
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-10-04 19:48:55 +00:00
|
|
|
const links = this.outputs[0].links;
|
2023-03-23 21:37:19 +00:00
|
|
|
if (connected) {
|
2023-10-04 19:48:55 +00:00
|
|
|
if (links?.length && !this.widgets?.length) {
|
2023-10-03 19:19:12 +00:00
|
|
|
this.#onFirstConnection();
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
2023-10-04 19:48:55 +00:00
|
|
|
} else {
|
|
|
|
// We may have removed a link that caused the constraints to change
|
|
|
|
this.#mergeWidgetConfig();
|
|
|
|
|
|
|
|
if (!links?.length) {
|
2023-12-05 20:27:13 +00:00
|
|
|
this.onLastDisconnect();
|
2023-10-04 19:48:55 +00:00
|
|
|
}
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onConnectOutput(slot, type, input, target_node, target_slot) {
|
|
|
|
// Fires before the link is made allowing us to reject it if it isn't valid
|
|
|
|
// No widget, we cant connect
|
2023-04-08 16:58:47 +00:00
|
|
|
if (!input.widget) {
|
|
|
|
if (!(input.type in ComfyWidgets)) return false;
|
|
|
|
}
|
2023-03-23 21:37:19 +00:00
|
|
|
|
|
|
|
if (this.outputs[slot].links?.length) {
|
2023-11-30 19:13:27 +00:00
|
|
|
const valid = this.#isValidConnection(input);
|
|
|
|
if (valid) {
|
|
|
|
// On connect of additional outputs, copy our value to their widget
|
|
|
|
this.applyToGraph([{ target_id: target_node.id, target_slot }]);
|
|
|
|
}
|
|
|
|
return valid;
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-04 19:48:55 +00:00
|
|
|
#onFirstConnection(recreating) {
|
2023-03-23 21:37:19 +00:00
|
|
|
// First connection can fire before the graph is ready on initial load so random things can be missing
|
2023-12-05 20:27:13 +00:00
|
|
|
if (!this.outputs[0].links) {
|
|
|
|
this.onLastDisconnect();
|
|
|
|
return;
|
|
|
|
}
|
2023-03-23 21:37:19 +00:00
|
|
|
const linkId = this.outputs[0].links[0];
|
|
|
|
const link = this.graph.links[linkId];
|
|
|
|
if (!link) return;
|
|
|
|
|
|
|
|
const theirNode = this.graph.getNodeById(link.target_id);
|
|
|
|
if (!theirNode || !theirNode.inputs) return;
|
|
|
|
|
|
|
|
const input = theirNode.inputs[link.target_slot];
|
|
|
|
if (!input) return;
|
|
|
|
|
2023-10-03 19:19:12 +00:00
|
|
|
let widget;
|
2023-04-08 16:58:47 +00:00
|
|
|
if (!input.widget) {
|
|
|
|
if (!(input.type in ComfyWidgets)) return;
|
2023-10-06 20:48:30 +00:00
|
|
|
widget = { name: input.name, [GET_CONFIG]: () => [input.type, {}] }; //fake widget
|
2023-04-08 16:58:47 +00:00
|
|
|
} else {
|
2023-10-03 19:19:12 +00:00
|
|
|
widget = input.widget;
|
2023-04-08 16:58:47 +00:00
|
|
|
}
|
|
|
|
|
2023-10-21 02:49:04 +00:00
|
|
|
const config = widget[GET_CONFIG]?.();
|
|
|
|
if (!config) return;
|
|
|
|
|
|
|
|
const { type } = getWidgetType(config);
|
2023-03-23 21:37:19 +00:00
|
|
|
// Update our output to restrict to the widget type
|
2023-10-05 18:16:39 +00:00
|
|
|
this.outputs[0].type = type;
|
2023-03-23 21:37:19 +00:00
|
|
|
this.outputs[0].name = type;
|
|
|
|
this.outputs[0].widget = widget;
|
|
|
|
|
2023-12-05 20:27:13 +00:00
|
|
|
this.#createWidget(widget[CONFIG] ?? config, theirNode, widget.name, recreating, widget[TARGET]);
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
2023-12-05 20:27:13 +00:00
|
|
|
#createWidget(inputData, node, widgetName, recreating, targetWidget) {
|
2023-03-23 21:37:19 +00:00
|
|
|
let type = inputData[0];
|
|
|
|
|
|
|
|
if (type instanceof Array) {
|
|
|
|
type = "COMBO";
|
|
|
|
}
|
|
|
|
|
|
|
|
let widget;
|
|
|
|
if (type in ComfyWidgets) {
|
|
|
|
widget = (ComfyWidgets[type](this, "value", inputData, app) || {}).widget;
|
|
|
|
} else {
|
2023-10-03 19:19:12 +00:00
|
|
|
widget = this.addWidget(type, "value", null, () => {}, {});
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
2023-12-05 20:27:13 +00:00
|
|
|
if (targetWidget) {
|
|
|
|
widget.value = targetWidget.value;
|
|
|
|
} else if (node?.widgets && widget) {
|
2023-03-23 21:37:19 +00:00
|
|
|
const theirWidget = node.widgets.find((w) => w.name === widgetName);
|
|
|
|
if (theirWidget) {
|
|
|
|
widget.value = theirWidget.value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-11-30 19:13:27 +00:00
|
|
|
if (!inputData?.[1]?.control_after_generate && (widget.type === "number" || widget.type === "combo")) {
|
2023-10-22 02:36:04 +00:00
|
|
|
let control_value = this.widgets_values?.[1];
|
|
|
|
if (!control_value) {
|
|
|
|
control_value = "fixed";
|
|
|
|
}
|
2023-11-30 19:13:27 +00:00
|
|
|
addValueControlWidgets(this, widget, control_value, undefined, inputData);
|
2023-11-22 17:52:20 +00:00
|
|
|
let filter = this.widgets_values?.[2];
|
2023-12-05 20:27:13 +00:00
|
|
|
if (filter && this.widgets.length === 3) {
|
2023-11-22 17:52:20 +00:00
|
|
|
this.widgets[2].value = filter;
|
|
|
|
}
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
2023-12-13 05:56:39 +00:00
|
|
|
// Restore any saved control values
|
|
|
|
const controlValues = this.controlValues;
|
|
|
|
if(this.lastType === this.widgets[0].type && controlValues?.length === this.widgets.length - 1) {
|
|
|
|
for(let i = 0; i < controlValues.length; i++) {
|
|
|
|
this.widgets[i + 1].value = controlValues[i];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-24 10:27:19 +00:00
|
|
|
// When our value changes, update other widgets to reflect our changes
|
|
|
|
// e.g. so LoadImage shows correct image
|
|
|
|
const callback = widget.callback;
|
|
|
|
const self = this;
|
|
|
|
widget.callback = function () {
|
|
|
|
const r = callback ? callback.apply(this, arguments) : undefined;
|
|
|
|
self.applyToGraph();
|
|
|
|
return r;
|
|
|
|
};
|
|
|
|
|
2023-10-04 19:48:55 +00:00
|
|
|
if (!recreating) {
|
|
|
|
// Grow our node if required
|
|
|
|
const sz = this.computeSize();
|
|
|
|
if (this.size[0] < sz[0]) {
|
|
|
|
this.size[0] = sz[0];
|
|
|
|
}
|
|
|
|
if (this.size[1] < sz[1]) {
|
|
|
|
this.size[1] = sz[1];
|
|
|
|
}
|
|
|
|
|
|
|
|
requestAnimationFrame(() => {
|
|
|
|
if (this.onResize) {
|
|
|
|
this.onResize(this.size);
|
|
|
|
}
|
|
|
|
});
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
2023-10-04 19:48:55 +00:00
|
|
|
}
|
|
|
|
|
2023-12-05 20:27:13 +00:00
|
|
|
recreateWidget() {
|
|
|
|
const values = this.widgets?.map((w) => w.value);
|
2023-10-04 19:48:55 +00:00
|
|
|
this.#removeWidgets();
|
|
|
|
this.#onFirstConnection(true);
|
2023-12-05 20:27:13 +00:00
|
|
|
if (values?.length) {
|
|
|
|
for (let i = 0; i < this.widgets?.length; i++) this.widgets[i].value = values[i];
|
|
|
|
}
|
|
|
|
return this.widgets?.[0];
|
2023-10-04 19:48:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#mergeWidgetConfig() {
|
|
|
|
// Merge widget configs if the node has multiple outputs
|
|
|
|
const output = this.outputs[0];
|
|
|
|
const links = output.links;
|
|
|
|
|
|
|
|
const hasConfig = !!output.widget[CONFIG];
|
|
|
|
if (hasConfig) {
|
|
|
|
delete output.widget[CONFIG];
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
2023-10-04 19:48:55 +00:00
|
|
|
if (links?.length < 2 && hasConfig) {
|
|
|
|
// Copy the widget options from the source
|
|
|
|
if (links.length) {
|
2023-12-05 20:27:13 +00:00
|
|
|
this.recreateWidget();
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
2023-10-04 19:48:55 +00:00
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2023-10-06 20:48:30 +00:00
|
|
|
const config1 = output.widget[GET_CONFIG]();
|
2023-10-04 19:48:55 +00:00
|
|
|
const isNumber = config1[0] === "INT" || config1[0] === "FLOAT";
|
|
|
|
if (!isNumber) return;
|
|
|
|
|
|
|
|
for (const linkId of links) {
|
|
|
|
const link = app.graph.links[linkId];
|
|
|
|
if (!link) continue; // Can be null when removing a node
|
|
|
|
|
|
|
|
const theirNode = app.graph.getNodeById(link.target_id);
|
|
|
|
const theirInput = theirNode.inputs[link.target_slot];
|
|
|
|
|
|
|
|
// Call is valid connection so it can merge the configs when validating
|
|
|
|
this.#isValidConnection(theirInput, hasConfig);
|
|
|
|
}
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
2023-10-04 19:48:55 +00:00
|
|
|
#isValidConnection(input, forceUpdate) {
|
2023-03-23 21:37:19 +00:00
|
|
|
// Only allow connections where the configs match
|
2023-10-04 19:48:55 +00:00
|
|
|
const output = this.outputs[0];
|
2023-10-06 20:48:30 +00:00
|
|
|
const config2 = input.widget[GET_CONFIG]();
|
2023-12-05 20:27:13 +00:00
|
|
|
return !!mergeIfValid.call(this, output, config2, forceUpdate, this.recreateWidget);
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
2023-10-04 19:48:55 +00:00
|
|
|
#removeWidgets() {
|
2023-03-23 21:37:19 +00:00
|
|
|
if (this.widgets) {
|
|
|
|
// Allow widgets to cleanup
|
|
|
|
for (const w of this.widgets) {
|
|
|
|
if (w.onRemove) {
|
|
|
|
w.onRemove();
|
|
|
|
}
|
|
|
|
}
|
2023-12-13 05:56:39 +00:00
|
|
|
|
|
|
|
// Temporarily store the current values in case the node is being recreated
|
|
|
|
// e.g. by group node conversion
|
|
|
|
this.controlValues = [];
|
|
|
|
this.lastType = this.widgets[0]?.type;
|
|
|
|
for(let i = 1; i < this.widgets.length; i++) {
|
|
|
|
this.controlValues.push(this.widgets[i].value);
|
|
|
|
}
|
|
|
|
setTimeout(() => { delete this.lastType; delete this.controlValues }, 15);
|
2023-03-23 21:37:19 +00:00
|
|
|
this.widgets.length = 0;
|
|
|
|
}
|
|
|
|
}
|
2023-10-04 19:48:55 +00:00
|
|
|
|
2023-12-05 20:27:13 +00:00
|
|
|
onLastDisconnect() {
|
2023-10-04 19:48:55 +00:00
|
|
|
// We cant remove + re-add the output here as if you drag a link over the same link
|
|
|
|
// it removes, then re-adds, causing it to break
|
|
|
|
this.outputs[0].type = "*";
|
|
|
|
this.outputs[0].name = "connect to widget input";
|
|
|
|
delete this.outputs[0].widget;
|
|
|
|
|
|
|
|
this.#removeWidgets();
|
|
|
|
}
|
2023-03-23 21:37:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
LiteGraph.registerNodeType(
|
|
|
|
"PrimitiveNode",
|
|
|
|
Object.assign(PrimitiveNode, {
|
|
|
|
title: "Primitive",
|
|
|
|
})
|
|
|
|
);
|
|
|
|
PrimitiveNode.category = "utils";
|
|
|
|
},
|
|
|
|
});
|