Hi, I'm hoping someone's able to help me. I'm looking for a way to quickly toggle the default render images location.I keep my project folders on a network drive, so they have the redundancy and backup of our network system, but for rendering i'd prefer to render locally for network speed and storage reasons.Now i know its easy enough to change this in 'Project Window>PrimaryProjectLocations>Images'.However occasionally i use a renderfarm which ive set up on every machine connected to my network. For this i'd want it to render to network so its all in one place.Does anyone know the mel/python that will let me quickly toggle between two preset location i.e X:/_Renders_/Project/Renders (LOCAL) and Z:/Project/CG/Maya/images (NETWORK)?
ThanksAndy
//MEL
workspace -fr "images" "X:/_Renders_/Project/Renders";
workspace -fr "images" "Z:/Project/CG/Maya/images";
//check current path (returns relative path if it is inside the project root folder, i.e. images)
workspace -fre "images"
Excellent,Worked perfectly,Thankyou so much.Andy