mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
d3ce75daef
- Overhauls the spectator module entirely to share a similar UX to BI's "End Game Spectator" while maintaining some of the extended flexibility of ACE Spectator. - Simplifies spectator setup by reducing the number of settings. More advanced setup is still possible via the API functions provided.
33 lines
691 B
Plaintext
33 lines
691 B
Plaintext
/*
|
|
* Author: SilentSpike
|
|
* Adds or removes sides from the selection available to spectate. Local effect.
|
|
*
|
|
* Default selection is [west,east,resistance,civilian]
|
|
*
|
|
* Arguments:
|
|
* 0: Sides to add <ARRAY>
|
|
* 1: Sides to remove <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* Sides available <ARRAY>
|
|
*
|
|
* Example:
|
|
* [[west], [east,civilian]] call ace_spectator_fnc_updateSides
|
|
*
|
|
* Public: Yes
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
params [["_addSides",[],[[]]], ["_removeSides",[],[[]]]];
|
|
|
|
// Add and remove sides
|
|
_addSides append (GVAR(availableSides) - _removeSides);
|
|
|
|
// Only need array of unique sides
|
|
_addSides = _addSides arrayIntersect _addSides;
|
|
|
|
GVAR(availableSides) = _addSides;
|
|
|
|
_addSides
|