[X3D-Ecosystem] Don McCurdy gave me the secret to combining animations when exporting glTF

John Carlson yottzumm at gmail.com
Tue Oct 15 11:53:56 PDT 2024


Blender Python script for exporting glb as a single, combined animation:

bpy.ops.export_scene.gltf(
    filepath=os.path.join(".",
f"JoeSkinTexcoordDisplacerKickUpdate2Export.glb"),
    export_yup=False,
    # export_format="GLTF_SEPARATE",
    export_format="GLB",
    export_nla_strips_merged_animation_name='Animation',
    export_animation_mode="ACTIVE_ACTIONS", #"SCENE",
    export_influence_nb=40,
    export_all_influences=True,
    use_active_collection=True
)
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://web3d.org/pipermail/x3d-ecosystem_web3d.org/attachments/20241015/ed04b16f/attachment.html>


More information about the X3D-Ecosystem mailing list