ACE3/addons/atragmx/functions/fnc_cycle_target_speed_direction.sqf
jonpas 742626ff1a
General - Relative script_component.hpp includes (#9378)
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
2023-09-12 20:58:10 +02:00

23 lines
363 B
Plaintext

#include "..\script_component.hpp"
/*
* Author: Ruthberg
* Cycles through the target directions left/right
*
* Arguments:
* None
*
* Return Value:
* None
*
* Example:
* call ace_atragmx_fnc_cycle_target_speed_direction
*
* Public: No
*/
if ((ctrlText 140051) == ">") then {
ctrlSetText [140051, "<"];
} else {
ctrlSetText [140051, ">"];
};