// =========================================================================== // 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. // =========================================================================== global proc AEcMuscleRelativeTemplate(string $nodeName) { editorTemplate -beginScrollLayout; editorTemplate -beginLayout (uiRes("m_AEcMuscleRelativeTemplate.kMuscleRelativeScalingAttributes")) -collapse 0; editorTemplate -addControl "envelope"; editorTemplate -addSeparator ; editorTemplate -endLayout; // suppress these attributes from AEdeformFuncCommon editorTemplate -suppress "deformerData"; editorTemplate -suppress "matrix"; editorTemplate -suppress "renderInfo"; editorTemplate -suppress "input"; // comet add editorTemplate -suppress "map64BitIndices"; // comet add editorTemplate -suppress "weightList"; // comet add // and these editorTemplate -suppress "point" ; AEdependNodeTemplate $nodeName; editorTemplate -addExtraControls; editorTemplate -endScrollLayout; }