The two path to source the mel files are incorrect.
|
menuItem -p $MyMenuObj -l "mini kit" -c ("source \"/Users/User_Account/Library/Preferences/Autodesk/maya/scripts/lbsToolkit/toolkit_dropDown/miniKit.mel\"; "); |
|
menuItem -p $MyMenuObj -l "full kit" -c ("source \"/Users/User_Account/Library/Preferences/Autodesk/maya/scripts/lbsToolkit/lbs_Custom_Tools_UI_LOCAL.mel\"; "); |
For the minikit the directory is actually named 'miniToolkit'
menuItem -p $MyMenuObj -l "mini kit" -c ("source "/Users//Library/Preferences/Autodesk/maya/scripts/lbsToolkit/miniToolkit/miniKit.mel"; ");
For the full kit, remove 'lbsToolkit', the installation instruction tell you to place it directly in the maya 'scripts' folder
menuItem -p $MyMenuObj -l "full kit" -c ("source "/Users//Library/Preferences/Autodesk/maya/scripts/lbs_Custom_Tools_UI_LOCAL.mel"; ");
After making these changes I got a working menu in maya 2018.
To actually start the windows for mini and full I had to make some more changes, see issue #8
The two path to source the mel files are incorrect.
CosmicGeometryToolkit/intallfiles_FullKit/lbsToolMenuFull.mel
Lines 14 to 15 in 1988d2f
For the minikit the directory is actually named 'miniToolkit'
menuItem -p $MyMenuObj -l "mini kit" -c ("source "/Users//Library/Preferences/Autodesk/maya/scripts/lbsToolkit/miniToolkit/miniKit.mel"; ");
For the full kit, remove 'lbsToolkit', the installation instruction tell you to place it directly in the maya 'scripts' folder
menuItem -p $MyMenuObj -l "full kit" -c ("source "/Users//Library/Preferences/Autodesk/maya/scripts/lbs_Custom_Tools_UI_LOCAL.mel"; ");
After making these changes I got a working menu in maya 2018.
To actually start the windows for mini and full I had to make some more changes, see issue #8