give/give_mainwindow.gd

10 lines
208 B
GDScript3
Raw Permalink Normal View History

2023-01-04 14:13:41 -05:00
extends Control
var mtext:RichTextLabel
var ttext:RichTextLabel
func _ready():
#TODO: Add ink ready function
mtext=get_node("Panel/MainText")
ttext=get_node("Panel2/TitleText")
func _process(delta):
pass