mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
31 lines
765 B
Plaintext
31 lines
765 B
Plaintext
|
#include "script_component.hpp"
|
||
|
/*
|
||
|
* Author: LinkIsGrim
|
||
|
* Calculates and applies final sway coefficient from sway factors
|
||
|
*
|
||
|
* Arguments:
|
||
|
* None
|
||
|
*
|
||
|
* Return Value:
|
||
|
* None
|
||
|
*
|
||
|
* Example:
|
||
|
* call ace_common_fnc_swayLoop
|
||
|
*
|
||
|
* Public: No
|
||
|
*/
|
||
|
|
||
|
private _baseline = 1;
|
||
|
if (GVAR(swayFactorsBaseline) isNotEqualTo []) then {
|
||
|
_baseline = 1 max ([missionNamespace, "ACE_setCustomAimCoef_baseline", "max"] call EFUNC(common,arithmeticGetResult));
|
||
|
};
|
||
|
|
||
|
private _multiplier = 1;
|
||
|
if (GVAR(swayFactorsMultiplier) isNotEqualTo []) then {
|
||
|
_multiplier = [missionNamespace, "ACE_setCustomAimCoef_multiplier", "product"] call EFUNC(common,arithmeticGetResult);
|
||
|
};
|
||
|
|
||
|
ACE_player setCustomAimCoef (_baseline * _multiplier);
|
||
|
|
||
|
[FUNC(swayLoop), [], 1] call CBA_fnc_waitAndExecute
|