Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'io_anim_bvh/__init__.py')
-rw-r--r--io_anim_bvh/__init__.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/io_anim_bvh/__init__.py b/io_anim_bvh/__init__.py
index 5db54409..178ec0e6 100644
--- a/io_anim_bvh/__init__.py
+++ b/io_anim_bvh/__init__.py
@@ -80,6 +80,13 @@ class ImportBVH(bpy.types.Operator, ImportHelper):
description="Starting frame for the animation",
default=1,
)
+ use_fps_scale = BoolProperty(
+ name="Scale FPS",
+ description=("Scale the framerate from the BVH to "
+ " the current scenes, Otherwise each "
+ "BVH frame maps directly to a Blender frame"),
+ default=False,
+ )
use_cyclic = BoolProperty(
name="Loop",
description="Loop the animation playback",