Damnit, our forum software provider has messed a few things up. I've opened some tickets for these, and will let you all know once I get some updates. 1. All the banner images are blank. This looks like a permissions problem on their end. 2. Image embeds in posts are small and incorrect aspect ratio. They used to be…
Hello everyone, I would like to better understand texel density and how to maintain it in a scene. What blocks me is that I understand how it works, with the various mathematical formulas, even how many times to tile a texture, but then I can’t find a practical reference when I try to maintain texel density for an entire…
Try this import maya.cmds as cmds
import maya.mel as mel #Get all the transform nodes that have hg in it's name
geo_list = cmds.ls('*hg*',type='transform') #run through all the geometry
for geo in geo_list: #Ch=0 so that the soft edge won't end up in history cmds.polySoftEdge(geo,a=180,ch=0) #Get shapes to assign material…