ACE3/addons/sandbag/functions/fnc_handleScrollWheel.sqf
2015-08-08 02:00:00 +02:00

25 lines
442 B
Plaintext

/*
* Author: Garth 'L-H' de Wet, Ruthberg
* Handles sandbag rotation
*
* Arguments:
* 0: scroll amount <NUMBER>
*
* Return Value:
* handled <BOOL>
*
* Example:
* [1.2] call ace_sandbag_fnc_handleScrollWheel
*
* Public: No
*/
#include "script_component.hpp"
params ["_scroll"];
if (GETMVAR(ACE_Modifier,0) == 0 || GVAR(deployPFH) == -1) exitWith { false };
GVAR(deployDirection) = GVAR(deployDirection) + (_scroll * 5);
true