7 lines
118 B
GDScript
7 lines
118 B
GDScript
extends RichTextLabel
|
|
|
|
|
|
func _ready():
|
|
var f = File.new()
|
|
f.open("res://COPYING",File.READ)
|
|
text = f.get_as_text()
|