mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
59 lines
1.6 KiB
Plaintext
59 lines
1.6 KiB
Plaintext
/*
|
|
* Author: commy2
|
|
*
|
|
* Drop a dragged object.
|
|
*
|
|
* Argument:
|
|
* 0: Unit that drags the other object (Object)
|
|
* 1: Dragged object to drop (Object)
|
|
*
|
|
* Return value:
|
|
* NONE.
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_unit", "_target"];
|
|
|
|
_unit = _this select 0;
|
|
_target = _this select 1;
|
|
|
|
// remove scroll wheel action
|
|
_unit removeAction (_unit getVariable [QGVAR(ReleaseActionID), -1]);
|
|
|
|
private "_inBuilding";
|
|
_inBuilding = [_unit] call FUNC(isObjectOnObject);
|
|
|
|
// play release animation
|
|
_unit playAction "released";
|
|
|
|
// prevent collision damage
|
|
["fixCollision", _unit, _unit] call EFUNC(common,targetEvent);
|
|
["fixCollision", _target, _target] call EFUNC(common,targetEvent);
|
|
|
|
// release object
|
|
detach _target;
|
|
|
|
if (_target isKindOf "CAManBase") then {
|
|
if (_target getVariable ["ACE_isUnconscious", false]) then {
|
|
[_target, "unconscious", 2, true] call EFUNC(common,doAnimation);
|
|
} else {
|
|
[_target, "", 2, true] call EFUNC(common,doAnimation); //@todo "AinjPpneMrunSnonWnonDb_release" seems to fall back to unconsciousness anim. retest after config fix
|
|
};
|
|
};
|
|
|
|
_unit removeWeapon "ACE_FakePrimaryWeapon";
|
|
|
|
// prevent object from flipping inside buildings
|
|
if (_inBuilding) then {
|
|
_target setPosASL (getPosASL _target vectorAdd [0, 0, 0.05]);
|
|
};
|
|
|
|
_unit setVariable [QGVAR(isDragging), false, true];
|
|
_unit setVariable [QGVAR(draggedObject), objNull, true];
|
|
|
|
// make object accesable for other units
|
|
[objNull, _target, true] call EFUNC(common,claim);
|
|
|
|
["fixPosition", _target, _target] call EFUNC(common,targetEvent);
|
|
["fixFloating", _target, _target] call EFUNC(common,targetEvent);
|