mirror of
https://github.com/lightsoutgames/godot-accessible-starter.git
synced 2024-11-12 18:15:56 +00:00
9 lines
184 B
GDScript
9 lines
184 B
GDScript
extends Node
|
|
|
|
const TTS = preload("res://addons/godot-tts/godot-tts.gdns")
|
|
var tts
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
tts = TTS.new()
|