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:
authorCampbell Barton <ideasman42@gmail.com>2012-05-22 12:22:57 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-05-22 12:22:57 +0400
commit96369387e7e58a01d0b28adc3352aa3d4b4770b6 (patch)
treee7b1796da0560f611f0072ada9f4730581ed34bb /system_demo_mode
parente8eb34f6903eb19106bec1b28808415c694b8150 (diff)
fix for first file playing the loop twice.
Diffstat (limited to 'system_demo_mode')
-rw-r--r--system_demo_mode/demo_mode.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/system_demo_mode/demo_mode.py b/system_demo_mode/demo_mode.py
index 00b092f6..c8b7739e 100644
--- a/system_demo_mode/demo_mode.py
+++ b/system_demo_mode/demo_mode.py
@@ -174,7 +174,7 @@ def demo_mode_temp_file():
temp_config = global_config_fallback.copy()
temp_config["anim_time_min"] = 0.0
temp_config["anim_time_max"] = 60.0
- temp_config["anim_cycles"] = 1
+ temp_config["anim_cycles"] = 0 # ensures we switch when hitting the end
temp_config["mode"] = 'PLAY'
temp_config["is_tmp"] = True