Skip to content

Commit

Permalink
JANK
Browse files Browse the repository at this point in the history
  • Loading branch information
A4P7J1N7M05OT committed Apr 5, 2024
1 parent 2ad912b commit c51a002
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions nodes.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,30 +19,30 @@ def INPUT_TYPES(cls):
return {
"required": {
"img": ("IMAGE",),
"mode": (["contrast"],),
"mode": (["contrast", "center", "k-centroid", "bicubic", "nearest"],),
"target_size": ("INT", {
"default": 128,
"default": 256,
"min": 0,
"max": 4096,
"step": 1,
"display": "number"
}),
"patch_size": ("INT", {
"default": 16,
"default": 6,
"min": 0,
"max": 4096,
"step": 1,
"display": "number"
}),
"thickness": ("INT", {
"default": 2,
"default": 1,
"min": 0,
"max": 4096,
"step": 1,
"display": "number"
}),
"color_matching": ("BOOLEAN", {
"default": True
"default": False
}),
"contrast": ("FLOAT", {
"default": 1.0,
Expand All @@ -61,7 +61,7 @@ def INPUT_TYPES(cls):
"display": "number"
}),
"colors": ("INT", {
"default": 0,
"default": None,
"min": 0,
"max": 4096,
"step": 1,
Expand Down

0 comments on commit c51a002

Please sign in to comment.