Hi,
I switched to the new C4D R25.010 plus Vray-5 Update 1.3(v5.10.23) and trying to get my projects to work.
With my last Version R21-3.7 it was possible to change the filename each frame during rendering animation.
I worked with a quite simple XPresso setup, in which connected (from Translator tab) "VFB Image File" with my list of filenames.
In Vray-5 I transfer this prinzip to "V-Ray Image Output".
This Setup works when i Go to next Frame". The filename is changing like a charm. But if i hit "Render to Picture Viewer" or with VFB, each frame get the name from first frame.
Maybe I did something wrong.
Please can you help me? Is there something changed significant? I also opened a maxon support ticket because donĀ“t know is it a C4D issue.
Is it possible to attach my scene file? It seems I'm not permitted to add .c4d files.
looking forward to your answer.
so long Christian
inside Python Node:
import c4d, os
def getframe():
frame = doc.GetTime().GetFrame(doc.GetFps())
return frame
def main():
global output
filename = ['File_RENDER-0001','File_RENDER-0002','File_RENDER-0003']
join = os.path.join(path,filename[getframe()])
output = join
I switched to the new C4D R25.010 plus Vray-5 Update 1.3(v5.10.23) and trying to get my projects to work.
With my last Version R21-3.7 it was possible to change the filename each frame during rendering animation.
I worked with a quite simple XPresso setup, in which connected (from Translator tab) "VFB Image File" with my list of filenames.
In Vray-5 I transfer this prinzip to "V-Ray Image Output".
This Setup works when i Go to next Frame". The filename is changing like a charm. But if i hit "Render to Picture Viewer" or with VFB, each frame get the name from first frame.
Maybe I did something wrong.
Please can you help me? Is there something changed significant? I also opened a maxon support ticket because donĀ“t know is it a C4D issue.
Is it possible to attach my scene file? It seems I'm not permitted to add .c4d files.
looking forward to your answer.
so long Christian
inside Python Node:
import c4d, os
def getframe():
frame = doc.GetTime().GetFrame(doc.GetFps())
return frame
def main():
global output
filename = ['File_RENDER-0001','File_RENDER-0002','File_RENDER-0003']
join = os.path.join(path,filename[getframe()])
output = join
Comment