Graphics::transitionFromBlurred: Difference between revisions

From RAGE Multiplayer Wiki
(yay)
 
No edit summary
 
(One intermediate revision by one other user not shown)
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">graphics.transitionFromBlurred(transitionTime);</syntaxhighlight>
<syntaxhighlight lang="javascript">mp.game.graphics.transitionFromBlurred(transitionTime);</syntaxhighlight>
=== Required Arguments ===
=== Required Arguments ===
*'''transitionTime:''' float
*'''transitionTime:''' float
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==
{{Graphics_function_c}}
{{Graphics_s_function_c}}
[[Category:Clientside API]]
[[Category:Clientside API]]
[[Category:TODO: Example]]
[[Category:TODO: Example]]

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