mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-05-11 09:42:34 +08:00
Update display names and categories
This commit is contained in:
parent
d8d4091e66
commit
e6d9529575
@ -424,6 +424,7 @@ class VoxelToMeshBasic(IO.ComfyNode):
|
|||||||
def define_schema(cls):
|
def define_schema(cls):
|
||||||
return IO.Schema(
|
return IO.Schema(
|
||||||
node_id="VoxelToMeshBasic",
|
node_id="VoxelToMeshBasic",
|
||||||
|
display_name="Voxel to Mesh (Basic)",
|
||||||
category="3d",
|
category="3d",
|
||||||
inputs=[
|
inputs=[
|
||||||
IO.Voxel.Input("voxel"),
|
IO.Voxel.Input("voxel"),
|
||||||
@ -453,6 +454,7 @@ class VoxelToMesh(IO.ComfyNode):
|
|||||||
def define_schema(cls):
|
def define_schema(cls):
|
||||||
return IO.Schema(
|
return IO.Schema(
|
||||||
node_id="VoxelToMesh",
|
node_id="VoxelToMesh",
|
||||||
|
display_name="Voxel to Mesh",
|
||||||
category="3d",
|
category="3d",
|
||||||
inputs=[
|
inputs=[
|
||||||
IO.Voxel.Input("voxel"),
|
IO.Voxel.Input("voxel"),
|
||||||
|
|||||||
@ -594,7 +594,8 @@ class LTXVPreprocess(io.ComfyNode):
|
|||||||
def define_schema(cls):
|
def define_schema(cls):
|
||||||
return io.Schema(
|
return io.Schema(
|
||||||
node_id="LTXVPreprocess",
|
node_id="LTXVPreprocess",
|
||||||
category="image",
|
display_name="LTXV Preprocess",
|
||||||
|
category="video/preprocessors",
|
||||||
inputs=[
|
inputs=[
|
||||||
io.Image.Input("image"),
|
io.Image.Input("image"),
|
||||||
io.Int.Input(
|
io.Int.Input(
|
||||||
|
|||||||
@ -24,7 +24,7 @@ class PerpNeg(io.ComfyNode):
|
|||||||
def define_schema(cls):
|
def define_schema(cls):
|
||||||
return io.Schema(
|
return io.Schema(
|
||||||
node_id="PerpNeg",
|
node_id="PerpNeg",
|
||||||
display_name="Perp-Neg (DEPRECATED by PerpNegGuider)",
|
display_name="Perp-Neg (DEPRECATED)",
|
||||||
category="_for_testing",
|
category="_for_testing",
|
||||||
inputs=[
|
inputs=[
|
||||||
io.Model.Input("model"),
|
io.Model.Input("model"),
|
||||||
@ -127,6 +127,7 @@ class PerpNegGuider(io.ComfyNode):
|
|||||||
def define_schema(cls):
|
def define_schema(cls):
|
||||||
return io.Schema(
|
return io.Schema(
|
||||||
node_id="PerpNegGuider",
|
node_id="PerpNegGuider",
|
||||||
|
display_name="Perp-Neg Guider",
|
||||||
category="_for_testing",
|
category="_for_testing",
|
||||||
inputs=[
|
inputs=[
|
||||||
io.Model.Input("model"),
|
io.Model.Input("model"),
|
||||||
|
|||||||
@ -42,3 +42,7 @@ class SaveImageWebsocket:
|
|||||||
NODE_CLASS_MAPPINGS = {
|
NODE_CLASS_MAPPINGS = {
|
||||||
"SaveImageWebsocket": SaveImageWebsocket,
|
"SaveImageWebsocket": SaveImageWebsocket,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NODE_DISPLAY_NAME_MAPPINGS = {
|
||||||
|
"SaveImageWebsocket": "Save Image (Websocket)",
|
||||||
|
}
|
||||||
1
nodes.py
1
nodes.py
@ -2093,6 +2093,7 @@ NODE_DISPLAY_NAME_MAPPINGS = {
|
|||||||
"CLIPVisionLoader": "Load CLIP Vision",
|
"CLIPVisionLoader": "Load CLIP Vision",
|
||||||
"UNETLoader": "Load Diffusion Model",
|
"UNETLoader": "Load Diffusion Model",
|
||||||
"unCLIPCheckpointLoader": "Load unCLIP Checkpoint",
|
"unCLIPCheckpointLoader": "Load unCLIP Checkpoint",
|
||||||
|
"GLIGENLoader": "Load GLIGEN Model",
|
||||||
# Conditioning
|
# Conditioning
|
||||||
"CLIPVisionEncode": "CLIP Vision Encode",
|
"CLIPVisionEncode": "CLIP Vision Encode",
|
||||||
"StyleModelApply": "Apply Style Model",
|
"StyleModelApply": "Apply Style Model",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user