10 lines
208 B
GDScript3
10 lines
208 B
GDScript3
|
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
|