ACE3/addons/spectator/functions/fnc_ui_handleMouseButtonDblClick.sqf
Kyle Mckay e47e18001f
Docs - Update my display name everywhere (#9330)
* Update display name in team

* Update display name everywhere

* order

https://youtu.be/VYycQTm2HrM

---------

Co-authored-by: BrettMayson <brett@mayson.io>
2023-08-17 12:02:17 +02:00

27 lines
577 B
Plaintext

#include "script_component.hpp"
/*
* Author: Nelson Duarte, AACO, kymckay
* Function used to handle mouse button double clicks
*
* Expected behaviour:
* Double left click teleports free camera toward the unit, but does not focus
*
* Arguments:
* 0: Control <CONTROL>
* 1: Mouse button pressed <NUMBER>
*
* Return Value:
* None
*
* Example:
* _this call ace_spectator_fnc_ui_handleMouseButtonDblClick
*
* Public: No
*/
params ["", "_button"];
if (_button == 0 && {!isNull GVAR(cursorObject)}) then {
[GVAR(cursorObject)] call FUNC(cam_prepareTarget);
};