ACE3/addons/trenches/functions/fnc_handleScrollWheel.sqf

25 lines
403 B
Plaintext
Raw Normal View History

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