Hi guys, I am trying to execute a cmds.polyExtrudeFacet() command on some faces, but the command just accept the format object.f[start:end] without allowing me using a step parameter.
I would like to avoid maya API and know if there is a way to make this.
Another solution I found is to extrude every face in a loop, but this lead me to a separate construction history per face, and that’s not so cool.
Thanks
EDIT:
Solved it, I didn’t know that using cmds.polyExtrudeFacet() without faces parameters uses the faces in selection!
Thank you R.White, I found that use of cmds.polyExtrudeFacet() with active selection on the faces I want to extrude is the better solution at the moment!