INNER CODE UNIT · Python
UNTOLD_OT_export_asset
untoldengine/UntoldEngine · scripts/untold-blender-addon/untold_exporter/__init__.py:66
class UNTOLD_OT_export_asset(bpy.types.Operator, ExportHelper):
bl_idname = "untold.export_asset"
bl_label = "Export Untold Asset"
bl_options = {"REGISTER"}
filename_ext = ".untold"
filter_glob: bpy.props.StringProperty(
default="*.untold",
options={"HIDDEN"},
)
scope: EnumProperty(
name="Scope",
description="Objects to export",
items=[
("SCENE", "Visible Scene", "Export visible scene meshes and armatures"),
("SELECTED", "Selected Objects", "Export selected meshes and their required parents/armatures"),
],