diff options
author | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-01-12 02:37:03 +0000 |
---|---|---|
committer | BobTheBob <32057864+BobTheBob9@users.noreply.github.com> | 2022-01-12 02:37:03 +0000 |
commit | 4da39d6714da0c09750f6197048322815a61a3d1 (patch) | |
tree | 03226f16c16cb7fdadf6d2f3a42f82f455705e4e /Northstar.CustomServers/mod/scripts/vscripts/mp | |
parent | 36c08fa5f800e3fdff4690417ce756c20e6ec8f5 (diff) | |
download | NorthstarMods-4da39d6714da0c09750f6197048322815a61a3d1.tar.gz NorthstarMods-4da39d6714da0c09750f6197048322815a61a3d1.zip |
fix angel city skybox fog
Diffstat (limited to 'Northstar.CustomServers/mod/scripts/vscripts/mp')
-rw-r--r-- | Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_angel_city.nut | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_angel_city.nut b/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_angel_city.nut index 87c9ea98..e7cc8224 100644 --- a/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_angel_city.nut +++ b/Northstar.CustomServers/mod/scripts/vscripts/mp/levels/mp_angel_city.nut @@ -13,6 +13,7 @@ void function CodeCallback_MapInit() // there are some really busted titan startspawns that are on the fucking other side of the map from where they should be, so we remove them AddSpawnCallback( "info_spawnpoint_titan_start", TrimBadTitanStartSpawns ) + AddSpawnCallback( "sky_camera", FixSkycamFog ) } void function TrimBadTitanStartSpawns( entity spawn ) @@ -24,4 +25,10 @@ void function TrimBadTitanStartSpawns( entity spawn ) if ( Distance2D( spawn.GetOrigin(), comparisonOrigin ) >= 2000.0 ) spawn.Destroy() +} + +void function FixSkycamFog( entity skycam ) +{ + if ( skycam.GetTargetName() == "skybox_cam_level" ) + skycam.kv.useworldfog = 1 }
\ No newline at end of file |