Created
August 8, 2025 14:35
-
-
Save LouisGJBertrand/3cdf10aa272acfa8001d70bfeb793b30 to your computer and use it in GitHub Desktop.
Batch Set filter to textures to unfiltered in Maya using python
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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