mirror of
https://github.com/mapbase-source/source-sdk-2013.git
synced 2024-12-26 06:45:31 +03:00
Added DisappearMinDist to func_lod for forwards compatibility
This commit is contained in:
parent
eb05dba580
commit
125eb70a80
@ -112,6 +112,10 @@ bool CFunc_LOD::KeyValue( const char *szKeyName, const char *szValue )
|
||||
{
|
||||
m_fDisappearMaxDist = (float)atof(szValue);
|
||||
}
|
||||
else if (FStrEq(szKeyName, "DisappearMinDist")) // Forwards compatibility
|
||||
{
|
||||
m_fDisappearDist = (float)atof(szValue);
|
||||
}
|
||||
#endif
|
||||
else if (FStrEq(szKeyName, "Solid"))
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user