mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
11664b0040
* Update XEH_postInit.sqf * Update XEH_postInit.sqf * Update XEH_postInit.sqf * Different approach * Updated to new script_component * fix variable lookup --------- Co-authored-by: LinkIsGrim <salluci.lovi@gmail.com>
35 lines
782 B
Plaintext
35 lines
782 B
Plaintext
#include "..\script_component.hpp"
|
|
/*
|
|
* Author: johnb43
|
|
* Removes user input affecting dragging.
|
|
*
|
|
* Arguments:
|
|
* 0: Unit <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* player call ace_dragging_fnc_pauseCarry;
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_unit"];
|
|
|
|
// If not carrying, don't do anything
|
|
if !(_unit getVariable [QGVAR(isCarrying), false]) exitWith {};
|
|
|
|
private _actionID = _unit getVariable QGVAR(releaseActionID);
|
|
|
|
// If action has already been removed, don't remove it again
|
|
if (isNil "_actionID") exitWith {};
|
|
|
|
// Remove drop action
|
|
[_unit, "DefaultAction", _actionID] call EFUNC(common,removeActionEventHandler);
|
|
_unit setVariable [QGVAR(releaseActionID), nil];
|
|
|
|
// Hide mouse hint
|
|
_unit setVariable [QGVAR(hint), "paused"];
|
|
call EFUNC(interaction,hideMouseHint);
|