Skip to content

Commit

Permalink
fix (close #2)
Browse files Browse the repository at this point in the history
  • Loading branch information
todashuta committed Jul 2, 2022
1 parent 1e07d5b commit 3891640
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion black_to_alpha_zero.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
bl_info = {
"name": "Black to Alpha Zero",
"author": "todashuta",
"version": (1, 1, 2),
"version": (1, 1, 3),
"blender": (2, 80, 0),
"location": "Image Editor > Sidebar > Tool > Black to Alpha Zero",
"description": "",
Expand Down Expand Up @@ -84,6 +84,7 @@ def execute(self, context):
target_image_pxs[i+3] = 0 # Alpha

target_image.pixels = target_image_pxs
target_image.update()

return {"FINISHED"}

Expand Down

0 comments on commit 3891640

Please sign in to comment.