v1.3.0 New Nodes: LTX Director and LTX Director Guide
This commit is contained in:
3870
js/ltx_director.js
Normal file
3870
js/ltx_director.js
Normal file
File diff suppressed because it is too large
Load Diff
17
js/ltx_director_guide.js
Normal file
17
js/ltx_director_guide.js
Normal file
@@ -0,0 +1,17 @@
|
||||
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.
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user