mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
23 lines
587 B
Plaintext
23 lines
587 B
Plaintext
/**
|
|
* fn_getOnUpdateVariableEH.sqf
|
|
* @Descr: N/A
|
|
* @Author: Glowbal
|
|
*
|
|
* @Arguments: []
|
|
* @Return:
|
|
* @PublicAPI: false
|
|
*/
|
|
|
|
private ["_target","_variable","_name","_return","_variableName"];
|
|
_target = [_this,0,ObjNull,[ObjNull]] call BIS_fnc_Param;
|
|
_variableName = [_this,1,"",[""]] call BIS_fnc_Param;
|
|
_name = [_target,_variableName] call cse_fnc_getMonitoredVariableName;
|
|
_name = _name + "_UPDATE_EH";
|
|
_return = "";
|
|
if (isnil _name) then {
|
|
|
|
} else {
|
|
_return = call compile _name;
|
|
//[format["cse_fnc_getOnUpdateVariableEH %1 | %2",_return, _name]] call cse_fnc_debug;
|
|
};
|
|
_return |