Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save LouisGJBertrand/3cdf10aa272acfa8001d70bfeb793b30 to your computer and use it in GitHub Desktop.
Save LouisGJBertrand/3cdf10aa272acfa8001d70bfeb793b30 to your computer and use it in GitHub Desktop.
Batch Set filter to textures to unfiltered in Maya using python
texs = cmds.ls(textures=True)
print (tex)
for tex in texs:
cmds.setAttr(tex+".filterType", 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment