Notifications
Clear all

[Closed] getVertexPosition returns incorrect values

Think I found a bug, just looking for confirmation (or an explanation as to what I’m doing wrong <G>)

  1. Open attached file in max. It’s just a simple polygon with a UVW unwrap modifier ontop.
  2. Select Plane01
  3. Go to modify panel, open up the unwrap, click edit, you should see the object’s uvs.
  4. Run the following code…
obj1 = $Plane01
sourceverts = polyop.getMapFace obj1 1 1
for v in sourceverts do
	(
	print (obj1.modifiers[1].unwrap.getVertexPosition currenttime v)
	)

You should see results like this…

[0,1,0]
[0,0,0]
[0.5,0,0]
[0.5,1,0]

These are the results you expect.

  1. Close the UV Window.
  2. Click on the modifier to get out of subobject mode
  3. Deselect the object
  4. run the code a second time

You should see results like this…

[0.5,1,0]
[0.5,1,0]
[0.5,1,0]
[0.5,1,0]

which is totally wrong.

Anyone know what might be going on. happens in max 2009 and 2010, 64bit. Thanks.

  • Neil
7 Replies

I am quite sure any Unwrap-related scripts MUST be run with the modifier selected in the Modify Panel, but I could be wrong.

Yup, that looks to be the case. I’m gonna mark that as a bug and pass it to autodesk, it may be a known limitation, but it’s gonna make my script really messy. Thanks for the info Bobo.

  • Neil
1 Reply
(@denist)
Joined: 1 year ago

Posts: 0

it’s not a bug. UVW Unwrap modifier interfaces always worked only if this modifier is modpanel’s current object and UVW Editor is opened.

Just because something never worked doesn’t mean it’s not a bug.

I’ll give it a more PC label then, I will mark it as a “workflow enhancement”

  • Neil

good luck… also you can mark Edit Normals, and Skin modifiers. It will be nice to get them fixed too.

 PEN

Looks like it is in many of the tools that Peter developed years ago.

 JHN

I really dislike some interfaces that require the modifier to be set to the current, with the modpanel open as well. I think pointcache has this problem too…

-Johan