π· Procedural Pattern
Grids, hexagons, Voronoi, waves, spirals β and an actual LCARS mode
- image
Procedural Pattern Generator generates tiled and organic patterns - Grid, Hexagon, Voronoi, Circles, Waves, Spiral, and a literal LCARS mode - as images, computed instantly with no model. It's the pack's most "designed" procedural generator, and the LCARS option is a genuinely charming touch given the whole pack's Star Trek styling.
This is the node for scifi interfaces, hologram-looking backdrops, HUD elements, and texturizing backgrounds that would otherwise eat a model call. Want a hexagonal tech grid behind a UI mockup? Done, instantly, at up to 4096Γ4096. Want that classic LCARS orange-on-black bar look for a theme test? The mode named after it is right there.
The inputs that matter
- width / height - 64 to 4096 (step 64).
- pattern_type -
Grid,Hexagon,Voronoi,Circles,Waves,Spiral,LCARS. Voronoi gives the organic cracked-earth look; Hexagon is the honeycomb tech grid; LCARS is the themed one. - scale - 5 to 200. How big the pattern cells are; smaller number = bigger cells... or the reverse depending on the pattern, so nudge it and watch.
- complexity - 1 to 50. Branching/detail level for the more organic patterns; for Grid it's close to a no-op.
- color_scheme -
Orange Glow(the default, very LCARS),Blue Neon,Rainbow, orMonochrome. - seed - 0 to 2^31. Randomizes the pattern; useful for Voronoi especially, where the seed changes the cell layout.
Output is the image - an IMAGE tensor for any downstream node.
Why you'd actually use it
It slots into the same role as the Fractal and Gradient generators: instant, deterministic procedural texture for backgrounds, masking, and pipeline testing. The LCARS + Orange Glow combo is the pack's aesthetic on purpose, but Blue Neon reads great for generic sci-fi, and Rainbow is a quick way to test color handling end to end. If you're building a workflow that needs a texture source that doesn't consume VRAM, this is the most visually interesting of the three generators.
Installing it
Same pack, 24oiduts-ComfyUI:
- ComfyUI Manager: search 24oiduts, install, restart.
- Manual:
then restart.cd ComfyUI/custom_nodes/ git clone https://github.com/GeekyGhost/24oiduts-ComfyUI pip install -r 24oiduts-ComfyUI/requirements.txt
Needs only Pillow/numpy (and the pack lists scipy as optional for the fancier procedural math). The GitHub README is a stale Studio42 template ("not recommended for use", no license) - ignore the banner; the code installs and runs.
Troubleshooting
- Pattern looks wrong at high
complexity- some patterns just don't use it; switchpattern_typeor drop complexity. - Voronoi changes between runs - that's the
seed; lock it if you want reproducibility. - LCARS mode isn't showing - make sure
color_schemeisn't Monochrome, and confirm you're on a recent-enough checkout of the pack (the LCARS pattern was a headline feature of this version).
The pattern generator that finally justifies the "LCARS Edition" name - instant, themed, and zero model weight.
Inputs (7)
| Name | Type | Default | Description |
|---|---|---|---|
| width | INT | 51264β4096 | β |
| height | INT | 51264β4096 | β |
| pattern_type | COMBO | LCARS | 7 options: Grid, Hexagon, Voronoi, Circles, Waves, Spiral, +1 |
| scale | FLOAT | 505β200 | β |
| complexity | INT | 101β50 | β |
| color_scheme | COMBO | Orange Glow | 4 options: Orange Glow, Blue Neon, Rainbow, Monochrome |
| seed | INT | 00β2147483647 | β |
Outputs (1)
| Name | Type | Description |
|---|---|---|
| image | IMAGE | β |