mirror of
https://github.com/lightsoutgames/godot-accessibility.git
synced 2024-11-14 01:15:56 +00:00
Nolan Darilek
2ee04f5978
* Reference godot-tts addon via `res://addons/godot-tts`. * Add notification handler to eventually trap window close, doesn't currently seem to work.
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()
|