is there a script to allow saving sequential frames? a way to accelerate animated previews...This software rocks
Announcement
Collapse
No announcement yet.
preview save
Collapse
X
-
So I added a MaxScript method to return the ActiveShade preview as a bitmap that you can save; if you are interested, email me to vlado@chaosgroup.com
Best regards,
VladoI only act like I know everything, Rogers.
Comment
-
It is not a script as such; it is a command built into V-Ray RT that allows you to get access to the current ActiveShade view as a 3ds Max bitmap (so that you can save it, for example). So it would actually require an updated version of the RT plugin.
We will also be expanding that to a more convenient tool for animation preview.
Best regards,
VladoI only act like I know everything, Rogers.
Comment
-
The command to grab the preview is included in V-Ray RT 1.50.SP1; using this command, a script for writing out a preview would look something like this:Code:rollout test "RT Animation" ( timer clock "rtClock" interval:5000 --tick once every 5 seconds local cframe=animationRange.start label Frame "---" on clock tick do ( b=vrayGetRTBitmap() b.filename="c:/temp/test" + (formattedPrint ((cframe as integer)/160) format:"04i") + ".png" save b cframe = cframe+1f Frame.text = cframe as string if (cframe>animationRange.end) then DestroyDialog test sliderTime=cframe ) ) fn rtAnimation=( sliderTime=animationRange.start createDialog test )
Code:rtAnimation()
Best regards,
VladoI only act like I know everything, Rogers.
Comment
Comment