import_animation_fbx
Import animation-only FBX onto an existing Unreal Engine Skeleton while disabling mesh, material, and texture imports to protect production SkeletalMesh.
Instructions
Import an animation-only FBX onto an existing UE Skeleton.
This is the receiving half of DCC animation handoffs such as Cascadeur's
Animation FBX preset. It deliberately disables mesh, material, and
texture import so a validation or animation pass cannot silently replace
a production SkeletalMesh.
Args:
file_path: Absolute path to an FBX file on the Unreal host.
skeleton: Existing Skeleton asset path, for example
/Game/Characters/Mannequins/Meshes/SKM_Manny_Skeleton.
destination_path: Content Browser folder for AnimSequence assets.
destination_name: Optional asset name override. Empty preserves the
FBX take/file naming chosen by Unreal.
animation_length: exported_time (default) or animated_key.
import_custom_attributes: Preserve authored FBX custom attributes.
remove_redundant_keys: Allow Unreal's lossless redundant-key cleanup.
use_default_sample_rate: Sample at Unreal's default rate when true.
custom_sample_rate: Explicit sample rate when greater than zero.
replace_existing: Replace same-named destination assets only when
explicitly requested. Defaults false for non-destructive proof.
Returns: StructuredResult JSON with imported AnimSequence paths, the resolved Skeleton, and the effective import settings.
KB: see knowledge_base/05_ANIMATION_SYSTEM.md#import-and-retargeting Example: import_animation_fbx( file_path="C:/Animations/Walk.fbx", skeleton="/Game/Characters/Mannequins/Meshes/SKM_Manny_Skeleton", destination_path="/Game/Animations", )
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skeleton | Yes | ||
| file_path | Yes | ||
| animation_length | No | exported_time | |
| destination_name | No | ||
| destination_path | No | /Game/Animations/ | |
| replace_existing | No | ||
| custom_sample_rate | No | ||
| remove_redundant_keys | No | ||
| use_default_sample_rate | No | ||
| import_custom_attributes | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |