Vinc3r / ReTiCo

Real Time Companion, a Blender add-on made to work faster, oriented 3D realtime and glTF workflow.
https://nothing-is-3d.com/
Do What The F*ck You Want To Public License
21 stars 4 forks source link

Cycles mtl: set viewport color as mtl color #28

Open Vinc3r opened 6 years ago

Vinc3r commented 6 years ago
Vinc3r commented 3 years ago
import bpy
import random

def returnRandColor():
    return random.randrange(0, 1000000) / 1000000

for mat in bpy.data.materials:
    mat.diffuse_color = (returnRandColor(), returnRandColor(), returnRandColor(), 1)