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

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Dinges <blender@dingto.org>2009-12-14 07:58:29 +0300
committerThomas Dinges <blender@dingto.org>2009-12-14 07:58:29 +0300
commitb2de6b93a6985b7965211c4fe691a9b3265fc247 (patch)
tree051a9c1f32e52e0cae46895baaa5d326d79b1f91
parent602f372f66f309b73fe6b98c412d422c22a3f6de (diff)
* Custom Player:
-Added Windows Path for Blender 2.4 Player. (Tested on Windows Vista).
-rw-r--r--release/scripts/op/screen_play_rendered_anim.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/release/scripts/op/screen_play_rendered_anim.py b/release/scripts/op/screen_play_rendered_anim.py
index 9e9bddba0fc..d2a32cf1e34 100644
--- a/release/scripts/op/screen_play_rendered_anim.py
+++ b/release/scripts/op/screen_play_rendered_anim.py
@@ -65,6 +65,9 @@ def guess_player_path(preset):
if platform.system() == 'Darwin':
test_path = '/Applications/blender 2.49.app/Contents/MacOS/blender'
+ elif platform.system() == 'Windows':
+ test_path = '/Program Files/Blender Foundation/Blender/blender.exe'
+
if os.path.exists(test_path):
player_path = test_path