Import_anim Operators

bpy.ops.import_anim.bvh(filepath="", filter_glob="*.bvh", scale=0.1, frame_start=1, use_cyclic=False, rotate_mode='NATIVE')

Load a OBJ Motion Capture File

Parameters:
  • filepath (string, (optional)) – File Path, Filepath used for importing the file
  • 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 for the animation
  • use_cyclic (boolean, (optional)) – Loop, Loop the animation playback
  • rotate_mode (enum in [‘QUATERNION’, ‘NATIVE’, ‘XYZ’, ‘XZY’, ‘YXZ’, ‘YZX’, ‘ZXY’, ‘ZYX’], (optional)) – Rotation, Rotation conversion.
File :

op/io_anim_bvh/__init__.py:58

Previous topic

Image Operators

Next topic

Import_scene Operators