From 0c9efa5c7b088de582e0c3a30d85ed70b027d2e7 Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Tue, 29 Sep 2020 10:56:32 -0500 Subject: [PATCH] Minor convention cleanup. --- TTS.gd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/TTS.gd b/TTS.gd index 0339518..b84c855 100644 --- a/TTS.gd +++ b/TTS.gd @@ -142,7 +142,7 @@ func stop(): JavaScript.eval("window.speechSynthesis.cancel()") -func get_is_rate_supported(): +func _get_is_rate_supported(): if Engine.has_singleton("GodotTTS"): return true elif OS.has_feature('JavaScript'): @@ -153,7 +153,7 @@ func get_is_rate_supported(): return false -var is_rate_supported setget , get_is_rate_supported +var is_rate_supported setget , _get_is_rate_supported func _get_are_utterance_callbacks_supported():