// =========================================================================== // 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. // =========================================================================== // // // Creation Date: March 17, 1997 // // Description: // This script defines the elements for the keyframeRegionInsertKey // context tool property sheet. // // Input Arguments: // None. // // Return Value: // None. // global proc keyframeRegionInsertKeyProperties () { string $parent = `toolPropertyWindow -query -location`; setParent $parent; setUITemplate -pushTemplate OptionsTemplate; columnLayout keyframeRegionInsertKey; frameLayout -collapsable true -collapse false -label (uiRes("m_keyframeRegionInsertKeyProperties.kInsertKeySettings")) keyframeRegionInsertKeyFrame; columnLayout keyframeRegionInsertKeyOptions; separator -style "none"; checkBoxGrp -label (uiRes("m_keyframeRegionInsertKeyProperties.kInsertBreakdowns")) -numberOfCheckBoxes 1 -value1 off -label1 "" keyframeRegionInsertKeyBreakdown; setParent ..; setParent ..; setParent ..; setUITemplate -popTemplate; }