Showing results 1 to 5 of 5
Search took 0.00 seconds.
Search: Posts Made By: Jackkd88
Posted By Jackkd88 On 03-09-2020 | Views: 17,960 Replies: 1
Increase Transparency Depth value until all the grass are rendered correctly with transparency
Posted By Jackkd88 On 03-09-2020 | Views: 13,576 Replies: 1
make sure to turn off this option
Posted By Jackkd88 On 03-09-2020 | Views: 16,278 Replies: 1
Forum: Programming
select text to view

import maya.cmds as mc

allTransforms = mc.ls(tr=1)
polyMeshes = mc.filterExpand(allTransforms, sm=12)
toDel = []
for i in polyMeshes:
if mc.getAttr(i+'.visibility')...
Posted By Jackkd88 On 03-09-2020 | Views: 10,488 Replies: 1
Forum: Programming
import maya.cmds as mc

allTransforms = mc.ls(tr=1)
polyMeshes = mc.filterExpand(allTransforms, sm=12)
mc.select(polyMeshes)
Posted By Jackkd88 On 03-09-2020 | Views: 18,974 Replies: 2
Forum: Programming
Asterisk (*) unpacking is introduced in python 3 , Maya still uses python 2 so this method won't work
Instead you can use this code:
import maya.cmds as cmds
selObj = cmds.ls(sl=1)
a,b =...
Showing results 1 to 5 of 5