From d1ea1b7c864b47b457f7077b1a0843d219af81c6 Mon Sep 17 00:00:00 2001 From: pullusb <bernou.samuel@gmail.com> Date: Mon, 2 Jun 2025 17:30:56 +0200 Subject: [PATCH] change default import type to texture plane instead of Grease pencil --- __init__.py | 2 +- import_planes/operators.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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),