INNER CODE UNIT · Python
AssetImporter
skarndev/umodel_tools · umodel_tools/asset_importer.py:18
class AssetImporter:
"""Implements functionality of asset import from UModel output.
Intended to be inherited a bpy.types.Operator subclass.
"""
load_pbr_maps: bpy.props.BoolProperty(
name="Load PBR textures",
description="Load normal maps, specular, roughness, etc into materials. Experimental",
default=True
)
import_backface_culling: bpy.props.BoolProperty(
name="Use backface culling",
description="If this setting is checked, material settings for backface culling will be kept, "
"otherwise backface culling is always off",
default=False
)