Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xio_scene_gltf2/__init__.py9
1 files 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):