Notifications
Clear all

[Closed] create mirror (keep instance) for an object

is there any way to create mirror and keep instance for an object using maxscript?

2 Replies

Hello there,

Here is one way:

 mapped fn copyMirror obj offset:[0,0,0] suffix:"_mirroredReference" =
(
   result = false   
   if isValidNode obj do (result = reference obj;addModifier result mirror();result.pos += offset; result.name += suffix)
   result
)

Enjoy,
har1sf0x

1 Reply
(@batigolnguyen)
Joined: 10 months ago

Posts: 0

It worked for me. Thanks