mirror of
https://github.com/lightsoutgames/godot-accessibility.git
synced 2024-11-14 01:15:56 +00:00
10 lines
204 B
GDScript
10 lines
204 B
GDScript
extends Node
|
|
|
|
const TTS = preload("res://godot_tts.gdns")
|
|
var tts
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
tts = TTS.new()
|
|
tts.speak("Hello, world.", true)
|