ACE3/addons/towing/functions/fnc_onMouseButtonDown.sqf
2022-01-30 11:54:30 -06:00

27 lines
389 B
Plaintext

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