io_scene_3ds: Added animation export option #104613
@ -65,12 +65,12 @@ class Import3DS(bpy.types.Operator, ImportHelper):
|
|||||||
"importing incorrectly",
|
"importing incorrectly",
|
||||||
default=True,
|
default=True,
|
||||||
)
|
)
|
||||||
read_keyframe: bpy.props.BoolProperty(
|
read_keyframe: BoolProperty(
|
||||||
name="Read Keyframe",
|
name="Read Keyframe",
|
||||||
description="Read the keyframe data",
|
description="Read the keyframe data",
|
||||||
default=True,
|
default=True,
|
||||||
)
|
)
|
||||||
use_world_matrix: bpy.props.BoolProperty(
|
use_world_matrix: BoolProperty(
|
||||||
name="World Space",
|
name="World Space",
|
||||||
description="Transform to matrix world",
|
description="Transform to matrix world",
|
||||||
default=False,
|
default=False,
|
||||||
@ -109,6 +109,11 @@ class Export3DS(bpy.types.Operator, ExportHelper):
|
|||||||
description="Export selected objects only",
|
description="Export selected objects only",
|
||||||
default=False,
|
default=False,
|
||||||
)
|
)
|
||||||
|
write_keyframe: BoolProperty(
|
||||||
|
name="Write Keyframe",
|
||||||
|
description="Write the keyframe data",
|
||||||
|
default=True,
|
||||||
|
)
|
||||||
|
|
||||||
def execute(self, context):
|
def execute(self, context):
|
||||||
from . import export_3ds
|
from . import export_3ds
|
||||||
|
Loading…
Reference in New Issue
Block a user