mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
28 lines
582 B
Plaintext
28 lines
582 B
Plaintext
|
/*
|
||
|
* 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
|
||
|
*/
|
||
|
|
||
|
#include "script_component.hpp"
|
||
|
#define FOLLOW_CAMERA_MAX_DISTANCE 5
|
||
|
|
||
|
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 FOLLOW_CAMERA_MAX_DISTANCE;
|
||
|
};
|
||
|
};
|