diff options
author | Tavian Barnes <tavianator@gmail.com> | 2011-08-21 13:24:13 -0600 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2011-08-21 13:24:13 -0600 |
commit | 942fd9ff8e267b361de580a95fa247e486120891 (patch) | |
tree | 683835731d05db901d98d10ba0023bb1ef3fb285 /libdimension-python/tests | |
parent | 6b1fcde7af64ca81079dffe1d62096228693b5d6 (diff) | |
download | dimension-942fd9ff8e267b361de580a95fa247e486120891.tar.xz |
Replace sky_spheres with a single background pigment.
Diffstat (limited to 'libdimension-python/tests')
-rwxr-xr-x | libdimension-python/tests/demo.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/libdimension-python/tests/demo.py b/libdimension-python/tests/demo.py index 307aafc..fe3518c 100755 --- a/libdimension-python/tests/demo.py +++ b/libdimension-python/tests/demo.py @@ -49,8 +49,7 @@ scene = Scene(canvas = canvas, lights = lights, camera = camera) scene.default_texture = Texture(finish = Ambient(0.1) + Diffuse(0.7)) -scene.background = Clear -scene.sky_sphere = sky_sphere +scene.background = background scene.adc_bailout = 1/255 scene.recursion_limit = 5 scene.raytrace() |