2021-05-28 21:01:56 +00:00
|
|
|
extends Node2D
|
2022-10-13 15:35:43 +00:00
|
|
|
const game_variables = "res://MiscScenes/GameVariables.tscn"
|
2021-05-28 21:01:56 +00:00
|
|
|
|
|
|
|
func RenderSpeech(load_on, text):
|
2021-09-04 15:29:04 +00:00
|
|
|
var speech = preload("res://MiscScenes/Speech.tscn").instance()
|
2021-05-28 21:01:56 +00:00
|
|
|
speech.bubble_text = text
|
|
|
|
speech.set_position(Vector2(0,-40))
|
2021-06-04 20:57:48 +00:00
|
|
|
load_on.add_child(speech)
|
2022-10-11 17:21:46 +00:00
|
|
|
|
|
|
|
func SoundOnInteraction(load_on, sound_name):
|
2022-10-13 15:35:43 +00:00
|
|
|
var audio = preload(game_variables).instance()
|
|
|
|
audio.get_node("Sound").stream = load("res://Sounds/%s.wav" % sound_name)
|
2022-10-11 17:21:46 +00:00
|
|
|
load_on.add_child(audio)
|
2022-10-13 15:09:42 +00:00
|
|
|
Global.Log("Sound playing "+sound_name, 1)
|