Notifications
Clear all

[Closed] How to apply a Link Constraint?

Hi!

I can´t apply a link constraint to an object using maxscript…Anyone can help me?

2 Replies

Let’s say you have a sphere named “Sphere01” and a box named “Box01” and you want to link constrain the box to the sphere starting at frame 1:

$Box01.controller = link_constraint()
 $Box01.controller.addTarget $Sphere01 1

Thanks jonlauf! I´ll try it!