Is it possible to automate the inclusion of frames on the iray server?
julian_3946236
Posts: 15
It is already known that DAZ does not yet support sending animations to the iRay server.
Doing this process manually is extremely exhausting
However I would like to know if it would not be possible to do the automation of this process via IDE Script, something like getting all the frames of the scene, and triggering the add to queue for each one using the repetition structure or something!
Does anyone know if it is possible and how to do this?
I managed to get this far...
var frame_number = 10for(var i = 0; i <= frame_number; i++){ //add to queue action // wait finish Scene.stepTime(1) oTime = Scene.getTime(); nTime = oTime.valueOf(); print(nTime);}
Post edited by julian_3946236 on
Comments
You are looking for the undocumented DzIrayRenderer::exportRenderToBridgeQueue(...)
Just bear in mind that undocumented features are liable to change without notice
Hey, did you manage to export the render settings along the file?