godot-accessible-starter/scripts/Globals.gd

9 lines
176 B
GDScript3
Raw Normal View History

2019-09-09 20:03:48 +00:00
extends Node
const TTS = preload("res://addons/godot-tts/TTS.gd")
2019-09-09 20:03:48 +00:00
var tts
# Called when the node enters the scene tree for the first time.
func _ready():
tts = TTS.new()