2018-09-17 19:19:29 +00:00
|
|
|
#include "script_component.hpp"
|
2017-08-12 13:25:48 +00:00
|
|
|
/*
|
|
|
|
* 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 {
|
2019-05-12 04:32:13 +00:00
|
|
|
GVAR(camDistance) = (GVAR(camDistance) + 1) min GVAR(maxFollowDistance);
|
2017-08-12 13:25:48 +00:00
|
|
|
};
|
|
|
|
};
|