Hey, Does anyone happen to have a script for Maya (2016) that will fill each object in a selection with a random vert colour? Or know of a quicker way t do this than manually selecting them one by one, then changing the colour, then hitting apply colour, repeat...
Just bind this to a hotkey and you're done : string $Objects[] = `ls -sl -fl`; // Store current selection for ($Obj in $Objects) { // Start a loop that will go through each object in your selection list select -r $Obj; // Select the first object in the loop polyColorPerVertex -rem ; // Remove any vertex color data on the…