Notifications
Clear all

[Closed] detect deleted key and delete key on child-object via maxscript?

Hi folks,

is it possible to detect a deleted key on a parentobject and delete all keys on the childobject, preferably via maxscript and callback?

2 Replies
1 Reply
(@denist)
Joined: 11 months ago

Posts: 0

you can also use “when construct”, where you can specify a controller (parent controller) which you want to monitor. for example:


when geometry $.transform.controller change do print #geom
-- or 
-- when topology $.transform.controller change do print #topo

see “when construct” in the mxs help for more details and options

NodeEventCallback + controllerOtherEvent should be sufficient to do it.
Though I’m not sure if it is possible to know which controller is changed.