1
0
mirror of https://github.com/lightsoutgames/godot-tts synced 2025-04-13 11:25:57 +00:00

Clean up TTS on exit.

This commit is contained in:
Nolan Darilek 2019-12-22 18:09:40 -06:00
parent 6d4cbb1b9d
commit e02e1dd2b8

3
TTS.gd
View File

@ -47,3 +47,6 @@ func singular_or_plural(count, singular, plural):
return singular
else:
return plural
func _exit_tree():
tts.free()