maya python override color rgb

Solutions on MaxInterview for maya python override color rgb by the best coders in the world

showing results for - "maya python override color rgb"
Carl
11 Sep 2019
1from pymel.core import *
2
3exampleNodes = selected()
4
5for n in exampleNodes:
6    n.overrideEnabled.set(1)
7    n.overrideRGBColors.set(1)
8    n.overrideColorRGB.set(0.4, 0.2, 0.8)
9
similar questions
queries leading to this page
maya python override color rgb