diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-12-04 18:43:52 -0500 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-12-04 19:07:48 -0500 |
commit | 176054363582b08aaf93bb4fcc0f26521c0f884c (patch) | |
tree | 98833973895f8b9838a1452156ec889f6a0f1dfd /dimension/client.py.in | |
parent | 003b3894abe2756541e9aac497058f491961bd17 (diff) | |
download | dimension-176054363582b08aaf93bb4fcc0f26521c0f884c.tar.xz |
Use a separate class for sRGB colors.
Diffstat (limited to 'dimension/client.py.in')
-rw-r--r-- | dimension/client.py.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dimension/client.py.in b/dimension/client.py.in index 2eaf3c3..9f68198 100644 --- a/dimension/client.py.in +++ b/dimension/client.py.in @@ -107,7 +107,8 @@ def main(): "objects" : [], "lights" : [], "camera" : PerspectiveCamera(), - "default_texture" : Texture(finish = Ambient(0.1) + Diffuse(0.7)), + "default_texture" : Texture(finish = Ambient(sRGB(0.1)) + + Diffuse(sRGB(0.7))), "default_interior" : Interior(), "background" : Black, "recursion_limit" : None, |