How to run Mel script on start up from different source, since i tried to use 2 paths in my maya.env to source script on start up, it only takes one first path and another path doesn't get activated. MAYA_SCRIPT_PATH = $USER_SCRIPT_PATH:$MAYA_SCRIPT_BASE/scripts/test:$MAYA_SCRIPT_BASE/scripts/unsupported
Catch here is one path is fixed since its based on project i am working
MAYA_SCRIPT_PATH = $USER_SCRIPT_PATH:$MAYA_SCRIPT_BASE/scripts/test:$MAYA_SCRIPT_BASE/scripts/unsupported
Can you explain how it works? I don't understand the recursion
There are few ways you can go about doing this.
1) using the Maya.env file.
This will manipulate the environment variables directly, on startup. The thing to note here is in Windows, the semicolon ";" is used to separate the paths. In all other platforms the colon is used ":".
2) You could use a userSetup.mel file in your Maya script folder to setup your environments, by adding something like this:
3) Alternatively if you just want to source a couple of files on startup, then you could just add these lines in your userSetup.mel file:
Check these links for more depth: http://www.jonasavrin.com/2010/08/15/maya-env-configuration-of-variables-using-usersetup-mel/
http://www.djx.com.au/blog/customizing-maya/
Hope this clears things up.