# Aircraft Flight Control Events The event IDs listed here are all related to the different view and camera systems. #### Ailerons {{< table-wrapper "colclass-3=font-size:0.75rem" "200px" "200px" "150px" "" >}} | Key Name | Event ID | Parameters | Description | |---|---|---|---| | {{< anchor id="AILERON_CENTER" />}}`AILERON_CENTER` | `KEY_AILERON_CENTER` | N/A | Centers aileron position. Note that this is simply an alias for the [`CENTER_AILER_RUDDER`](#CENTER_AILER_RUDDER) event. | | {{< anchor id="AILERON_LEFT" />}}`AILERON_LEFT` | `KEY_AILERON_LEFT` | N/A | Increments the left aileron by 1°. Note that this is simply an alias for the [`AILERONS_LEFT`](#AILERONS_LEFT) event. | | {{< anchor id="AILERON_RIGHT" />}}`AILERON_RIGHT` | `KEY_AILERON_RIGHT` | N/A | Increments the right aileron by 1°. Note that this is simply an alias for the [`AILERONS_RIGHT`](#AILERONS_RIGHT) event. | | {{< anchor id="AILERON_SET" />}}`AILERON_SET` | `KEY_AILERON_SET` | [0] Position (-16383 to 16384) | Sets the aileron position. | | {{< anchor id="AILERON_TRIM_DISABLED_SET" />}}`AILERON_TRIM_DISABLED_SET` | `KEY_AILERON_TRIM_DISABLED_SET` | [0]: Bool | Enable (1, TRUE) or disable (0, FALSE) the aileron trim. | | {{< anchor id="AILERON_TRIM_DISABLED_TOGGLE" />}}`AILERON_TRIM_DISABLED_TOGGLE` | `KEY_AILERON_TRIM_DISABLED_TOGGLE` | N/A | Toggle the aileron trim disabled option between on (1) and off (0). | | {{< anchor id="AILERON_TRIM_LEFT" />}}`AILERON_TRIM_LEFT` | `KEY_AILERON_TRIM_LEFT` | N/A | Increments the left aileron trim by 0.001. | | {{< anchor id="AILERON_TRIM_RIGHT" />}}`AILERON_TRIM_RIGHT` | `KEY_AILERON_TRIM_RIGHT` | N/A | Increments the right aileron trim by 0.001. | | {{< anchor id="AILERON_TRIM_SET" />}}`AILERON_TRIM_SET` | `KEY_AILERON_TRIM_SET` | [0] Position (-100 to 100) | Sets the aileron trim. | | {{< anchor id="AILERON_TRIM_SET_EX1" />}}`AILERON_TRIM_SET_EX1` | `KEY_AILERON_TRIM_SET_EX1` | [0] Position (-16383 to 16384) | Sets the aileron trim with extra precision. | | {{< anchor id="AILERONS_LEFT" />}}`AILERONS_LEFT` | `KEY_AILERONS_LEFT` | N/A | Increments the left ailerons by 1°. | | {{< anchor id="AILERONS_RIGHT" />}}`AILERONS_RIGHT` | `KEY_AILERONS_RIGHT` | N/A | Increments the right ailerons by 1°. | | {{< anchor id="AXIS_AILERONS_SET" />}}`AXIS_AILERONS_SET` | `KEY_AXIS_AILERONS_SET` | [0] Position (-16383 to 16384) | Sets the aileron position. | | {{< anchor id="AXIS_SENSOR_AILERONS_SET" />}}`AXIS_SENSOR_AILERONS_SET` | `KEY_GYRO_AXIS_AILERONS_SET` | [0] Position (-16383 to 16384) | Sets the aileron position. Note that this is simply an alias for the [`AILERON_SET`](#AILERON_SET) event to be used when gyro controls are enabled. | | {{< anchor id="CENTER_AILER_RUDDER" />}}`CENTER_AILER_RUDDER` | `KEY_CENTER_AILER_RUDDER` | N/A | Centers the aileron and rudder positions. | {{< /table-wrapper >}} #### Elevators {{< table-wrapper "colclass-3=font-size:0.75rem" "200px" "200px" "150px" "" >}} | Key Name | Event ID | Parameters | Description | |---|---|---|---| | {{< anchor id="AXIS_ELEV_TRIM_SET" />}}`AXIS_ELEV_TRIM_SET` | `KEY_AXIS_ELEV_TRIM_SET` | [0]: Trim position (-16383 to 16384) | Sets the elevator trim position (input will be normalised to a value between -1 and 1). | | {{< anchor id="AXIS_ELEVATOR_SET" />}}`AXIS_ELEVATOR_SET` | `KEY_AXIS_ELEVATOR_SET` | [0]: Position (-16383 to 16384) | Sets the elevator position (input will be normalised to a value between -1 and 1). Note that this is simply an alias for the [`ELEVATOR_SET`](#ELEVATOR_SET) event, and will not work if gyro controls are active. | | {{< anchor id="AXIS_SENSOR_ELEVATOR_SET" />}}`AXIS_SENSOR_ELEVATOR_SET` | `KEY_GYRO_AXIS_ELEVATOR_SET` | [0]: Position (-16383 to 16384) | Sets the elevator position (input will be normalised to a value between -1 and 1). Note that this is simply an alias for the [`ELEVATOR_SET`](#ELEVATOR_SET) event and will only work when gyro controls are enabled. | | {{< anchor id="ELEV_DOWN" />}}`ELEV_DOWN` | `KEY_ELEV_DOWN` | N/A | Decrements the elevator by -0.05 (to a minimum of -1). When the key is released the elevator will return to it's original position.Note that this is simply an alias for the `ELEVATOR_DOWN` event. | | {{< anchor id="ELEV_TRIM_DN" />}}`ELEV_TRIM_DN` | `KEY_ELEV_TRIM_DN` | N/A | Decrements the elevator trim by -0.0005. Holding down the key will cause the trim to decrement faster over time. | | {{< anchor id="ELEV_TRIM_UP" />}}`ELEV_TRIM_UP` | `KEY_ELEV_TRIM_UP` | N/A | Increments the elevator trim by 0.0005. Holding down the key will cause the trim to increment faster over time. | | {{< anchor id="ELEV_UP" />}}`ELEV_UP` | `KEY_ELEV_UP` | N/A | Increments elevator by 0.05 (to a maximum of 1). When the key is released the elevator will return to it's original position.Note that this is simply an alias for the `ELEVATOR_UP` event. | | {{< anchor id="ELEVATOR_DOWN" />}}`ELEVATOR_DOWN` | `KEY_ELEVATOR_DOWN` | N/A | Decrements the elevator by -0.05 (to a minimum of -1). When the key is released the elevator will return to it's original position. | | {{< anchor id="ELEVATOR_SET" />}}`ELEVATOR_SET` | `KEY_ELEVATOR_SET` | [0]: Position (-16383 to 16384) | Sets elevator position (input will be normalised to a value between -1 and 1). Note that this willnot work if gyro controls are active. | | {{< anchor id="ELEVATOR_TRIM_DISABLED_SET" />}}`ELEVATOR_TRIM_DISABLED_SET` | `KEY_ELEVATOR_TRIM_DISABLED_SET` | [0]: Bool | Sets the Elevator Trim Disabled to be on (TRUE) or off (FALSE). | | {{< anchor id="ELEVATOR_TRIM_DISABLED_TOGGLE" />}}`ELEVATOR_TRIM_DISABLED_TOGGLE` | `KEY_ELEVATOR_TRIM_DISABLED_TOGGLE` | N/A | Toggles the Elevator Trim Disabled between on (1, TRUE) and off (0, FALSE). | | {{< anchor id="ELEVATOR_TRIM_SET" />}}`ELEVATOR_TRIM_SET` | `KEY_ELEVATOR_TRIM_SET` | [0]: Trim position (-16383 to 16384) | Sets the elevator trim position. | | {{< anchor id="ELEVATOR_UP" />}}`ELEVATOR_UP` | `KEY_ELEVATOR_UP` | N/A | Increments the elevator by 0.05 (to a maximum of 1). When the key is released the elevator will return to it's original position. | {{< /table-wrapper >}} #### Flaps {{< table-wrapper "colclass-3=font-size:0.75rem" "200px" "200px" "150px" "" >}} | Key Name | Event ID | Parameters | Description | |---|---|---|---| | {{< anchor id="AXIS_FLAPS_SET" />}}`AXIS_FLAPS_SET` | `KEY_AXIS_FLAPS_SET` | [0]: Position (-16383 to 16384) | Sets flap handle to closest increment (-16383 - +16383) | | {{< anchor id="FLAPS_1" />}}`FLAPS_1` | `KEY_FLAPS_1` | N/A | Sets flap handle to first extension position | | {{< anchor id="FLAPS_2" />}}`FLAPS_2` | `KEY_FLAPS_2` | N/A | Sets flap handle to second extension position | | {{< anchor id="FLAPS_3" />}}`FLAPS_3` | `KEY_FLAPS_3` | N/A | Sets flap handle to third extension position | | {{< anchor id="FLAPS_4" />}}`FLAPS_4` | `KEY_FLAPS_4` | N/A | Sets flap handle to fourth extension position | | {{< anchor id="FLAPS_CONTINUOUS_DECR" />}}`FLAPS_CONTINUOUS_DECR` | `KEY_FLAPS_CONTINUOUS_DECR` | [0]: Position (0 to 16383) | Decrement flap handle by a value (0 to 16383). | | {{< anchor id="FLAPS_CONTINUOUS_INCR" />}}`FLAPS_CONTINUOUS_INCR` | `KEY_FLAPS_CONTINUOUS_INCR` | [0]: Position (0 to 16383) | Increment flap handle by a value (0 to 16383). | | {{< anchor id="FLAPS_CONTINUOUS_SET" />}}`FLAPS_CONTINUOUS_SET` | `KEY_FLAPS_CONTINUOUS_SET` | [0]: Position (0 to 16383) | Set flap handle to any value (0 to 16383). | | {{< anchor id="FLAPS_DECR" />}}`FLAPS_DECR` | `KEY_FLAPS_DECR` | N/A | Decrements flap handle position by one level. | | {{< anchor id="FLAPS_DETENTS_SET" />}}`FLAPS_DETENTS_SET` | `KEY_FLAPS_DETENTS_SET` | N/A | ***No longer used in the simulation.*** | | {{< anchor id="FLAPS_DOWN" />}}`FLAPS_DOWN` | `KEY_FLAPS_DOWN` | N/A | Sets flap handle to full extension position. | | {{< anchor id="FLAPS_INCR" />}}`FLAPS_INCR` | `KEY_FLAPS_INCR` | N/A | Increments flap handle position by one level. | | {{< anchor id="FLAPS_SET" />}}`FLAPS_SET` | `KEY_FLAPS_SET` | [0]: Position (0 to 16383) | Set flap handle to closest increment (0 to 100%). | | {{< anchor id="FLAPS_UP" />}}`FLAPS_UP` | `KEY_FLAPS_UP` | N/A | Sets flap handle to full retract position | {{< /table-wrapper >}} **Miscellaneous** {{< table-wrapper "colclass-3=font-size:0.75rem" "200px" "200px" "150px" "" >}} | Key Name | Event ID | Parameters | Description | |---|---|---|---| | {{< anchor id="CENTER_NT361_CHECK" />}}`CENTER_NT361_CHECK` | `KEY_CENTER_NT361_CHECK` | N/A | Check to see if NT 361 Flight Trainer should be centered | | {{< anchor id="CHVPP_LEFT_HAT_UP" />}}`CHVPP_LEFT_HAT_UP` | `KEY_CHVPP_LEFT_HAT_UP` | N/A | CH Virtual Pilot Pro up - left hat keypress. | | {{< anchor id="CHVPP_LEFT_HAT_DOWN" />}}`CHVPP_LEFT_HAT_DOWN` | `KEY_CHVPP_LEFT_HAT_DOWN` | N/A | CH Virtual Pilot Pro down - left hat keypress. | | {{< anchor id="CHVPP_AP_ALT_WING" />}}`CHVPP_AP_ALT_WING` | `KEY_CHVPP_AP_ALT_WING` | N/A | CH Virtual Pilot Pro altitude hold and wing level. | | {{< anchor id="MOUSE_AS_YOKE_RESUME" />}}`MOUSE_AS_YOKE_RESUME` | `KEY_MOUSE_AS_YOKE_RESUME` | N/A | ***No longer used in the simulation.*** | | {{< anchor id="MOUSE_AS_YOKE_SUSPEND" />}}`MOUSE_AS_YOKE_SUSPEND` | `KEY_MOUSE_AS_YOKE_SUSPEND` | N/A | ***No longer used in the simulation.*** | | {{< anchor id="MOUSE_AS_YOKE_TOGGLE" />}}`MOUSE_AS_YOKE_TOGGLE` | `KEY_MOUSE_AS_YOKE_TOGGLE` | N/A | ***No longer used in the simulation.*** | {{< /table-wrapper >}} #### Rudder {{< table-wrapper "colclass-3=font-size:0.75rem" "200px" "200px" "150px" "" >}} | Key Name | Event ID | Parameters | Description | |---|---|---|---| | {{< anchor id="AUTORUDDER_TOGGLE" />}}`AUTORUDDER_TOGGLE` | `KEY_AUTOCOORD_TOGGLE` | N/A | Turn the automatic rudder control feature on or off. | | {{< anchor id="AXIS_RUDDER_SET" />}}`AXIS_RUDDER_SET` | `KEY_AXIS_RUDDER_SET` | [0]: Position (-16383 to 16384) | Sets rudder position. | | {{< anchor id="RUDDER_AXIS_MINUS" />}}`RUDDER_AXIS_MINUS` | `KEY_RUDDER_AXIS_MINUS` | N/A | Move the rudder axis to yaw the aircraft left. | | {{< anchor id="RUDDER_AXIS_PLUS" />}}`RUDDER_AXIS_PLUS` | `KEY_RUDDER_AXIS_PLUS` | N/A | Move the rudder axis to yaw the aircraft right. | | {{< anchor id="RUDDER_CENTER" />}}`RUDDER_CENTER` | `KEY_RUDDER_CENTER` | N/A | Centers rudder position | | {{< anchor id="RUDDER_LEFT" />}}`RUDDER_LEFT` | `KEY_RUDDER_LEFT` | N/A | Increments rudder left | | {{< anchor id="RUDDER_RIGHT" />}}`RUDDER_RIGHT` | `KEY_RUDDER_RIGHT` | N/A | Increments rudder right | | {{< anchor id="RUDDER_SET" />}}`RUDDER_SET` | `KEY_RUDDER_SET` | [0]: Position (-16383 to 16384) | Sets rudder position. Note that if gyro controls are enabled, this will not work. | | {{< anchor id="AXIS_SENSOR_RUDDER_SET" />}}`AXIS_SENSOR_RUDDER_SET` | `KEY_GYRO_AXIS_RUDDER_SET` | [0]: Position (-16383 to 16384) | Sets the rudder position (input will be normalised to a value between -1 and 1). Note that this is simply an alias for the `RUDDER_SET` event, and will only be used when gyro controls are enabled. | | {{< anchor id="RUDDER_TRIM_DISABLED_SET" />}}`RUDDER_TRIM_DISABLED_SET` | `KEY_RUDDER_TRIM_DISABLED_SET` | [0]: Bool | Enables (TRUE) or disables (FALSE) the rudder trim. | | {{< anchor id="RUDDER_TRIM_DISABLED_TOGGLE" />}}`RUDDER_TRIM_DISABLED_TOGGLE` | `KEY_RUDDER_TRIM_DISABLED_TOGGLE` | N/A | Toggles the rudder trim on (TRUE) or off (FALSE). | | {{< anchor id="RUDDER_TRIM_LEFT" />}}`RUDDER_TRIM_LEFT` | `KEY_RUDDER_TRIM_LEFT` | N/A | Increments rudder trim left | | {{< anchor id="RUDDER_TRIM_RESET" />}}`RUDDER_TRIM_RESET` | `KEY_RUDDER_TRIM_RESET` | N/A | Reset the rudder trim. | | {{< anchor id="RUDDER_TRIM_RIGHT" />}}`RUDDER_TRIM_RIGHT` | `KEY_RUDDER_TRIM_RIGHT` | N/A | Increments rudder trim right | | {{< anchor id="RUDDER_TRIM_SET" />}}`RUDDER_TRIM_SET` | `KEY_RUDDER_TRIM_SET` | [0]: Value | Sets the rudder trim value, between -100 and 100. | | {{< anchor id="RUDDER_TRIM_SET_EX1" />}}`RUDDER_TRIM_SET_EX1` | `KEY_RUDDER_TRIM_SET_EX1` | [0]: Value | Sets the rudder trim value, between -16383 and 16383. | {{< /table-wrapper >}} #### Slew {{< table-wrapper "colclass-3=font-size:0.75rem" "200px" "200px" "150px" "" >}} | Key Name | Event ID | Parameters | Description | |---|---|---|---| | {{< anchor id="AXIS_SLEW_AHEAD_SET" />}}`AXIS_SLEW_AHEAD_SET` | `KEY_AXIS_SLEW_AHEAD_SET` | [0]: Position (-16383 to 16384) | While in Slew mode, control the Z axis translation. | | {{< anchor id="AXIS_SLEW_ALT_SET" />}}`AXIS_SLEW_ALT_SET` | `KEY_AXIS_SLEW_ALT_SET` | [0]: Position (-16383 to 16384) | While in Slew mode, control the Y axis translation. | | {{< anchor id="AXIS_SLEW_BANK_SET" />}}`AXIS_SLEW_BANK_SET` | `KEY_AXIS_SLEW_BANK_SET` | [0]: Position (-16383 to 16384) | While in Slew mode, control the roll axis. | | {{< anchor id="AXIS_SLEW_HEADING_SET" />}}`AXIS_SLEW_HEADING_SET` | `KEY_AXIS_SLEW_HEADING_SET` | [0]: Position (-16383 to 16384) | While in Slew mode, control the yaw axis. | | {{< anchor id="AXIS_SLEW_PITCH_SET" />}}`AXIS_SLEW_PITCH_SET` | `KEY_AXIS_SLEW_PITCH_SET` | [0]: Position (-16383 to 16384) | While in Slew mode, control the pitch axis. | | {{< anchor id="AXIS_SLEW_SIDEWAYS_SET" />}}`AXIS_SLEW_SIDEWAYS_SET` | `KEY_AXIS_SLEW_SIDEWAYS_SET` | [0]: Position (-16383 to 16384) | While in Slew mode, control the X axis translation. | | {{< anchor id="SLEW_AHEAD_MINUS" />}}`SLEW_AHEAD_MINUS` | `KEY_SLEW_AHEAD_MINUS` | N/A | While in Slew mode, move the plane backwards. | | {{< anchor id="SLEW_AHEAD_PLUS" />}}`SLEW_AHEAD_PLUS` | `KEY_SLEW_AHEAD_PLUS` | N/A | While in Slew mode, move the plane forward. | | {{< anchor id="SLEW_ALTIT_DN_FAST" />}}`SLEW_ALTIT_DN_FAST` | `KEY_SLEW_ALTIT_DN_FAST` | N/A | While in Slew mode, move the plane down (fast). | | {{< anchor id="SLEW_ALTIT_DN_SLOW" />}}`SLEW_ALTIT_DN_SLOW` | `KEY_SLEW_ALTIT_DN_SLOW` | N/A | While in Slew mode, move the plane down (slow). | | {{< anchor id="SLEW_ALTIT_FREEZE" />}}`SLEW_ALTIT_FREEZE` | `KEY_SLEW_ALTIT_FREEZE` | N/A | While in Slew mode, stops the translation on the Y axis. | | {{< anchor id="SLEW_ALTIT_MINUS" />}}`SLEW_ALTIT_MINUS` | `KEY_SLEW_ALTIT_MINUS` | N/A | While in Slew mode, move the plane down. | | {{< anchor id="SLEW_ALTIT_PLUS" />}}`SLEW_ALTIT_PLUS` | `KEY_SLEW_ALTIT_PLUS` | N/A | While in Slew mode, move the plane up. | | {{< anchor id="SLEW_ALTIT_UP_FAST" />}}`SLEW_ALTIT_UP_FAST` | `KEY_SLEW_ALTIT_UP_FAST` | N/A | While in Slew mode, move the plane up (fast). | | {{< anchor id="SLEW_ALTIT_UP_SLOW" />}}`SLEW_ALTIT_UP_SLOW` | `KEY_SLEW_ALTIT_UP_SLOW` | N/A | While in Slew mode, move the plane up (slow). | | {{< anchor id="SLEW_BANK_MINUS" />}}`SLEW_BANK_MINUS` | `KEY_SLEW_BANK_MINUS` | N/A | While in Slew mode, roll the plane left. | | {{< anchor id="SLEW_BANK_PLUS" />}}`SLEW_BANK_PLUS` | `KEY_SLEW_BANK_PLUS` | N/A | While in Slew mode, roll the plane right. | | {{< anchor id="SLEW_FREEZE" />}}`SLEW_FREEZE` | `KEY_SLEW_FREEZE` | N/A | While in Slew mode, stop the translation on the X axis. | | {{< anchor id="SLEW_HEADING_MINUS" />}}`SLEW_HEADING_MINUS` | `KEY_SLEW_HEADING_MINUS` | N/A | While in Slew mode, yaw the plane left. | | {{< anchor id="SLEW_HEADING_PLUS" />}}`SLEW_HEADING_PLUS` | `KEY_SLEW_HEADING_PLUS` | N/A | While in Slew mode, yaw the plane right. | | {{< anchor id="SLEW_LEFT" />}}`SLEW_LEFT` | `KEY_SLEW_LEFT` | N/A | While in Slew mode, move the plane left. | | {{< anchor id="SLEW_OFF" />}}`SLEW_OFF` | `KEY_SLEW_OFF` | N/A | Turns Slew mode off. | | {{< anchor id="SLEW_ON" />}}`SLEW_ON` | `KEY_SLEW_ON` | N/A | Turns Slew mode on. | | {{< anchor id="SLEW_PITCH_DN_FAST" />}}`SLEW_PITCH_DN_FAST` | `KEY_SLEW_PITCH_DN_FAST` | N/A | While in Slew mode, pitch the plane down (fast). | | {{< anchor id="SLEW_PITCH_DN_SLOW" />}}`SLEW_PITCH_DN_SLOW` | `KEY_SLEW_PITCH_DN_SLOW` | N/A | While in Slew mode, pitch the plane down (slow). | | {{< anchor id="SLEW_PITCH_FREEZE" />}}`SLEW_PITCH_FREEZE` | `KEY_SLEW_PITCH_FREEZE` | N/A | While in Slew mode, stops the rotation on the X axis. | | {{< anchor id="SLEW_PITCH_MINUS" />}}`SLEW_PITCH_MINUS` | `KEY_SLEW_PITCH_MINUS` | N/A | While in Slew mode, pitch the plane down. | | {{< anchor id="SLEW_PITCH_PLUS" />}}`SLEW_PITCH_PLUS` | `KEY_SLEW_PITCH_PLUS` | N/A | While in Slew mode, pitch the plane up. | | {{< anchor id="SLEW_PITCH_UP_FAST" />}}`SLEW_PITCH_UP_FAST` | `KEY_SLEW_PITCH_UP_FAST` | N/A | While in Slew mode, pitch the aircraft up (fast). | | {{< anchor id="SLEW_PITCH_UP_SLOW" />}}`SLEW_PITCH_UP_SLOW` | `KEY_SLEW_PITCH_UP_SLOW` | N/A | While in Slew mode, pitch the aircraft up (slow). | | {{< anchor id="SLEW_RESET" />}}`SLEW_RESET` | `KEY_SLEW_RESET` | N/A | Stop slew and reset pitch, bank, and heading all to zero. | | {{< anchor id="SLEW_RIGHT" />}}`SLEW_RIGHT` | `KEY_SLEW_RIGHT` | N/A | While in Slew mode, move the aircraft right. | | {{< anchor id="SLEW_SET" />}}`SLEW_SET` | `KEY_SLEW_SET` | [0]: Bool | Sets slew on/off (1,0) | | {{< anchor id="SLEW_TOGGLE" />}}`SLEW_TOGGLE` | `KEY_SLEW_TOGGLE` | N/A | Toggles slew on/off | {{< /table-wrapper >}} #### Spoilers {{< table-wrapper "colclass-3=font-size:0.75rem" "200px" "200px" "150px" "" >}} | Key Name | Event ID | Parameters | Description | |---|---|---|---| | {{< anchor id="AXIS_SPOILER_SET" />}}`AXIS_SPOILER_SET` | `KEY_AXIS_SPOILER_SET` | [0]: Positon (0 - 1) | Sets spoiler handle position. | | {{< anchor id="SPOILERS_ARM_OFF" />}}`SPOILERS_ARM_OFF` | `KEY_SPOILERS_ARM_OFF` | N/A | Sets auto-spoiler arming off (0). | | {{< anchor id="SPOILERS_ARM_ON" />}}`SPOILERS_ARM_ON` | `KEY_SPOILERS_ARM_ON` | N/A | Sets auto-spoiler arming on (1). | | {{< anchor id="SPOILERS_ARM_SET" />}}`SPOILERS_ARM_SET` | `KEY_SPOILERS_ARM_SET` | [0]: Bool | Sets auto-spoiler arming (0,1). | | {{< anchor id="SPOILERS_ARM_TOGGLE" />}}`SPOILERS_ARM_TOGGLE` | `KEY_SPOILERS_ARM_TOGGLE` | N/A | Toggles arming of auto-spoilers between armed (1) and unarmed (0). | | {{< anchor id="SPOILERS_DEC" />}}`SPOILERS_DEC` | `KEY_SPOILERS_DEC` | N/A | Decremement the spoilers by (down to a minimum of 0). | | {{< anchor id="SPOILERS_INC" />}}`SPOILERS_INC` | `KEY_SPOILERS_INC` | N/A | Increment the spoilers by (down to a minimum of 0). | | {{< anchor id="SPOILERS_OFF" />}}`SPOILERS_OFF` | `KEY_SPOILERS_OFF` | N/A | Sets spoiler handle to full retract position. | | {{< anchor id="SPOILERS_ON" />}}`SPOILERS_ON` | `KEY_SPOILERS_ON` | N/A | Sets spoiler handle to full extend position. | | {{< anchor id="SPOILERS_RELATIVE_AXIS" />}}`SPOILERS_RELATIVE_AXIS` | `KEY_SPOILERS_RELATIVE_AXIS` | N/A | Increment or decrement the spoiler angles based on the speed and the distance of the interaction from the user device (values are clamped between 0 to 16384).**NOTE**: This is primarily for the PS5 controller touch-pad, but should work with any touch-input. | | {{< anchor id="SPOILERS_SET" />}}`SPOILERS_SET` | `KEY_SPOILERS_SET` | [0]: Position (0 to 16383) | Sets spoiler handle position. | | {{< anchor id="SPOILERS_TOGGLE" />}}`SPOILERS_TOGGLE` | `KEY_SPOILERS_TOGGLE` | N/A | Toggles spoiler handle. | {{< /table-wrapper >}} #### Concorde (Deprecated) {{< table-wrapper "colclass-3=font-size:0.75rem" "200px" "200px" "150px" "" >}} | Key Name | Event ID | Parameters | Description | |---|---|---|---| | {{< anchor id="INC_CONCORDE_NOSE_VISOR" />}}`INC_CONCORDE_NOSE_VISOR` | `KEY_INC_CONCORDE_NOSE_VISOR` | N/A | ***Not currently used in the simulation.*** | | {{< anchor id="DEC_CONCORDE_NOSE_VISOR" />}}`DEC_CONCORDE_NOSE_VISOR` | `KEY_DEC_CONCORDE_NOSE_VISOR` | N/A | ***Not currently used in the simulation.*** | | {{< anchor id="CONCORDE_NOSE_VISOR_FULL_EXT" />}}`CONCORDE_NOSE_VISOR_FULL_EXT` | `KEY_CONCORDE_NOSE_VISOR_FULL_EXT` | N/A | ***Not currently used in the simulation.*** | | {{< anchor id="CONCORDE_NOSE_VISOR_FULL_RET" />}}`CONCORDE_NOSE_VISOR_FULL_RET` | `KEY_CONCORDE_NOSE_VISOR_FULL_RET` | N/A | ***Not currently used in the simulation.*** | {{< /table-wrapper >}}