* Custom Player:

-Added Windows Path for Blender 2.4 Player. (Tested on Windows Vista).
This commit is contained in:
Thomas Dinges
2009-12-14 04:58:29 +00:00
parent 602f372f66
commit b2de6b93a6

View File

@@ -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