diff --git a/__init__.py b/__init__.py index bb67e8b..124f611 100644 --- a/__init__.py +++ b/__init__.py @@ -4,7 +4,7 @@ bl_info = { "name": "Background plane manager", "description": "Manage the background image planes and grease pencil object relative to a camera", "author": "Samuel Bernou", - "version": (0, 6, 0), + "version": (0, 7, 0), "blender": (4, 3, 0), "location": "View3D", "warning": "", diff --git a/import_planes/operators.py b/import_planes/operators.py index e8408a5..f681dcf 100644 --- a/import_planes/operators.py +++ b/import_planes/operators.py @@ -49,7 +49,7 @@ class BPM_OT_import_bg_images(bpy.types.Operator, ImportHelper): ## Choice to place before or after ? import_type : EnumProperty( - name="Import As", description="Type of import to ", default='GREASEPENCIL', options={'ANIMATABLE'}, + name="Import As", description="Type of import to ", default='MESH', options={'ANIMATABLE'}, items=( ('GREASEPENCIL', 'Gpencil Object', 'Import bg planes as gpencil objects', 0), ('EMPTY', 'Empty Reference', 'Import bg planes as empty objects', 1),