mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
742626ff1a
Co-authored-by: PabstMirror <pabstmirror@gmail.com>
23 lines
363 B
Plaintext
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, ">"];
|
|
};
|