Hello. I have an object that I put a modifier Edit poly. How do I know the position of the verts with maxscript? I'm trying using:
$.modifiers[#Edit_Poly].selectedVerts[1].pos
but it doesnt work. Help please
Forum topic · Scripts Wanted
By Bash14 · 2011-11-07
Hello. I have an object that I put a modifier Edit poly. How do I know the position of the verts with maxscript? I'm trying using:
$.modifiers[#Edit_Poly].selectedVerts[1].pos
but it doesnt work. Help please
mjbg · 2011-11-07
you can use
$.modifiers[#Edit_Poly].getvertex (($.modifiers[#Edit_Poly].getselection #vertex)as array)[1]
but im sure there must be a better way to do this