Files
WhatDreamsCost-Dumas/js/ltx_director_guide.js
2026-06-23 03:17:58 +02:00

13 lines
481 B
JavaScript

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.
},
});