Esempio n. 1
0
    public void UpdateMonoStereoDisplay()
    {
        string status = (this.monoStereoSwitcher.stereoActivated) ? "Estéreo" : "Mono";

        monoStereoDisplay.text = status;
        monoStereoAltText.ChangeAltTextAndNotifyPanel("Botón: Cambiar modo de audio. Actual: " + status);
    }
Esempio n. 2
0
    public void UpdateSonarDisplay()
    {
        string status = (sonarSwitcher.sonarActivated) ? "Activado" : "Desactivado";

        sonarDisplay.text = status;
        sonarAltText.ChangeAltTextAndNotifyPanel("Botón: Alternar sónar. Actual: " + status);
    }
Esempio n. 3
0
    public void UpdateSubtitlesDisplay()
    {
        string status = (SubtitleManager.AreSubtitlesEnabled()) ? "Activados" : "No activados";

        subtitlesDisplay.text = status;
        subtitlesAltText.ChangeAltTextAndNotifyPanel("Botón: Alternar subtítulos. Actual: " + status);
    }
Esempio n. 4
0
    public void UpdateLongPressDisplay()
    {
        string status = (this.longPressDurationManager.longerPress) ? "1000" : "500";

        longPressDisplay.text = status + " ms";
        longPressAltText.ChangeAltTextAndNotifyPanel("Botón: Cambiar duración de pulsado largo. Actual: " + status + " milisegundos");
    }
Esempio n. 5
0
    public void UpdateGameAreaDisplay()
    {
        string status = (this.gameAreaManager.reducedArea) ? "Estrecha" : "Amplia";

        gameAreaDisplay.text = status;
        gameAreaAltText.ChangeAltTextAndNotifyPanel("Botón: Cambiar amplitud de zona de juego. Actual: " + status);
    }
Esempio n. 6
0
    public void UpdateGameSpeedDisplay()
    {
        string status = (this.gameSpeedManager.reducedSpeedModeActivated) ? "Reducida" : "Normal";

        gameSpeedDisplay.text = status;
        gameSpeedAltText.ChangeAltTextAndNotifyPanel("Botón: Cambiar velocidad del juego. Actual: " + status);
    }
Esempio n. 7
0
    public void UpdateHighContrastDisplay()
    {
        string status = (this.highContrastModeManager.highContrastModeEnabled) ? "Activado" : "No activado";

        highContrastDisplay.text = status;
        highContrastAltText.ChangeAltTextAndNotifyPanel("Botón: Alternar modo de alto contraste. Actual: " + status);
    }
Esempio n. 8
0
    public void UpdateSweepModeDisplay()
    {
        string status = (this.menuManager.sweepModeEnabled) ? "Activado" : "No activado";

        this.ttsEnabled       = this.menuManager.focusMode || this.menuManager.sweepModeEnabled;
        sweepModeDisplay.text = status;
        sweepModeAltText.ChangeAltTextAndNotifyPanel("Botón: Alternar modo de navegación por barrido. Actual: " + status);
    }
Esempio n. 9
0
    public void UpdateFocusModeDisplay()
    {
        string status = (this.menuManager.focusMode) ? "Activado" : "No activado";

        this.ttsEnabled       = this.menuManager.focusMode || this.menuManager.sweepModeEnabled; // options' menu local TTS will be ON if either the focus or sweep modes are enabled.
        focusModeDisplay.text = status;
        focusModeAltText.ChangeAltTextAndNotifyPanel("Botón: Alternar modo de navegación por foco. Actual: " + status);
    }