0.13 now co-exist with "vanilla" V2 HQ coming

This commit is contained in:
CGlide
2026-06-23 03:17:58 +02:00
committed by GitHub
parent 6542586cdc
commit fd164b480c
21 changed files with 237 additions and 281 deletions

View File

@@ -1,17 +1,12 @@
import { app } from "../../scripts/app.js";
// LTX Director Guide is a pure pass-through processor node.
// All configuration (images, insert frames, strengths) comes from
// the guide_data output of Prompt Relay Encode (Timeline).
// No dynamic widgets or sync logic needed.
app.registerExtension({
name: "Comfy.LTXDirectorGuide",
async nodeCreated(node) {
if (node.comfyClass !== "LTXDirectorGuide") return;
// Nothing to initialize — the node has no configurable widgets.
},
});
// Nothing to initialize — the node has no configurable widgets.
},
});
import { app } from "../../scripts/app.js";
// LTX Director Guide CS is a pure pass-through processor node.
// All configuration (images, insert frames, strengths) comes from
// the guide_data output of the LTX Director CS (Timeline) node.
app.registerExtension({
name: "Comfy.LTXDirectorGuideCS",
async nodeCreated(node) {
if (node.comfyClass !== "LTXDirectorGuideCS") return;
// Nothing to initialize — the node has no configurable widgets.
},
});