mirror of
https://github.com/nillerusr/source-engine.git
synced 2026-08-08 01:39:36 +00:00
add source-sdk-2013
This commit is contained in:
@@ -143,23 +143,23 @@ struct citizen_expression_list_t
|
||||
// Scared
|
||||
citizen_expression_list_t ScaredExpressions[STATES_WITH_EXPRESSIONS] =
|
||||
{
|
||||
{ { "scenes/Expressions/citizen_scared_idle_01.vcd" } },
|
||||
{ { "scenes/Expressions/citizen_scared_alert_01.vcd" } },
|
||||
{ { "scenes/Expressions/citizen_scared_combat_01.vcd" } },
|
||||
{ "scenes/Expressions/citizen_scared_idle_01.vcd" },
|
||||
{ "scenes/Expressions/citizen_scared_alert_01.vcd" },
|
||||
{ "scenes/Expressions/citizen_scared_combat_01.vcd" },
|
||||
};
|
||||
// Normal
|
||||
citizen_expression_list_t NormalExpressions[STATES_WITH_EXPRESSIONS] =
|
||||
{
|
||||
{ { "scenes/Expressions/citizen_normal_idle_01.vcd" } },
|
||||
{ { "scenes/Expressions/citizen_normal_alert_01.vcd" } },
|
||||
{ { "scenes/Expressions/citizen_normal_combat_01.vcd" } },
|
||||
{ "scenes/Expressions/citizen_normal_idle_01.vcd" },
|
||||
{ "scenes/Expressions/citizen_normal_alert_01.vcd" },
|
||||
{ "scenes/Expressions/citizen_normal_combat_01.vcd" },
|
||||
};
|
||||
// Angry
|
||||
citizen_expression_list_t AngryExpressions[STATES_WITH_EXPRESSIONS] =
|
||||
{
|
||||
{ { "scenes/Expressions/citizen_angry_idle_01.vcd" } },
|
||||
{ { "scenes/Expressions/citizen_angry_alert_01.vcd" } },
|
||||
{ { "scenes/Expressions/citizen_angry_combat_01.vcd" } },
|
||||
{ "scenes/Expressions/citizen_angry_idle_01.vcd" },
|
||||
{ "scenes/Expressions/citizen_angry_alert_01.vcd" },
|
||||
{ "scenes/Expressions/citizen_angry_combat_01.vcd" },
|
||||
};
|
||||
|
||||
//-----------------------------------------------------------------------------
|
||||
@@ -4197,6 +4197,8 @@ void CNPC_Citizen::AddInsignia()
|
||||
|
||||
void CNPC_Citizen::RemoveInsignia()
|
||||
{
|
||||
// This is crap right now.
|
||||
CBaseEntity *FirstEnt();
|
||||
CBaseEntity *pEntity = gEntList.FirstEnt();
|
||||
|
||||
while( pEntity )
|
||||
|
||||
@@ -1988,7 +1988,7 @@ void CNPC_CScanner::BlindFlashTarget( CBaseEntity *pTarget )
|
||||
|
||||
if ( tr.startsolid == false && tr.fraction == 1.0)
|
||||
{
|
||||
color32 white = { 255, 255, 255, (byte)(SCANNER_FLASH_MAX_VALUE * dotPr) };
|
||||
color32 white = { 255, 255, 255, SCANNER_FLASH_MAX_VALUE * dotPr };
|
||||
|
||||
if ( ( g_pMaterialSystemHardwareConfig != NULL ) && ( g_pMaterialSystemHardwareConfig->GetHDRType() != HDR_TYPE_NONE ) )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user