mirror of
https://github.com/godotengine/godot.git
synced 2025-11-01 14:11:15 +00:00
18 lines
228 B
GDScript3
18 lines
228 B
GDScript3
|
|
|
||
|
|
extends Panel
|
||
|
|
|
||
|
|
# member variables here, example:
|
||
|
|
# var a=2
|
||
|
|
# var b="textvar"
|
||
|
|
|
||
|
|
func _ready():
|
||
|
|
# Initialization here
|
||
|
|
pass
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
func _on_RichTextLabel_meta_clicked( meta ):
|
||
|
|
OS.shell_open(meta)
|
||
|
|
pass # replace with function body
|