godot-accessible-starter/scripts/Globals.gd

9 lines
176 B
GDScript

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