0

Add new nether render mode.

This commit is contained in:
Mark Crichton
2012-09-18 22:05:15 -04:00
parent 6768ba328b
commit 4ced35e9e5
3 changed files with 105 additions and 0 deletions

View File

@@ -50,6 +50,9 @@ class Base(RenderPrimitive):
class Nether(RenderPrimitive):
name = "nether"
class NetherAlt(RenderPrimitive):
name = "nether2"
class HeightFading(RenderPrimitive):
name = "height-fading"
options = {
@@ -230,4 +233,7 @@ smooth_night = [Base(), EdgeLines(), SmoothLighting(night=True)]
nether = [Base(), EdgeLines(), Nether()]
nether_lighting = [Base(), EdgeLines(), Nether(), Lighting()]
nether_smooth_lighting = [Base(), EdgeLines(), Nether(), SmoothLighting()]
netheralt = [Base(), EdgeLines(), NetherAlt()]
netheralt_lighting = [Base(), EdgeLines(), NetherAlt(), Lighting()]
netheralt_smooth_lighting = [Base(), EdgeLines(), NetherAlt(), SmoothLighting()]
cave = [Base(), EdgeLines(), Cave(), DepthTinting()]