Introduction to Maya - Modeling Fundamentals Vol 1
This course will look at the fundamentals of modeling in Maya with an emphasis on creating good topology. We'll look at what makes a good model in Maya and why objects are modeled in the way they are.
# 1 15-02-2020 , 10:30 AM
Registered User
Join Date: Aug 2019
Posts: 2

Open File dialog and assign texture

Hi, I created a Blinn material and it has 2d texture node now what I want is that when the user runs this script it should ask which texture he wants to assign Any idea?

string $mySel[] = `ls -sl`;
string $myBlinn = `shadingNode -asShader blinn`;
string $myFile = `createRenderNodeCB -as2DTexture "" file ("")`;
setAttr ($myBlinn + ".specularRollOff")0.2;
connectAttr ($myFile+".outColor") ($myBlinn+".color");
select $myFile;
AEfileTextureBrowser ("AEassignTextureCB " + $myFile + ".fileTextureName") $myFile image;
select -r $mySel;
hyperShade -assign $myBlinn $mySel;

Posting Rules Forum Rules
You may not post new threads | You may not post replies | You may not post attachments | You may not edit your posts | BB code is On | Smilies are On | [IMG] code is On | HTML code is Off