Multiple-joint Modification
-
Is there any way to change the properties of many different joints at once? For instance, I have dozens of motors that I would like to have under the control of one slider. Rather than adjusting each one in the 'Inspector', I would like to be able to change all of their settings at once. It would also be nice if I could assign them all to the same slider control in a single action as well.
Can this be done? I'd even be OK with a script to generate a batch of motors or something.
-
oops rereading your post I don't think I answered you question. I will leave this up and think about the script changes which I presume requires changing instance variables.
Yes this is possible via a variety of routes. I think you can just do it by having them all access the same slider value. (just pick one for instance slider('piston2091') and copy that to the others). Otherwise to do it by scripting you just put a variable @@value for instance or ...and this is not recommended $value in the controller field and then change that the value of @@value (or $value) with script. The program can be a bit sketchy sometimes so for original troubleshooting I generally just risk the wrath of ThomThom and go with the global variable $value.
Advertisement