Difference between revisions of "MDE Scripting: FaderFadeIn"

From Nomad DB
 
(2 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{Page_MDE}}
 
{| class="wikitable"
 
{| class="wikitable"
 
!Syntax
 
!Syntax
Line 33: Line 34:
  
 
== Returns ==
 
== Returns ==
Returns nothing.
+
{| class="wikitable" width="100%"
 +
!#
 +
!Type
 +
!Description
 +
|-
 +
| style="font-weight: bold; text-align:center;" | 1
 +
|[[MDE Scripting: C_SyncObject|C_SyncObject]]
 +
|Sync Object
 +
|}
 +
 
  
  
 
== Examples ==
 
== Examples ==
 
<syntaxhighlight lang="lua">
 
<syntaxhighlight lang="lua">
game.hud:FaderFadeIn(3000) -- Fade-in during 3 seconds
+
local so = game.hud:FaderFadeIn(3000) -- Fade-in during 3 seconds
 
</syntaxhighlight>
 
</syntaxhighlight>
  

Latest revision as of 02:25, 20 November 2020

Syntax
game.hud:FaderFadeIn(number duration)
Module HUD
Library Game
Game Mafia: Definitive Edition


Description

Fade-in effect (from black to image)

See FaderFadeOut for fade-out effect.


Parameters

Name Type Description
duration number Time in milliseconds


Returns

# Type Description
1 C_SyncObject Sync Object


Examples

local so = game.hud:FaderFadeIn(3000) -- Fade-in during 3 seconds