Notifications
Clear all

[Closed] Master Point Controller

How do I access the master point controller for Editable Polys?

When using the MacroRecorder I can see things like:

$.Master_Point_Controller.controller.Vertex_1.controller

but any attempt to manually enter this stuff results in an:

– Unknown property: “Master_Point_Controller”

Any help?

5 Replies

I think the master point controller is only there if you’re animating – are you in auto key mode in your script?

Doesn’t seem to make any difference, are you sure thats a stipulation?

The object I’m querying does have a master point controller, it shows up in the track view, so how do I query it via maxscript?

In the past I’ve used

$[4][1]

Which works fine with Editable Meshes, but I need to query an Editable Poly…

Solved:

$[4][12]

1 Reply
(@denist)
Joined: 11 months ago

Posts: 0

the subanim indexes might vary. the right path is <node>.baseobject[#master_point_controller]

Thanks, that’s what I was looking for.