Sorry…my bad… Corrected the scripts…
That would be the basic translation for Bobo’s advice. Still no support for Multi/Sub-Object Materials and the likes…but it should work fo selection s…
Am I understanding you right? You want a script that changes the Map Channel of the current selected object’s material to 2 and set it to be show in v…
It’s really hard to tell without further information…(The error message or the code…preferably both)
That might work: I edited your code (bold) select (for o in geometry where o.material != undefined AND classof o.material != Multimaterial AND (o.ma…
You can loop through all the objects and the modifiers and get the node(s): theObject = for o in objects where (for m in o.modifiers where m.type == …
Since the spacing tool is part of Max itself and I am quite sure Autodesk doesn’t want it copied, you won’t find it in your installed files. Nor will …
Yeah… for i in 1 to 3 do ( text = format “theArray[%]” i print text ) should print out theArray[1] theArray[2] theArray[3]
You can use format and ‘%’ to place values in a string: theScript = format “%,%,%” i i i –(don’t know if you really need three ‘i’)
No, not a script…a ‘Script Controller’ Go to the Curve Editor or the Motion Pannel and assign a ‘Rotation Script’ to the Rotation of the object. In t…
That is just a random shot now, but I think you might be able to do that with a Rotation Script Controller, where you specify the Orientation Vector b…
If they have the exact same name that should work: on Button pressed do ( if selection.count == 1 do ( Name_Var = $.name for o in objects where o.nam…