Export Anim Operators¶
- bpy.ops.export_anim.bvh(filepath='', check_existing=True, filter_glob='*.bvh', global_scale=1.0, frame_start=0, frame_end=0, rotate_mode='NATIVE', root_transform_only=False)¶
Save a BVH motion capture file from an armature
- Parameters
filepath (string, (optional, never None)) – File Path, Filepath used for exporting the file
check_existing (boolean, (optional)) – Check Existing, Check and warn on overwriting existing files
filter_glob (string, (optional, never None)) – filter_glob
global_scale (float in [0.0001, 1e+06], (optional)) – Scale, Scale the BVH by this value
frame_start (int in [-inf, inf], (optional)) – Start Frame, Starting frame to export
frame_end (int in [-inf, inf], (optional)) – End Frame, End frame to export
rotate_mode (enum in ['NATIVE', 'XYZ', 'XZY', 'YXZ', 'YZX', 'ZXY', 'ZYX'], (optional)) –
Rotation, Rotation conversion
NATIVEEuler (Native), Use the rotation order defined in the BVH file.XYZEuler (XYZ), Convert rotations to euler XYZ.XZYEuler (XZY), Convert rotations to euler XZY.YXZEuler (YXZ), Convert rotations to euler YXZ.YZXEuler (YZX), Convert rotations to euler YZX.ZXYEuler (ZXY), Convert rotations to euler ZXY.ZYXEuler (ZYX), Convert rotations to euler ZYX.
root_transform_only (boolean, (optional)) – Root Translation Only, Only write out translation channels for the root bone
- File