Files
Nexus/2023/scripts/animation_tools/mgpicker/MGPicker_Program/AutoSourced/MGPickerAttrNudgerValues.mel
2025-11-23 23:31:18 +08:00

21 lines
711 B
Plaintext

global proc MGPickerAttrNudgerValues(string $toolName)
{
global string $MGPicker_ProgramPath;
string $icon = $MGPicker_ProgramPath+"MGPicker_Program/Icons/Colored/Picker_designerModeIcon.png";
string $helpHtml =($MGPicker_ProgramPath+"MGPicker_Help/English/index.html");
string $lan = `MGPickerService -q -osl`;
if($lan=="Chinese")$helpHtml = ($MGPicker_ProgramPath+"MGPicker_Help/SimplifiedChinese/index.html");
string $help = " -a \""+$helpHtml+"\"";
toolPropertySetCommon $toolName $icon $help;
MGPickerAttrNudgerOptionValues($toolName);
toolPropertySelect MGPickerAttrNudger;
}
global proc MGPickerAttrNudgerOptionReset()
{
}
global proc MGPickerAttrNudgerOptionValues(string $toolName)
{
}