godot-accessibility/Globals.gd
Nolan Darilek 2ee04f5978 Minor changes.
* Reference godot-tts addon via `res://addons/godot-tts`.
 * Add notification handler to eventually trap window close, doesn't currently seem to work.
2019-09-07 12:26:50 -05:00

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()