Beispiel #1
0
        // 読み上げスキップ
        private void skipSpeech()
        {
            if (!this.SettingInstanse.talker || !boolTalkable || VoiceSpeech == null)
            {
                return;
            }
            boolSkipFlag = true;

            // 終わるまで待つ
            if (VoiceSpeech.Status.RunningState == SpeechRunState.SRSEIsSpeaking)
            {
                VoiceSpeech.Skip("Sentence", int.MaxValue);
                VoiceSpeech.WaitUntilDone(1000);
            }
        }