Sets up an iris wipe at the end of a stage.
Scope
This command should be called between calls to AddStage and CloseStage in a mission's initialisation script.
Syntax
MFK
Lua
SetIrisWipe( unused );Game.SetIrisWipe( unused )- unused: Unused.
- Despite being unused, this argument is required!
Examples
MFK
Lua
AddStage();
// ...
SetIrisWipe(0.1);
CloseStage();Game.AddStage()
-- ...
Game.SetIrisWipe(0.1)
Game.CloseStage()