ScriptSpot

Forum topic · Scripts Wanted

position vertex

By Bash14 · 2011-11-07

Description

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

Comments (1)

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