Created
March 23, 2014 06:29
-
-
Save pumacamargo/9719527 to your computer and use it in GitHub Desktop.
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
import maya.cmds as cmds | |
selection = cmds.ls(sl=1) | |
for item in selection: | |
cmds.select(cl = True) | |
for face in [2,5,8,6,19,39,12,23]:#Aqui entre corchetes vas a poner las caras que quieres borrar. | |
cmds.select("%s.f[%s]"%(item, face), tgl = True) | |
cmds.delete() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment