mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
25 lines
408 B
Plaintext
25 lines
408 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"
|
|
|
|
if (GVAR(deployPFH) == -1) exitWith {false};
|
|
|
|
params ["_scroll"];
|
|
|
|
GVAR(deployDirection) = GVAR(deployDirection) + (_scroll * 5);
|
|
|
|
true
|