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__.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/io_anim_bvh/__init__.py b/io_anim_bvh/__init__.py
index 57f879c0..85534048 100644
--- a/io_anim_bvh/__init__.py
+++ b/io_anim_bvh/__init__.py
@@ -92,6 +92,18 @@ class ImportBVH(bpy.types.Operator, ImportHelper, ImportBVHOrientationHelper):
"BVH frame maps directly to a Blender frame"),
default=False,
)
+ update_scene_fps = BoolProperty(
+ name="Update scene framerate",
+ description="Sets the scene framerate to that of the BVH file. Note that this "
+ "nullifies the 'Scale FPS' option, as the scale will be 1:1",
+ default=False
+ )
+ update_scene_duration = BoolProperty(
+ name="Update scene duration",
+ description="Extend the scene's duration to the BVH duration. Does not shorten scene "
+ "when the BVH fits in its entirety",
+ default=False,
+ )
use_cyclic = BoolProperty(
name="Loop",
description="Loop the animation playback",