Hi! I'm a noobie in scripting, but I'm trying to automatize some repetitive tasks at my job. I want to turn on this function in my multi material selection. For instance: to change the RGB colors of my materials, instead of typing all the way from 1 to 100, how can I make it more straight to the point:…
You just need to loop through them. For example (with 'i' becoming the loop number): for i=1 to 24 do ( meditMaterials[i].ambient = color 230 230 230 meditMaterials[i].Diffuse = color 230 230 230)