mirror of
https://github.com/ValveSoftware/source-sdk-2013.git
synced 2025-04-06 18:12:14 +00:00
Updated dlls bg map and L4D styled glow effect enabled.
Fixed background map, latest .dll files and L4D style glow enabled.
This commit is contained in:
parent
9be217ac94
commit
a98c30cf74
10 changed files with 1556 additions and 0 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
1509
mp/game/mod_hl2mp/maps/SecobMod__bkgd.vmf
Normal file
1509
mp/game/mod_hl2mp/maps/SecobMod__bkgd.vmf
Normal file
File diff suppressed because it is too large
Load diff
7
mp/game/mod_hl2mp/materials/Dev/glow_color.vmt
Normal file
7
mp/game/mod_hl2mp/materials/Dev/glow_color.vmt
Normal file
|
@ -0,0 +1,7 @@
|
|||
UnlitGeneric
|
||||
{
|
||||
"$basetexture" "white"
|
||||
"$ignorez" "1"
|
||||
"$model" "1"
|
||||
"$linearwrite" "1"
|
||||
}
|
14
mp/game/mod_hl2mp/materials/Dev/halo_add_to_screen.vmt
Normal file
14
mp/game/mod_hl2mp/materials/Dev/halo_add_to_screen.vmt
Normal file
|
@ -0,0 +1,14 @@
|
|||
"screenspace_general"
|
||||
{
|
||||
"$PIXSHADER" "haloaddoutline_ps20"
|
||||
|
||||
"$ALPHA_BLEND_COLOR_OVERLAY" 1
|
||||
"$basetexture" "_rt_fullframefb"
|
||||
"$ignorez" 1
|
||||
"$linearread_basetexture" 1
|
||||
"$linearwrite" 1
|
||||
|
||||
"$texture1" "dev/glow_red"
|
||||
"$texture2" "dev/glow_white"
|
||||
"$texture3" "dev/glow_blue"
|
||||
}
|
|
@ -14,6 +14,10 @@
|
|||
#include "teamplayroundbased_gamerules.h"
|
||||
#endif
|
||||
|
||||
#ifdef SecobMod__HAS_L4D_STYLE_GLOW_EFFECTS
|
||||
#include "teamplayroundbased_gamerules.h"
|
||||
#endif //SecobMod__HAS_L4D_STYLE_GLOW_EFFECTS
|
||||
|
||||
// memdbgon must be the last include file in a .cpp file!!!
|
||||
#include "tier0/memdbgon.h"
|
||||
|
||||
|
|
|
@ -69,11 +69,22 @@ extern ConVar replay_rendersetting_renderglow;
|
|||
#include "econ_item_description.h"
|
||||
#endif
|
||||
|
||||
#ifdef SecobMod__HAS_L4D_STYLE_GLOW_EFFECTS
|
||||
#include "clienteffectprecachesystem.h"
|
||||
#endif //SecobMod__HAS_L4D_STYLE_GLOW_EFFECTS
|
||||
|
||||
// memdbgon must be the last include file in a .cpp file!!!
|
||||
#include "tier0/memdbgon.h"
|
||||
|
||||
#define ACHIEVEMENT_ANNOUNCEMENT_MIN_TIME 10
|
||||
|
||||
#ifdef SecobMod__HAS_L4D_STYLE_GLOW_EFFECTS
|
||||
CLIENTEFFECT_REGISTER_BEGIN( PrecachePostProcessingEffectsGlow )
|
||||
CLIENTEFFECT_MATERIAL( "dev/glow_color" )
|
||||
CLIENTEFFECT_MATERIAL( "dev/halo_add_to_screen" )
|
||||
CLIENTEFFECT_REGISTER_END_CONDITIONAL( engine->GetDXSupportLevel() >= 90 )
|
||||
#endif //SecobMod__HAS_L4D_STYLE_GLOW_EFFECTS
|
||||
|
||||
class CHudWeaponSelection;
|
||||
class CHudChat;
|
||||
class CHudVote;
|
||||
|
@ -835,6 +846,10 @@ bool ClientModeShared::DoPostScreenSpaceEffects( const CViewSetup *pSetup )
|
|||
return false;
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef SecobMod__HAS_L4D_STYLE_GLOW_EFFECTS
|
||||
g_GlowObjectManager.RenderGlowEffects( pSetup, 0 );
|
||||
#endif //SecobMod__HAS_L4D_STYLE_GLOW_EFFECTS
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
|
@ -770,6 +770,11 @@ void CBaseCombatCharacter::Spawn( void )
|
|||
{
|
||||
BaseClass::Spawn();
|
||||
|
||||
//SecobMod__ChangeME! You may not want all AI having the glow effect but we have this here to prove it works!
|
||||
#ifdef SecobMod__HAS_L4D_STYLE_GLOW_EFFECTS
|
||||
AddGlowEffect();
|
||||
#endif //SecobMod__HAS_L4D_STYLE_GLOW_EFFECTS
|
||||
|
||||
SetBlocksLOS( false );
|
||||
m_aliveTimer.Start();
|
||||
m_hasBeenInjured = 0;
|
||||
|
|
|
@ -66,6 +66,8 @@
|
|||
#define SecobMod__HAS_POWER_INDICATOR_REGARDLESS_OF_SUIT //Shows sprint etc meter
|
||||
#define SecobMod__HAS_FLASHLIGHT_REGARDLESS_OF_SUIT //Enables the flashlight except HL2 DM overrides disabling this and provides the flashlight anyway.
|
||||
#define SecobMod__HAS_GEIGER_COUNTER_REGARDLESS_OF_SUIT //Allows you to detect toxic areas.
|
||||
//#define SecobMod__HAS_L4D_STYLE_GLOW_EFFECTS //The glowing outline that you see used in L4D (Left4Dead).
|
||||
//#define GLOWS_ENABLE //Use this to enable Valve's glow code for use with the above (both defines are required).
|
||||
|
||||
/**********************/
|
||||
/* Map Enhancements. */
|
||||
|
|
Loading…
Reference in a new issue