Difference between revisions of "MDE Scripting: FaderFadeIn"

From Nomad DB
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 +
{{Page_MDE}}
 
{| class="wikitable"
 
{| class="wikitable"
 
!Syntax
 
!Syntax
Line 4: Line 5:
 
|-
 
|-
 
!Module
 
!Module
|[[MDE_Scripting:_Game_Library#HUD|HUD]]
+
|[[MDE Scripting: Game Library#HUD|HUD]]
 
|-
 
|-
 
!Library
 
!Library
|[[MDE_Scripting:_Game_Library|Game]]
+
|[[MDE Scripting: Game Library|Game]]
 
|-
 
|-
 
!Game
 
!Game
|[[MDE_Scripting|Mafia: Definitive Edition]]
+
|[[MDE Scripting|Mafia: Definitive Edition]]
 
|}
 
|}
  
Line 17: Line 18:
 
Fade-in effect (from black to image)
 
Fade-in effect (from black to image)
  
See [[MDE_Scripting:_FaderFadeOut|FaderFadeOut]] for fade-out effect.
+
See [[MDE Scripting: FaderFadeOut|FaderFadeOut]] for fade-out effect.
  
  
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