Browse Source

Merge pull request #339 from Hoikas/fix_332

Fix #332.
pull/346/head
Adam Johnson 2 years ago committed by GitHub
parent
commit
0fe0a0108d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      korman/exporter/material.py

3
korman/exporter/material.py

@ -1007,7 +1007,10 @@ class MaterialConverter:
value = func(x, y, width, height)
pixels[offset:offset+4] = (value,) * 4
image = bpy.data.images.new(filename, width=width, height=height, alpha=True)
image.source = "GENERATED"
image.pixels = pixels
image.update()
image.pack(True)
self.export_prepared_image(image=image, owner=owner, allowed_formats={"BMP"},
alpha_type=TextureAlpha.full, indent=indent, ephemeral=True)

Loading…
Cancel
Save