Hello,
we need to render EXR-files with beauty, depth and specular.
It renders out with Python:
res = documents.RenderDocument(doc, rd.GetData(), bmp, flags)
The problem is setting the correct bmp.
If we use BaseBitmap, it will damage the beauty but give me the correct depth and specular.
bmp = bitmaps.BaseBitmap()
bmp.Init(x=2560, y=1536,depth=32)
However if we change it to MultipassBitmap, the beauty will perfect but the depth and specular is completly missing.
bmp = bitmaps.MultipassBitmap(2560, 1536, c4d.COLORMODE_RGB)
bmp.AddChannel(True, True)
Is there a way to get the depth and specular added to the MultipassBitmap? Somehow it works automatically with BaseBitmap.
Thank you,
David