VRGDG Part 2 Workflow UI
This Node Does Nothing — and That's the Point
Let's get this out of the way: VRGDG_Part2WorkflowUI has no inputs, no outputs, and its run method is literally a no-op. If you drop it into a graph expecting it to do something, you'll be confused for exactly as long as it takes you to realize it's a placeholder - and that's the entire job.
This node is part of the VRGameDevGirl AI music-video pipeline, where a big project is split into labeled stages (Part 1, Part 2, Part 3...). The UI nodes are bookmarks: they exist so the workflow author can hang a clear, human-readable label in the middle of a giant graph, and so other nodes in the pack have a stable anchor to reference. Think of it as a sticky note that happens to render as a ComfyUI node instead of a group label. In the source it just inherits from a shared VRGDG_PromptCreatorUI base that returns nothing - so when you see one of these in a workflow you've downloaded, don't go hunting for a hidden function. There isn't one.
Why it's in your workflow
If you imported a VRGameDevGirl music-video template and saw this node sitting between the prompt-creation stage and the generation stage, that's the workflow telling you "this is where Part 2 of the build lives." It keeps the different halves of a many-branch graph visually distinct, and it gives other nodes a deterministic execution point to hook around. In practice you can delete it and nothing breaks - but if you're following the author's walkthrough, leaving it where it is makes matching their screenshots a lot easier.
How to install it
It ships with the whole pack, so there's no special install:
cd ComfyUI/custom_nodes
git clone https://github.com/vrgamegirl19/comfyui-vrgamedevgirl
...or search vrgamedev in ComfyUI Manager and hit install, then restart. The pack's requirements.txt is heavy (transformers, demucs, voxcpm, llama-cpp-python among others), but Manager installs them; a bare UI node like this one doesn't need any of it at runtime.
Troubleshooting
Honestly, the only "issue" with this node is misreading it as functional. If it's in your graph and everything around it works, it's doing its job. If you're on an older version of the pack and the node doesn't show up, updating the pack will pull it in - it's part of the VRGDG_GeneralNodes2.py module, and any import error in that file usually means a missing dependency somewhere else in the pack, so check your Manager install log.
One real caveat: this is a pack-internal convenience node. It won't appear in any other pack, and nothing outside VRGameDevGirl's ecosystem will understand what it's "for." Use it as a label in her workflows; don't build your own graphs around it.
Inputs (0)
No inputs
Outputs (0)
No outputs