Could we have a snap shot feature as in the MFB?
This would be really handy for cropping in to exact areas of which you need to fix.
This would be really handy for cropping in to exact areas of which you need to fix.
Important: Update Your Chaos Licensing by January 28, 2025
To ensure uninterrupted access to your licenses, an essential update is required by January 28, 2025. Failure to update your Chaos licensing will result in the loss of access to your licenses.// generate the snapshot in RenderView renderWindowRenderCamera snapshot renderView ""; // save the image to file string $renderPanels[] = `getPanel -scriptType "renderWindowPanel"`; string $filename="/tmp/vray.snapshot.jpg"; python("import maya.app.general.createImageFormats as createImageFormats"); python("formatManager = createImageFormats.ImageFormats()"); python("formatManager.pushRenderGlobalsForDesc(\"JPEG\")"); renderWindowEditor -e -writeImage $filename $renderPanels; python("formatManager.popRenderGlobals()"); // open the image in the VFB and delete the file vray vfbControl -loadimage $filename; sysFile -delete $filename;
Comment