2019-09-09 20:03:48 +00:00
|
|
|
extends Node
|
|
|
|
|
2019-09-13 14:34:45 +00:00
|
|
|
const TTS = preload("res://addons/godot-tts/godot-tts.gdns")
|
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()
|