ACE3/addons/towing/functions/fnc_onMouseButtonUp.sqf
2023-08-16 19:18:01 -04:00

27 lines
382 B
Plaintext

#include "script_component.hpp"
/*
* Author: tcvm
* Handles mouse interaction for attaching rope
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* [] call ace_towing_fnc_onMouseButtonUp
*
* Public: No
*/
params ["", "_button"];
if (_button > 1) exitWith {};
if (_button == 1) then {
GVAR(mouseRight) = false;
} else {
GVAR(mouseLeft) = false;
}