mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
3f4564605b
* Muzzle Velocity vs. Temperature Interpolation * C1 Ballistic Coefficient vs. Distance Interpolation * Coriolis and Spin drift output * Options menu * Truing Drop --------------------------------- * Overworked default gun profiles --------------------------------- * Fixed the Cancel buttons on the gun-, atmosphere- and target columns. * Fixed some muzzle velocity entries in the default gun list. * Fixed divide by zero error in the target range estimator
25 lines
415 B
Plaintext
25 lines
415 B
Plaintext
/*
|
|
* Author: Ruthberg
|
|
* Selects a target slot (A, B, C or D)
|
|
*
|
|
* Arguments:
|
|
* target <NUMBER>
|
|
*
|
|
* Return Value:
|
|
* Nothing
|
|
*
|
|
* Example:
|
|
* 2 call ace_atragmx_fnc_change_target_slot
|
|
*
|
|
* Public: No
|
|
*/
|
|
#include "script_component.hpp"
|
|
|
|
private _target = 0 max _this min 3;
|
|
|
|
[] call FUNC(parse_input);
|
|
|
|
GVAR(currentTarget) = _target;
|
|
call FUNC(update_target_selection);
|
|
call FUNC(calculate_target_solution);
|