INNER CODE UNIT · Python
UNTOLD_OT_export_animation
untoldengine/UntoldEngine · scripts/untold-blender-addon/untold_exporter/__init__.py:240
class UNTOLD_OT_export_animation(bpy.types.Operator, ExportHelper):
bl_idname = "untold.export_animation"
bl_label = "Export Untold Animation"
bl_options = {"REGISTER"}
filename_ext = ".untoldanim"
filter_glob: bpy.props.StringProperty(
default="*.untoldanim",
options={"HIDDEN"},
)
scope: EnumProperty(
name="Armature",
description="Armature to export animation from",
items=[
("SELECTED", "Selected Armature", "Export the selected armature, or the armature linked to a selected mesh"),
("SCENE", "Visible Scene Armature", "Export the only visible armature in the scene"),
],