We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 14b5207 + 27dcdc6 commit 2441752Copy full SHA for 2441752
mikey_nodes.py
@@ -4851,7 +4851,7 @@ def INPUT_TYPES(cls):
4851
'b': ('FLOAT', {'default': 0.0}),
4852
'formula': ('STRING', {'multiline': False, 'default': 'a + b'})}}
4853
4854
- RETURN_TYPES = ('FLOAT',)
+ RETURN_TYPES = ('FLOAT','INT','STRING')
4855
RETURN_NAMES = ('result_float','result_int','result_str')
4856
FUNCTION = 'process'
4857
CATEGORY = 'Mikey/Math'
@@ -4988,7 +4988,7 @@ def INPUT_TYPES(cls):
4988
'bottom': ('INT', {'default': 0, 'min': 0, 'max': 5})}}
4989
4990
RETURN_TYPES = ('IMAGE','MASK',)
4991
- RETURN_NAMES = ('result_img',)
+ RETURN_NAMES = ('result_img','result_mask',)
4992
FUNCTION = 'mosaic_expand'
4993
CATEGORY = 'Mikey/Image'
4994
0 commit comments