# _Cine Mode Internal

FlagsNative | Action | Internal

# Arguments

  • playergroup — Players
  • bool — CinematicMode
  • fixed — Duration

Returns — void

native void CinematicMode(
	playergroup players,
	bool cinematicMode,
	fixed duration,
);

Category: Cinematics / Cinematic Mode / Internal

# Examples

# mods/core.sc2mod

NativeLib.galaxy

// L2038
CinematicMode(lv_validPlayers, true, lp_duration)
// L2091
CinematicMode(lv_validPlayers, false, lp_duration)
// L1728
CinematicMode(lv_validPlayers, true, lp_duration)
// L1781
CinematicMode(lv_validPlayers, false, lp_duration)

# mods/heroesdata.stormmod

StartingExperienceLib.galaxy

// L2720
CinematicMode(PlayerGroupAll(), false, 0.0)

# mods/starcoop/starcoop.sc2mod

LibCOMI.galaxy

// L777
CinematicMode(lv_validPlayers, true, 0.0)