I'm making a batch submitter script that renders a series of cameras in my 3d scene. These cameras have their own single frame number that they need to render. I want to be able to save the file based on the name I supply my script but omit the frame number at the end. (ex: fileName0004.tif to fileName.tif, instead) Using 3dsmax 2018 and vray 3.0.
It seems to be an automatic function, but I can't seem to find anywhere talks about disabling it. The only mention so far that I've seen is that it's an option in v-ray 5.0. Unfortunately I can't upgrade anytime soon.
Is this possible? Does anyone know how to do this?
Thanks
function fn_netSubmit =
(
local arr_camTEST = #("cam1", "cam2", "cam3")
local arr_renderSeatSide =#("side1", "side2", "side3")
local arr_renderSeat = #("seat1", "seat2", "seat3")
local arr_renderFrames = #("1", "3", "7")
local appendDate = "200707"
local outputLocation = "some\\location\\"
--connect
nm.connect #manual "mtlwarml401.ca.aero.bombardier.net" platform:#64
if nm.QueryControl #wait do
(
nm.GetControl()
exit
)
if nm.getControl() == true then
(
for i = 1 to arr_camTEST.count do
(
job = nm.newJob()
job.outputWidth = 3600
job.outputHeight = 3600
job.name = ("filename" + " " + arr_renderSeat[i] + " " + arr_renderSeatSide[i] + " " + "S" + "-" + appendDate)
job.nonSeqFrames = true
job.frames = arr_renderFrames[i]
job.renderCamera = arr_camTEST[i]
job.frameOutputName = (outputLocation + "/" + ("filename" + " " + arr_renderSeat[i] + " " + arr_renderSeatSide[i] + " " + "S") + ".tif")
job.submit()
)
)
nm.Disconnect()
)
fn_netSubmit()
rendTimeType = 1- paddy