# _Cine Mode Turn On/Off For Player Group

FlagsAction | Internal

# Arguments

  • playergroup — Players
  • bool [ preset::OnOffOption ] — On/Off

Returns — void

void libNtve_gf__CineModeTurnOnOffForPlayerGroup(
	playergroup lp_players,
	bool lp_onOff,
);

Category: Cinematics / Cinematic Mode / Internal

# Examples

# mods/core.sc2mod

NativeLib.galaxy

// L2036
libNtve_gf__CineModeTurnOnOffForPlayerGroup(lv_validPlayers, true)
// L2088
libNtve_gf__CineModeTurnOnOffForPlayerGroup(lv_validPlayers, false)
// L1726
libNtve_gf__CineModeTurnOnOffForPlayerGroup(lv_validPlayers, true)
// L1778
libNtve_gf__CineModeTurnOnOffForPlayerGroup(lv_validPlayers, false)

# mods/starcoop/starcoop.sc2mod

LibCOMI.galaxy

// L775
libNtve_gf__CineModeTurnOnOffForPlayerGroup(lv_validPlayers, true)