hi there,
i just wrote a little script to save out my VrayRT Render over time..
but while running the script i got only the 1st frame till the script is finished
Someone knows what im doing wrong?
yours
Thorsten
here my script:
d=(vrayGetRTBitmap())
if d != undefined do
(
for i= animationrange.start to animationrange.end do
(
slidertime= i
completeredraw()
sleep 0.5
d=vrayGetRTBitmap()
d.filename="d:\\test\\test_"+ (i as integer /190) as string + ".tga"
-- print d.filename
save d
close d
)
)
i just wrote a little script to save out my VrayRT Render over time..
but while running the script i got only the 1st frame till the script is finished
Someone knows what im doing wrong?
yours
Thorsten
here my script:
d=(vrayGetRTBitmap())
if d != undefined do
(
for i= animationrange.start to animationrange.end do
(
slidertime= i
completeredraw()
sleep 0.5
d=vrayGetRTBitmap()
d.filename="d:\\test\\test_"+ (i as integer /190) as string + ".tga"
-- print d.filename
save d
close d
)
)
Comment