[maya] mel get all material

全然検索してもでてこないのに簡単だった。

NO MEAN    
  string $shadingEngines[]=`ls -type "shadingEngine"`;
    //string $materials[]=`ls -type "material"`;
    string $ShaderS[];
    string $lambertS[]=`ls -type "lambert"`;
    string $phongS[]=`ls -type "phong"`;
    string $materials[]=`ls -sl`;

shadingEnginesとか関係なかった。

//ANSWER
string $allMaterials[] = `ls -materials`;

    for($mtl in $allMaterials)
    {
      string $materialsType=`objectType $mtl`;
      print("$mtl= "+$mtl+" $materialsType="+$materialsType+"\n");
    }

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です