mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
26 lines
544 B
Plaintext
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);
|
|
};
|
|
};
|