ACE3/addons/towing/functions/fnc_onMouseButtonDown.sqf
Brandon Danyluk ca7fbe742c
Add Vehicle Towing (#8380)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2021-10-12 11:33:05 +02:00

27 lines
392 B
Plaintext

#include "script_component.hpp"
/*
* Author: Brandon (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;
}