2023-09-12 18:58:10 +00:00
|
|
|
#include "..\script_component.hpp"
|
2016-11-02 12:56:59 +00:00
|
|
|
/*
|
|
|
|
* Author: Ruthberg
|
|
|
|
* Restores the truing drop defaults
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* update display <BOOL>
|
|
|
|
*
|
|
|
|
* Return Value:
|
2017-06-08 13:31:51 +00:00
|
|
|
* None
|
2016-11-02 12:56:59 +00:00
|
|
|
*
|
|
|
|
* Example:
|
|
|
|
* call ace_atragmx_fnc_restore_truing_drop
|
|
|
|
*
|
|
|
|
* Public: No
|
|
|
|
*/
|
|
|
|
|
|
|
|
private _updateDisplay = _this;
|
|
|
|
|
|
|
|
GVAR(truingDropMode) = 0;
|
|
|
|
GVAR(truingDropRangeData) = [0, 0];
|
|
|
|
GVAR(truingDropDropData) = [0, 0, 0];
|
|
|
|
GVAR(truingDropReferenceDropData) = [0, 0, 0];
|
|
|
|
GVAR(truingDropC1) = 0;
|
|
|
|
GVAR(truingDropMuzzleVelocity) = 0;
|
|
|
|
|
|
|
|
// Resets input fields
|
|
|
|
call FUNC(update_truing_drop_selection);
|
|
|
|
|
|
|
|
if (_updateDisplay) then {
|
|
|
|
// Repopulates input fields
|
|
|
|
false call FUNC(calculate_truing_drop);
|
|
|
|
};
|