Make HDMap fall back to default perspective, shader or lighting as needed if unable to find configured preset.

This commit is contained in:
Mike Primm 2011-07-24 20:34:39 -05:00
parent abd7c25d80
commit 3ddce85f89
4 changed files with 75 additions and 24 deletions

View file

@ -4,6 +4,19 @@ version: 0.20
# during upgrades, so new or updated perspective definitions should be done in the custom-perspectives.txt file
#
perspectives:
# Default - used if bad or no perspective name supplied
- class: org.dynmap.hdmap.IsoHDPerspective
name: default
azimuth: 135
inclination: 60
scale: 4
# iso_classic is very close to KzedMap view
- class: org.dynmap.hdmap.IsoHDPerspective
name: classic
azimuth: 135
inclination: 60
scale: 1.4
# High angle (60 degree) views
- class: org.dynmap.hdmap.IsoHDPerspective
name: iso_S_60_lowres
azimuth: 180

View file

@ -3,10 +3,16 @@
# during upgrades, so new or updated shader definitions should be done in the custom-shaders.txt file
#
shaders:
- class: org.dynmap.hdmap.DefaultHDShader
# Default shader - used if shader not specified or invalid
- class: org.dynmap.hdmap.TexturePackHDShader
name: default
texturepack: standard
# Color scheme based shaders
- class: org.dynmap.hdmap.DefaultHDShader
name: defaultscheme
colorscheme: default
- class: org.dynmap.hdmap.DefaultHDShader
name: ovocean
colorscheme: ovocean
@ -19,6 +25,7 @@ shaders:
name: sk89q
colorscheme: sk89q
# Biome based shaders
- class: org.dynmap.hdmap.DefaultHDShader
name: biome
biomecolored: biome
@ -31,21 +38,23 @@ shaders:
name: rainfall
biomecolored: rainfall
# No transparency default color scheme shader
- class: org.dynmap.hdmap.DefaultHDShader
name: no_transparency
colorscheme: default
transparency: false
# Cave view shader
- class: org.dynmap.hdmap.CaveHDShader
name: cave
# Texture pack based shader for standard Minecraft textures
- class: org.dynmap.hdmap.TexturePackHDShader
name: stdtexture
texturepack: standard
# Texture pack based shader for standard Minecraft textures, without biome-tinted grass/leaves
- class: org.dynmap.hdmap.TexturePackHDShader
name: stdtexture-nobiome
texturepack: standard
biomeshaded: false