SDK Question Navigation mode identifiers

Does anyone know the navigation mode identifiers?
I know NAVMODE_KILLROT and NAVMODE_HOLDALT but none of the others.:unsure:
From OrbiterAPI.h :
Code:
/************************************************************************/
/**
 * \ingroup defines
 * \defgroup navmode Navigation mode identifiers
 *
 *  These constants are used to refer to the built-in "auto-navigation"
 *  modes, mostly for mainaining specific vessel attitudes via use of
 *  RCS thrusters.
 * \sa VESSEL::ActivateNavmode, VESSEL::DeactivateNavmode, VESSEL::ToggleNavmode,
 *   VESSEL::GetNavmodeState
 */
//@{
#define NAVMODE_KILLROT          1 ///< "Kill rotation" mode
#define NAVMODE_HLEVEL           2 ///< "Hold level with horizon" mode
#define NAVMODE_PROGRADE         3 ///< "Prograde" mode
#define NAVMODE_RETROGRADE       4 ///< "Retrograde" mode
#define NAVMODE_NORMAL           5 ///< "Normal to orbital plane" mode
#define NAVMODE_ANTINORMAL       6 ///< "Anti-normal to orbital plane" mode
#define NAVMODE_HOLDALT          7 ///< "Hold altitude" mode
//@}
 
Back
Top