mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
d3ce75daef
- Overhauls the spectator module entirely to share a similar UX to BI's "End Game Spectator" while maintaining some of the extended flexibility of ACE Spectator. - Simplifies spectator setup by reducing the number of settings. More advanced setup is still possible via the API functions provided.
28 lines
582 B
Plaintext
28 lines
582 B
Plaintext
/*
|
|
* Author: Nelson Duarte, AACO, SilentSpike
|
|
* 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
|
|
*/
|
|
|
|
#include "script_component.hpp"
|
|
|
|
params ["", "_button"];
|
|
|
|
if (_button == 0 && {!isNull GVAR(cursorObject)}) then {
|
|
[GVAR(cursorObject)] call FUNC(cam_prepareTarget);
|
|
};
|