10 lines
211 B
GDScript
10 lines
211 B
GDScript
extends RichTextLabel
|
|
|
|
|
|
# Called when the node enters the scene tree for the first time.
|
|
func _ready():
|
|
bbcode_text += Engine.get_license_text()
|
|
|
|
|
|
func _on_Credits_meta_clicked(meta):
|
|
OS.shell_open(str(meta))
|