ACE3/addons/minedetector/functions/fnc_playDetectorSound.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

34 lines
759 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Glowbal
* Play the detector sound
*
* Arguments:
* 0: Unit <OBJECT>
* 1: Sound class <STRING>
*
* Return Value:
* None
*
* Example:
* [player, "ace_buzz_1", 1] call ace_minedetector_fnc_playDetectorSound
*
* Public: No
*/
params ["_unit", "_soundClass"];
if (isNull _unit) exitWith {
ERROR_1("unit does not exist [%1]",_unit);
};
if (!alive _unit) exitWith {
ERROR_1("unit is not alive [%1]",_unit);
};
if (_unit getVariable [QGVAR(isUsingHeadphones), false] && {_unit == ACE_player}) then {
playSound _soundClass;
} else {
private _posASL = _unit modelToWorldWorld (_unit selectionPosition "granat");
[_soundClass, _posASL, 3, 15] call EFUNC(common,playConfigSound3D);
};