mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
68ed19911a
* configOf lookups * forEach, missed configOf * revert handcuff distance change Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> * optimize condition Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> * capitalization Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> * use object in getVehicleIcon Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> * add return comment Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> * remove extra brackets Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> * add missing brackets Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> * add return comment pt2 Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> * revert to cursorTarget Co-authored-by: Filip Maciejewski <veteran29@users.noreply.github.com> Co-authored-by: PabstMirror <pabstmirror@gmail.com>
29 lines
749 B
Plaintext
29 lines
749 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: mharis001
|
|
* Returns the refill action offset for given object.
|
|
*
|
|
* Arguments:
|
|
* 0: Water source <OBJECT>
|
|
*
|
|
* Return Value:
|
|
* Action offset <ARRAY>
|
|
*
|
|
* Example:
|
|
* [cursorObject] call ace_field_rations_fnc_getActionOffset
|
|
*
|
|
* Public: No
|
|
*/
|
|
|
|
params ["_object"];
|
|
|
|
private _configOf = configOf _object;
|
|
if !(isNull _configOf) then {
|
|
// Check for offset in config since we have valid typeOf
|
|
private _offset = getArray (_configOf >> QXGVAR(offset));
|
|
if (_offset isEqualTo []) then {[0, 0, 0]} else {_offset};
|
|
} else {
|
|
// Check for offset corresponding to p3d list
|
|
GVAR(waterSourceOffsets) param [GVAR(waterSourceP3ds) find (getModelInfo _object select 0), [0, 0, 0], [[]]];
|
|
};
|