This commit is contained in:
2025-04-17 04:52:48 +08:00
commit 9985b73dc1
3708 changed files with 2387532 additions and 0 deletions

View File

@ -0,0 +1,12 @@
/*
Drag and drop for Maya 2016+
*/
global proc studioLibraryInstall() {
string $whatIs = `whatIs studioLibraryInstall`;
string $path = `substring $whatIs 25 999`;
string $filename = `substitute "install.mel" $path "install.py"`;;
python("import imp;imp.load_source('_studioLibraryInstall', '"+$filename+"')");
}
studioLibraryInstall();