0

updated default max height on Depth render primitive

This commit is contained in:
Aaron Griffith
2012-03-01 21:09:17 -05:00
parent 137935801d
commit 9aee71b953
2 changed files with 2 additions and 2 deletions

View File

@@ -414,7 +414,7 @@ Depth
lowest level of blocks to render. Default: 0
max
highest level of blocks to render. Default: 127
highest level of blocks to render. Default: 255
EdgeLines
Draw edge lines on the back side of blocks, to help distinguish them from

View File

@@ -57,7 +57,7 @@ class Depth(RenderPrimitive):
name = "depth"
options = {
"min": ("lowest level of blocks to render", 0),
"max": ("highest level of blocks to render", 127),
"max": ("highest level of blocks to render", 255),
}
class EdgeLines(RenderPrimitive):