Notifications
Clear all

[Closed] mergemaxfile ($Camera01)…. how to?

Hello everyone!

I need to merge the $Camera01 from “myscene.max” file to the currently opened scene…
maxscript helps says that i should use “mergemaxfile” command but it merges all of the scene, what do you think how can i merge a specified object from another scene?

thanks for ol regards EREN…

1 Reply

hey there,
have a look at the optional arguments of the mergeMaxFile command. With the <name_array> you can specify which objects should be merged from the other scene.
E.g.

mergemaxfile "...\\myScenemax.max" #("Camera01")

…should do the trick.