Phil wrote:
0.63beta1
Regards, Phil
Hmm, so exporting the file does happen, it's the launch again....
I can only think of two solutions now.
The first is to change the content of the created cmd file, if this doesn't help at least we know which part is the culprit. So go to launchWinIndigo() and change to the following:
Code: Select all
# create 'IndigoWrapper.cmd' and write two lines of code into it
f = open(os.path.join(datadir, 'IndigoWrapper.cmd'), 'w')
f.write("echo 'Change to indigo root folder'\n")
f.write("cd /d "" + ic + ""\n")
f.write("echo 'Now start indigo with file on commandline'\n")
f.write("start /b /belownormal Indigo.exe %1 -t " + str(Threads.val) + "\n")
f.close()
When an error occurs and no echoed text is visible then the error is in calling this cmd file itself. If this is the case try the following, otherwise take another screenshot to see which line is faulty
Code: Select all
# call external shell script to start Indigo
os.chdir(datadir)
cmd = 'IndigoWrapper.cmd "' + filename + """
print cmd
os.system(cmd)
As said in the readme.txt file it's very hard for me to test this since blender is installed on another partition than the default windows c: one. I did however put indigo there, since installing is just unzipping to a folder, and that's probably why exporting the file is no problem..
Please try the above and let me know the results so I can update the script accordingly.
As for the missing function makename, this is the animation part, as with rendering times of 24 hours and up for good results I haven't looked at that part of the script at all...
Greetings from overcast Amsterdam,
Jan