mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
db6f30fcc9
Does not include the Icon pack. When using the UI it may throw up some missing .paa file errors. Replacements will need to be found if we want to use those.
23 lines
395 B
Plaintext
23 lines
395 B
Plaintext
/**
|
|
* fn_getCurrentRadialTarget_gui.sqf
|
|
* @Descr: N/A
|
|
* @Author: Glowbal
|
|
*
|
|
* @Arguments: []
|
|
* @Return:
|
|
* @PublicAPI: false
|
|
*/
|
|
|
|
private ["_target"];
|
|
if (isnil "CSE_interactionTarget") then {
|
|
_target = objNull;
|
|
} else {
|
|
disableSerialization;
|
|
|
|
if (isNull (uiNamespace getvariable "CSE_RADIAL_MENU")) then {
|
|
_target = objNull;
|
|
} else {
|
|
_target = CSE_interactionTarget;
|
|
};
|
|
};
|
|
_target |