Skip to content

Commit

Permalink
Fix #4378: 1970s SP exit door sign not working when vertical
Browse files Browse the repository at this point in the history
  • Loading branch information
TeamSpen210 committed Oct 15, 2023
1 parent 59cf236 commit c71f46f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
* #4336, #3941: Fix some catwalk placement issues.
* Fix seams in Clean custom fizzler model, improve collisions.
* Fix Piston/Track Platforms always using 4x4 tile patterns.
* #4378: Fix 1970s SP exit door sign not working when vertical

------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@
// We never do [E<] / [>E], so only some directions have mirrored variants.
"Condition"
{
"instance" "instances/BEE2/70s/sphere_sp/exit_sign.vmf"
"instance" "instances/BEE2/70s/sphere_sp/exit_sign/sign.vmf"
"Condition"
{
// Regular landscape "EXIT" sign.
Expand All @@ -215,7 +215,12 @@
"SetTile"
{
"Offset" "-16 0 64"
"Tile" "nn"
"Tile" "n"
}
"SetTile"
{
"Offset" "16 0 64"
"Tile" "n"
}
}
"Else" // Modern-style pair of decals on a plank.
Expand All @@ -224,6 +229,10 @@
{
"Offset" "0 -16 64"
"Tile" "n"
}
"SetTile"
{
"Offset" "0 16 64"
"Tile" "n"
}
"Switch"
Expand Down
2 changes: 1 addition & 1 deletion packages/styles/oldAp/styles/1970s/vbsp_config.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@
"glass_template" "BEE2_GLASS_TEMPLATE_70S"
"grating_template" "BEE2_GRATING_TEMPLATE_SQUARE"
"signExitInst" "instances/BEE2/70s/sphere_sp/exit_sign.vmf"
"signExitInst" "instances/BEE2/70s/sphere_sp/exit_sign/sign.vmf"
"remove_exit_signs_dual" "1"
"remove_exit_signs" "0" // Keep if it fails.
}

0 comments on commit c71f46f

Please sign in to comment.