Add nicer coloring.

This commit is contained in:
jmsgrogan 2017-10-24 10:42:09 +01:00
parent 565ded39fc
commit 11d306f362
16 changed files with 14 additions and 10 deletions

View file

@ -22,8 +22,8 @@ def setup_scene():
mat = bpy.data.materials.get("backwall-material")
if mat is None:
mat = bpy.data.materials.new("backwall-material")
mat.diffuse_color = (0.5, 0.5, 0.5)
mat.specular_color = (0.5, 0.5, 0.5)
mat.diffuse_color = (0.25, 0.25, 0.25)
mat.specular_color = (0.25, 0.25, 0.25)
mat.diffuse_intensity = 1.0
mat.specular_intensity = 1.0
bpy.context.scene.objects.active = bpy.data.objects["back_wall"]