From 816a19f273791958c981c18a340309d25263a4f1 Mon Sep 17 00:00:00 2001 From: Julien Duroure Date: Wed, 5 Dec 2018 22:17:30 +0100 Subject: glTF importer: set option descriptions --- io_scene_gltf2/__init__.py | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/io_scene_gltf2/__init__.py b/io_scene_gltf2/__init__.py index 1f7f7b01..769c3be6 100755 --- a/io_scene_gltf2/__init__.py +++ b/io_scene_gltf2/__init__.py @@ -437,11 +437,15 @@ class ImportGLTF2(Operator, ImportHelper): filter_glob: StringProperty(default="*.glb;*.gltf", options={'HIDDEN'}) - loglevel: EnumProperty(items=Log.get_levels(), name="Log Level", default=Log.default()) + loglevel: EnumProperty( + items=Log.get_levels(), + name="Log Level", + description="Set level of log to display", + default=Log.default()) import_pack_images: BoolProperty( name='Pack images', - description='', + description='Pack all images into .blend file', default=True ) @@ -450,6 +454,7 @@ class ImportGLTF2(Operator, ImportHelper): items=(("NORMALS", "Use Normal Data", ""), ("FLAT", "Flat Shading", ""), ("SMOOTH", "Smooth Shading", "")), + description="How normals are computed during import", default="NORMALS") def draw(self, context): -- cgit v1.2.3