This course contains a little bit of everything with modeling, UVing, texturing and dynamics in Maya, as well as compositing multilayered EXR's in Photoshop.
First of all this is my first post so I'll use it to say hello to everyone in this community
I'm having an issue with the xray function. When I turn it on my geometry AND my reference images go transparent. Is there any way to make them opaque all the time?
I use a little script for Xray (see below). If you want to use it then paste it into the script editor and select it, then middlemouse drag it onto the shelf. Select a mesh and hit the button, to turn it off select the mesh again and hit the button again.
for ($obj in $obj_selection)
{
$numTokens = `tokenize $obj "|" $buffer`;
//We might be working on an instance, so check to see if we need to skip
if ($numTokens > 1)
{
//If the next object is an instance of the last one skip
if (strcmp ($firstInstance, $buffer[1]) == 0)
{
continue;
}
$firstInstance = $buffer[1];
}
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