Skip to content

Commit e1da98a

Browse files
authored
remove unused params (#6931)
1 parent 9aac21f commit e1da98a

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

comfy_extras/nodes_load_3d.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ def INPUT_TYPES(s):
1919
"image": ("LOAD_3D", {}),
2020
"width": ("INT", {"default": 1024, "min": 1, "max": 4096, "step": 1}),
2121
"height": ("INT", {"default": 1024, "min": 1, "max": 4096, "step": 1}),
22-
"material": (["original", "normal", "wireframe", "depth"],),
23-
"up_direction": (["original", "-x", "+x", "-y", "+y", "-z", "+z"],),
2422
}}
2523

2624
RETURN_TYPES = ("IMAGE", "MASK", "STRING")
@@ -55,8 +53,6 @@ def INPUT_TYPES(s):
5553
"image": ("LOAD_3D_ANIMATION", {}),
5654
"width": ("INT", {"default": 1024, "min": 1, "max": 4096, "step": 1}),
5755
"height": ("INT", {"default": 1024, "min": 1, "max": 4096, "step": 1}),
58-
"material": (["original", "normal", "wireframe", "depth"],),
59-
"up_direction": (["original", "-x", "+x", "-y", "+y", "-z", "+z"],),
6056
}}
6157

6258
RETURN_TYPES = ("IMAGE", "MASK", "STRING")
@@ -82,8 +78,6 @@ class Preview3D():
8278
def INPUT_TYPES(s):
8379
return {"required": {
8480
"model_file": ("STRING", {"default": "", "multiline": False}),
85-
"material": (["original", "normal", "wireframe", "depth"],),
86-
"up_direction": (["original", "-x", "+x", "-y", "+y", "-z", "+z"],),
8781
}}
8882

8983
OUTPUT_NODE = True
@@ -102,8 +96,6 @@ class Preview3DAnimation():
10296
def INPUT_TYPES(s):
10397
return {"required": {
10498
"model_file": ("STRING", {"default": "", "multiline": False}),
105-
"material": (["original", "normal", "wireframe", "depth"],),
106-
"up_direction": (["original", "-x", "+x", "-y", "+y", "-z", "+z"],),
10799
}}
108100

109101
OUTPUT_NODE = True

0 commit comments

Comments
 (0)