This commit is contained in:
Nolan Darilek 2020-05-19 07:54:27 -05:00
commit 8b591704a3

View File

@ -32,8 +32,20 @@ public class TTS extends Godot.SingletonBase implements TextToSpeech.OnInitListe
tts.stop();
}
public void set_rate(Float rate) {
Float newRate;
if (rate <= 50)
newRate = rate / 50;
else {
newRate = rate - 50;
newRate = 1 + (newRate / 5);
}
tts.setSpeechRate(newRate);
}
public void getInstanceId(int pInstanceId) {
// You will need to call this method from Godot and pass in the get_instance_id().
// You will need to call this method from Godot and pass in the
// get_instance_id().
instanceId = pInstanceId;
}
@ -47,12 +59,7 @@ public class TTS extends Godot.SingletonBase implements TextToSpeech.OnInitListe
this.appContext = appActivity.getApplicationContext();
this.tts = new TextToSpeech(this.appContext, this);
// Register class name and functions to bind.
registerClass("AndroidTTS", new String[]
{
"speak",
"stop",
"getInstanceId"
});
registerClass("AndroidTTS", new String[] { "speak", "stop", "set_rate", "getInstanceId" });
this.activity.runOnUiThread(new Runnable() {
public void run() {
}