mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
CLogSystem: make notify fade out animation 500ms slower
This commit is contained in:
parent
58cadb529b
commit
7b0baf5d1f
@ -112,9 +112,9 @@ void CLogSystem::DrawNotify(void)
|
||||
|
||||
float flTimeleft = pNotify->m_flLifeRemaining;
|
||||
|
||||
if (flTimeleft < .5f)
|
||||
if (flTimeleft < 1.0f)
|
||||
{
|
||||
float f = clamp(flTimeleft, 0.0f, .5f) / .5f;
|
||||
float f = clamp(flTimeleft, 0.0f, 1.0f) / 1.0f;
|
||||
c[3] = (int)(f * 255.0f);
|
||||
|
||||
if (i == 0 && f < 0.2f)
|
||||
|
Loading…
x
Reference in New Issue
Block a user