mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
16 lines
440 B
Plaintext
16 lines
440 B
Plaintext
#include "script_component.hpp"
|
|
|
|
GVAR(placer) = objNull;
|
|
GVAR(sandBag) = objNull;
|
|
GVAR(deployPFH) = -1;
|
|
GVAR(deployDirection) = 0;
|
|
|
|
// Cancel deploy sandbag if interact menu opened
|
|
["interactMenuOpened", {
|
|
if (GVAR(deployPFH) != -1 && {!isNull (GVAR(sandBag))}) then {
|
|
call FUNC(deployCancel);
|
|
};
|
|
}] call EFUNC(common,addEventHandler);
|
|
|
|
[{_this call DFUNC(handleScrollWheel)}] call EFUNC(common,addScrollWheelEventHandler);
|