summaryrefslogtreecommitdiffstats
path: root/dimension/dimension.in
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2011-08-21 13:24:13 -0600
committerTavian Barnes <tavianator@gmail.com>2011-08-21 13:24:13 -0600
commit942fd9ff8e267b361de580a95fa247e486120891 (patch)
tree683835731d05db901d98d10ba0023bb1ef3fb285 /dimension/dimension.in
parent6b1fcde7af64ca81079dffe1d62096228693b5d6 (diff)
downloaddimension-942fd9ff8e267b361de580a95fa247e486120891.tar.xz
Replace sky_spheres with a single background pigment.
Diffstat (limited to 'dimension/dimension.in')
-rw-r--r--dimension/dimension.in3
1 files changed, 0 insertions, 3 deletions
diff --git a/dimension/dimension.in b/dimension/dimension.in
index cfebe78..c637d26 100644
--- a/dimension/dimension.in
+++ b/dimension/dimension.in
@@ -151,7 +151,6 @@ camera = PerspectiveCamera()
default_texture = Texture(finish = Ambient(0.1) + Diffuse(0.7))
default_interior = Interior()
background = Black
-sky_sphere = None
recursion_limit = None
# Execute the input script
@@ -178,8 +177,6 @@ scene.outer_width = _args.width
scene.outer_height = _args.height
scene.default_texture = default_texture
scene.background = background
-if sky_sphere is not None:
- scene.sky_sphere = sky_sphere
if recursion_limit is not None:
scene.recursion_limit = recursion_limit
if _args.threads is not None: