// =========================================================================== // 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 convertSelectionToFrozen() { string $selection[] = `ls -long -selection`; if (0 == size( $selection )) { error (uiRes("m_convertSelectionToFrozen.kNoActiveSelection")); return; } string $tool = "sculptMeshCacheContext"; if( `currentCtx` == $tool ) return; ConvertSelectionToVertices; if( ! `sculptMeshCacheCtx -exists $tool` ) initMeshSculptTool(); sculptMeshCacheCtx -e -freezeSelection $tool; setMeshSculptTool( "Freeze" ); }