added cvars to menu

This commit is contained in:
Ryan 2023-09-14 16:17:12 -04:00
commit 78ef368377

View file

@ -460,6 +460,12 @@ void DrawSettingsMenu() {
#endif #endif
UIWidgets::PaddedEnhancementCheckbox("Disable Idle Camera Re-Centering", "gA11yDisableIdleCam"); UIWidgets::PaddedEnhancementCheckbox("Disable Idle Camera Re-Centering", "gA11yDisableIdleCam");
UIWidgets::Tooltip("Disables the automatic re-centering of the camera when idle."); UIWidgets::Tooltip("Disables the automatic re-centering of the camera when idle.");
UIWidgets::PaddedEnhancementCheckbox("Accessible Audio Cues", "gA11yAudioInteraction");
UIWidgets::Tooltip("Enables accessibility audio cues");
UIWidgets::PaddedEnhancementCheckbox("Extract Sfx", "gExtractSfx");
UIWidgets::Tooltip("Extracts the sfx to be used in accessible audio cues, must be run once for the audio cues to play then restart game");
ImGui::EndMenu(); ImGui::EndMenu();
} }