mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
fc39b81c95
*Added a profile namespace format version *The profileNamespace data is now automatically reset on version mismatch
27 lines
664 B
Plaintext
27 lines
664 B
Plaintext
/*
|
|
* Author: Ruthberg
|
|
* Updates the inclination angle input fields
|
|
*
|
|
* Arguments:
|
|
* Reference input field ID <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* 0 call ace_atragmx_fnc_update_inclination_angle
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private ["_inclinationAngleCosine", "_inclinationAngleDegree"];
|
|
_inclinationAngleCosine = 0.5 max parseNumber(ctrlText 140041) min 1;
|
|
_inclinationAngleDegree = -60 max parseNumber(ctrlText 140040) min 60;
|
|
|
|
if (_this == 0) then {
|
|
ctrlSetText [140040, Str(round(acos(_inclinationAngleCosine)))];
|
|
} else {
|
|
ctrlSetText [140041, Str(round(cos(_inclinationAngleDegree) * 100) / 100)];
|
|
};
|