// =========================================================================== // 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: May 2011 // // Description: // This is part of a set of methods for changing // a property sheet to point to a new node. // (A way of efficiently re-using existing controls) // This method re-connects a quaternion attribute's control. // // Input Arguments: // The name of the existing control // The name of the new plug // The command to execute when the plug value changes // // Return Value: // None // global proc AEreplaceQuaternion ( string $controlName, string $plugName, string $changedCommand ) { AEreplaceVector( $controlName, $plugName, $changedCommand ); }