I'd love if there was a way to just define my regions with pixels or in the Arnold settings.string $editor = `renderWindowEditor -q -editorName`;if( size($editor) == 0 ){$editor = `renderWindowEditor "renderView"`;}renderWindowEditor -e -mq 0.7 0.3 0.3 0.5 $editor;
$cropAmount = 1 / CropControl.VerticalTiles;
$cropTop = (1 - ((frame - 1) * $cropAmount)) + CropControl.tileOverlap;
$cropLeft = 0;
$cropBottom = 1 - (frame * $cropAmount) - CropControl.tileOverlap;
$cropRight = .6;
string $editor = `renderWindowEditor -q -editorName`;
if( size($editor) == 0 ){
$editor = `renderWindowEditor "renderView"`;
}
// top, left, bottom, right
renderWindowEditor -e -mq $cropTop $cropLeft $cropBottom $cropRight $editor;
--
You received this message because you are subscribed to the Google Groups "maya_he3d" group.
To unsubscribe from this group and stop receiving emails from it, send an email to maya_he3d+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
To unsubscribe from this group and stop receiving emails from it, send an email to maya_he3d+...@googlegroups.com.
$cropAmount = 0.5625 / CropControl.VerticalTiles;
$cropTop = (0.5625 - ((frame - 1) * $cropAmount)) + CropControl.TileOverlap;
$cropLeft = 0;
$cropBottom = 0.5625 - (frame * $cropAmount) - CropControl.TileOverlap;
$cropRight = 1;
string $editor = `renderWindowEditor -q -editorName`;
if( size($editor) == 0 ){
$editor = `renderWindowEditor "renderView"`;
}
// top, left, bottom, right
renderWindowEditor -e -mq $cropTop $cropLeft $cropBottom $cropRight $editor;
--
You received this message because you are subscribed to the Google Groups "maya_he3d" group.
To unsubscribe from this group and stop receiving emails from it, send an email to maya_he3d+unsubscribe@googlegroups.com.