mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
27 lines
385 B
Plaintext
27 lines
385 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: 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;
|
|
}
|
|
|