Skip to content

Commit

Permalink
Merge pull request #1195 from scurest/alpha-hashed
Browse files Browse the repository at this point in the history
Export: export material's "Alpha Hashed" blend mode as BLEND
  • Loading branch information
Don McCurdy authored Sep 2, 2020
2 parents 297286b + c0f161d commit f07f376
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def __gather_alpha_cutoff(blender_material, export_settings):
def __gather_alpha_mode(blender_material, export_settings):
if blender_material.blend_method == 'CLIP':
return 'MASK'
elif blender_material.blend_method == 'BLEND':
elif blender_material.blend_method in ['BLEND', 'HASHED']:
return 'BLEND'
return None

Expand Down

0 comments on commit f07f376

Please sign in to comment.