Graphics::transitionFromBlurred: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
No edit summary
 
Line 1: Line 1:
time in ms to transition from fully blurred to normal
Time in ms to transition from fully blurred to normal. RU: время в мс для перехода от полностью размытого экрана до нормального
==Syntax==
==Syntax==
<syntaxhighlight lang="javascript">mp.game.graphics.transitionFromBlurred(transitionTime);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.graphics.transitionFromBlurred(transitionTime);</syntaxhighlight>
Line 8: Line 8:
==Example==
==Example==
<syntaxhighlight lang="javascript">
<syntaxhighlight lang="javascript">
// todo
mp.game.graphics.transitionFromBlurred(1000); // Remove blur completely after 1000 ms (RU: Полностью убираем размытие через 1000 мс)
</syntaxhighlight>
</syntaxhighlight>
==See also==
==See also==

Latest revision as of 14:41, 13 November 2020

Time in ms to transition from fully blurred to normal. RU: время в мс для перехода от полностью размытого экрана до нормального

Syntax

mp.game.graphics.transitionFromBlurred(transitionTime);

Required Arguments

  • transitionTime: float

Return value

  • Boolean

Example

mp.game.graphics.transitionFromBlurred(1000); // Remove blur completely after 1000 ms (RU: Полностью убираем размытие через 1000 мс)

See also