Skip to content
This repository has been archived by the owner on May 5, 2021. It is now read-only.

Commit

Permalink
- Added non-ZDoom fallback for the silver sloped fence set.
Browse files Browse the repository at this point in the history
  • Loading branch information
GTD-Carthage committed Apr 13, 2020
1 parent bf6866c commit e1744dd
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion src/games/doom/fabs/fence/gtd_fence_tech_lit.lua
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ PREFABS.Fence_tech_lit_diag_EPIC =
tex_MIDSPACE = "MIDSPAC5"
}

--
-- HL Bars
--

PREFABS.Fence_tech_hl_bars =
Expand Down Expand Up @@ -148,9 +150,11 @@ PREFABS.Fence_gappy_fallback_diag =
bound_z1 = 0
}

--
-- Tech sloped silver
--

PREFABS.Fence_tech_sloped_silver =
PREFABS.Fence_tech_sloped_silver = --#
{
file = "fence/gtd_fence_tech_lit.wad"
map = "MAP05"
Expand All @@ -159,6 +163,8 @@ PREFABS.Fence_tech_sloped_silver =

group = "fence_sloped_silver"

engine = "zdoom"

where = "edge"

deep = 16
Expand All @@ -173,7 +179,49 @@ PREFABS.Fence_tech_sloped_silver_diag =
template = "Fence_tech_hl_bars"
map = "MAP06"

engine = "zdoom"

group = "fence_sloped_silver"

where = "diagonal"
}

-- fallback

PREFABS.Fence_sloped_silver_fallback =
{
file = "fence/gappy.wad"
map = "MAP01"

prob = 50

engine = "!zdoom"

group = "fence_sloped_silver"

where = "edge"

deep = 16
over = 16

fence_h = 32
bound_z1 = 0
}

PREFABS.Fence_sloped_silver_fallback_diag =
{
file = "fence/gappy.wad"
map = "MAP02"

prob = 50

engine = "!zdoom"

group = "fence_sloped_silver"

where = "diagonal"

fence_h = 32

bound_z1 = 0
}

0 comments on commit e1744dd

Please sign in to comment.