Skip to content

Commit 3967c98

Browse files
committed
mark 3d nodes as EXPERIMENTAL
1 parent 43e79b2 commit 3967c98

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

comfy_extras/nodes_load_3d.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ def INPUT_TYPES(s):
3232
RETURN_NAMES = ("image", "mask", "mesh_path")
3333

3434
FUNCTION = "process"
35+
EXPERIMENTAL = True
3536

3637
CATEGORY = "3d"
3738

@@ -72,6 +73,7 @@ def INPUT_TYPES(s):
7273
RETURN_NAMES = ("image", "mask", "mesh_path")
7374

7475
FUNCTION = "process"
76+
EXPERIMENTAL = True
7577

7678
CATEGORY = "3d"
7779

@@ -104,6 +106,7 @@ def INPUT_TYPES(s):
104106
CATEGORY = "3d"
105107

106108
FUNCTION = "process"
109+
EXPERIMENTAL = True
107110

108111
def process(self, model_file, **kwargs):
109112
return {"ui": {"model_file": [model_file]}, "result": ()}

0 commit comments

Comments
 (0)