Add descriptions
Some checks are pending
Python Linting / Run Ruff (push) Waiting to run
Python Linting / Run Pylint (push) Waiting to run

This commit is contained in:
Alexis Rolland 2026-05-20 17:41:43 +08:00
parent a631d3ff2e
commit 5528bd1ee3
3 changed files with 4 additions and 0 deletions

View File

@ -669,6 +669,7 @@ class AudioAdjustVolume(IO.ComfyNode):
search_aliases=["audio gain", "loudness", "audio level"],
display_name="Adjust Audio Volume",
category="audio",
description="Adjust the volume of the audio by a specified amount in decibels (dB).",
inputs=[
IO.Audio.Input("audio"),
IO.Int.Input(

View File

@ -49,6 +49,7 @@ class LoadImageDataSetFromFolderNode(io.ComfyNode):
node_id="LoadImageDataSetFromFolder",
display_name="Load Image (from Folder)",
category="image",
description="Load a dataset of images from a specified folder and return a list of images. Supported formats: PNG, JPG, JPEG, WEBP.",
is_experimental=True,
inputs=[
io.Combo.Input(

View File

@ -421,6 +421,7 @@ class VoxelToMeshBasic(IO.ComfyNode):
node_id="VoxelToMeshBasic",
display_name="Voxel to Mesh (Basic) (DEPRECATED)",
category="3d",
description="Converts a voxel grid to a mesh.",
inputs=[
IO.Voxel.Input("voxel"),
IO.Float.Input("threshold", default=0.6, min=-1.0, max=1.0, step=0.01),
@ -454,6 +455,7 @@ class VoxelToMesh(IO.ComfyNode):
node_id="VoxelToMesh",
display_name="Voxel to Mesh",
category="3d",
description="Converts a voxel grid to a mesh.",
inputs=[
IO.Voxel.Input("voxel"),
IO.Combo.Input("algorithm", options=["surface net", "basic"]),