ACE3/addons/spectator/functions/fnc_ui_handleMouseZChanged.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

26 lines
544 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Nelson Duarte, AACO
* Function used to handle mouse scroll event
*
* Arguments:
* 0: Control <CONTROL>
* 1: Change in Z <NUMBER>
*
* Return Value:
* None
*
* Example:
* _this call ace_spectator_fnc_ui_handleMouseZChanged
*
* Public: No
*/
if (GVAR(camMode) == MODE_FOLLOW) then {
if ((_this select 1) > 0) then {
GVAR(camDistance) = (GVAR(camDistance) - 1) max 0;
} else {
GVAR(camDistance) = (GVAR(camDistance) + 1) min GVAR(maxFollowDistance);
};
};