Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Client|Renderer Appearance: Renamed built-in profiles, added "Defaults"
"Retro" is now "Vanilla", and "Enhanced" is "Amplified". The "Defaults"
profile uses whatever built-in default values the native code specifies.

Enabled sharp sprite edges (rend-sprite-mode) and disabled sprite
Z-writes (rend-sprite-noz) in the Vanilla profile.
  • Loading branch information
skyjake committed Sep 22, 2013
1 parent b5c737e commit 242f54a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
@@ -1,5 +1,5 @@
profile {
name: Enhanced (built-in)
name: Amplified (built-in)
setting "rend-fakeradio" {
value: 1
}
Expand Down
5 changes: 5 additions & 0 deletions doomsday/client/data/profiles/renderer/defaults.dei
@@ -0,0 +1,5 @@
profile {
name: Defaults (built-in)

# The values for all settings are taken from the built-in defaults.
}
@@ -1,5 +1,5 @@
profile {
name: Retro (built-in)
name: Vanilla (built-in)
setting "rend-fakeradio" {
value: 0
}
Expand Down Expand Up @@ -154,10 +154,10 @@ profile {
value: 4
}
setting "rend-sprite-mode" {
value: 0
value: 1
}
setting "rend-sprite-noz" {
value: 0
value: 1
}
setting "rend-tex-anim-smooth" {
value: 0
Expand Down

0 comments on commit 242f54a

Please sign in to comment.