mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
23 lines
439 B
Plaintext
23 lines
439 B
Plaintext
#include "script_component.hpp"
|
|
/*
|
|
* Author: Brandon (TCVM)
|
|
* Condition to switch to next navigation profile
|
|
*
|
|
* Arguments:
|
|
* Guidance Arg Array <ARRAY>
|
|
*
|
|
* Return Value:
|
|
* None
|
|
*
|
|
* Example:
|
|
* [] call ace_spike_midCourseTransition
|
|
*
|
|
* Public: No
|
|
*/
|
|
_args params ["", "", "", "", "_stateParams"];
|
|
_stateParams params ["", "", "", "","_navigationParams"];
|
|
|
|
_navigationParams params ["_state"];
|
|
_state isEqualTo STAGE_TERMINAL
|
|
|