Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
ComfyUI
Commits
d98a4de9
Commit
d98a4de9
authored
Apr 14, 2023
by
comfyanonymous
Browse files
LatentCompositeMasked: negative x, y don't work.
parent
f48f0872
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
comfy_extras/nodes_mask.py
comfy_extras/nodes_mask.py
+2
-2
No files found.
comfy_extras/nodes_mask.py
View file @
d98a4de9
...
@@ -9,8 +9,8 @@ class LatentCompositeMasked:
...
@@ -9,8 +9,8 @@ class LatentCompositeMasked:
"required"
:
{
"required"
:
{
"destination"
:
(
"LATENT"
,),
"destination"
:
(
"LATENT"
,),
"source"
:
(
"LATENT"
,),
"source"
:
(
"LATENT"
,),
"x"
:
(
"INT"
,
{
"default"
:
0
,
"min"
:
-
MAX_RESOLUTION
,
"max"
:
MAX_RESOLUTION
,
"step"
:
8
}),
"x"
:
(
"INT"
,
{
"default"
:
0
,
"min"
:
0
,
"max"
:
MAX_RESOLUTION
,
"step"
:
8
}),
"y"
:
(
"INT"
,
{
"default"
:
0
,
"min"
:
-
MAX_RESOLUTION
,
"max"
:
MAX_RESOLUTION
,
"step"
:
8
}),
"y"
:
(
"INT"
,
{
"default"
:
0
,
"min"
:
0
,
"max"
:
MAX_RESOLUTION
,
"step"
:
8
}),
},
},
"optional"
:
{
"optional"
:
{
"mask"
:
(
"MASK"
,),
"mask"
:
(
"MASK"
,),
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment