change default import type to texture plane instead of Grease pencil

This commit is contained in:
pullusb 2025-06-02 17:30:56 +02:00
parent 87c27c12d3
commit d1ea1b7c86
2 changed files with 2 additions and 2 deletions

View File

@ -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": "",

View File

@ -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),