ACE3/addons/spectator/functions/fnc_cam_toggleSlow.sqf
SilentSpike d3ce75daef Spectator overhaul (#5171)
- 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.
2017-08-12 14:25:48 +01:00

37 lines
798 B
Plaintext

/*
* Author: Nelson Duarte, SilentSpike
* Function used to set camera slow speed mode
*
* Arguments:
* 0: Enable slow speed <BOOL>
*
* Return Value:
* None
*
* Example:
* [true] call ace_spectator_fnc_cam_toggleSlow
*
* Public: No
*/
#include "script_component.hpp"
params ["_slowSpeed"];
if !(GVAR(camSlow) isEqualTo _slowSpeed) then {
private _camera = GVAR(camera);
if (GVAR(camMode) == MODE_FREE) then {
GVAR(camSlow) = _slowSpeed;
if (_slowSpeed) then {
_camera camCommand format ["speedDefault %1", SPEED_SLOW];
} else {
_camera camCommand format ["speedDefault %1", SPEED_DEFAULT];
};
} else {
_camera camCommand format ["speedDefault %1", SPEED_DEFAULT];
GVAR(camSlow) = false;
};
};