Hello! I'm new to MEL and I'd like to get you coders help with something.

I need a script that replaces proxy objects (lowpoly models) in a scene. I want to replace them with highpoly models using a script. So the script would duplicate the highpoly models and replace the lowpoly ones!

Any of you coders who could help me out with this?

/Cheers

  • created

    Jan '14
  • last reply

    Feb '14
  • 1

    reply

  • 1.6k

    views

  • 1

    user

17 days later

done!

//v0.1 select proxy run[ ddhMed 1 ](window willbe opened for selecting reference, then proxy willl be deleted)

// run ddhMed 0 - and proxy will not be deleted

global proc string ddhMed (int $st){
    string $filePath[];
    string $dir;
    $lssl = `ls -sl`;
 
    $proxy  = $lssl[0];
    vector $prPos = `xform -q -ws -t`;
    vector $prRot = `xform -q -ws -ro`;
    vector $prScl = `xform -q -ws -s`;
 
    $ffilter = "Maya files(*.ma *.mb);;MayaASCii(*.ma);;Maya binary(*.mb);;All files(*.*)";
 
    if($filePath[0]!="") $dir = $filePath[0];
 
    else $dir = `workspace -q -dir`;
    $filePath = `fileDialog2 -dir $dir -fm 1 -ff $ffilter -dialogStyle 2`;
 
    $bName = `basenameEx $filePath[0]`;
 
    $ref = `file -r -gl -loadReferenceDepth "all" -shd "displayLayers" -mergeNamespacesOnClash false -ns $bName -options "v=0;" $filePath`;
    $rfObjs = ls("-dag",(referenceQuery("-n",`referenceQuery -rfn $ref`)));
    $chkGrp = `listRelatives -s $rfObjs[0]`;
    if(!size($chkGrp)&&size(`ls -dag $rfObjs[0]`)==`size $rfObjs`)
        $mainGrp = $rfObjs[0];
    else{
        $loc = `spaceLocator -n $bName`;
        for ($wat in $rfObjs)
            if (!size(`listRelatives -p $wat`)) parent $wat $loc[0];
        $mainGrp = $loc[0];
    }
    xform -ws -t ($prPos.x) ($prPos.y) ($prPos.z) $mainGrp;
    xform -ws -ro ($prRot.x) ($prRot.y) ($prRot.z) $mainGrp;
    xform -ws -s ($prScl.x) ($prScl.y) ($prScl.z) $mainGrp;
    if ($st)delete $proxy;
	headsUpMessage -s "^_^";
    return $mainGrp;
}