// =========================================================================== // Copyright 2018 Autodesk, Inc. All rights reserved. // // Use of this software is subject to the terms of the Autodesk license // agreement provided at the time of installation or download, or which // otherwise accompanies this software in either electronic or hard copy form. // =========================================================================== // Description: General show batch render interface. // global proc showBatchRender() { string $currentRender = currentRenderer(); string $cmd = `renderer -q -showBatchRenderProcedure $currentRender`; if ($cmd == "") { string $message = (uiRes("m_showBatchRender.kNoBatchRender")); $message = `format -stringArg $currentRender $message`; warning ($message); return; } eval($cmd); }