Skip to content

Commit

Permalink
Merge branch 'main' into enforce-naming-conventions
Browse files Browse the repository at this point in the history
  • Loading branch information
RunDevelopment committed Jul 22, 2023
2 parents 7669230 + 2f63585 commit a299f20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@
description="Merge RGB and Alpha (transparency) image channels into 4-channel RGBA channels.",
icon="MdCallMerge",
inputs=[
ImageInput("RGB Channels", allow_colors=True),
ImageInput("Alpha Channel", allow_colors=True, channels=1),
ImageInput("RGB", allow_colors=True),
ImageInput("Alpha", allow_colors=True, channels=1),
],
outputs=[
ImageOutput(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
inputs=[ImageInput(channels=[1, 3, 4])],
outputs=[
ImageOutput(
"RGB Channels",
"RGB",
image_type=navi.Image(size_as="Input0"),
channels=3,
assume_normalized=True,
),
ImageOutput(
"Alpha Channel",
"Alpha",
image_type=navi.Image(size_as="Input0"),
channels=1,
assume_normalized=True,
Expand Down

0 comments on commit a299f20

Please sign in to comment.