Skip to content

Commit

Permalink
Fixes #3 for Blender 3.51 and onward
Browse files Browse the repository at this point in the history
  • Loading branch information
Banbury committed Aug 27, 2023
1 parent 4f30d4c commit edd76e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@
"name": "Image as Mesh Importer",
"description": "Import Image as Mesh.",
"author": "Banbury",
"version": (1, 3, 0),
"blender": (2, 80, 0),
"version": (1, 4, 0),
"blender": (3, 51, 0),
"location": "File > Import",
"wiki_url": "",
"category": "Import-Export"}
Expand All @@ -28,7 +28,7 @@ class ImageAsMeshOps(bpy.types.Operator, ImportHelper):
bl_options = {'REGISTER', 'UNDO', 'PRESET'}

# File type filter in file browser
filename_ext: ".png"
# filename_ext: ".png"

filter_glob: bpy.props.StringProperty(
default="*.png",
Expand Down

0 comments on commit edd76e8

Please sign in to comment.