This script is working properly in mel.
{
vrayCreateProxy
-exportType 1
-previewFaces 10000 -dir “D:\jay” -fname “a.vrmesh” -overwrite 1;
}
Now I am trying to embed this script in python with eval. But it is not working.
And this error is showing “EOL while scanning string literal”
import maya.mel as mm
mm.eval( 'vrayCreateProxy
-exportType 1
-previewFaces 10000 -dir “D:\jay” -fname “a.vrmesh” -overwrite 1;’)
What will be the correct version of this mel script?