diff options
Diffstat (limited to 'demos/gui/rich_text_bbcode/rich_text_bbcode.gd')
-rw-r--r-- | demos/gui/rich_text_bbcode/rich_text_bbcode.gd | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/demos/gui/rich_text_bbcode/rich_text_bbcode.gd b/demos/gui/rich_text_bbcode/rich_text_bbcode.gd new file mode 100644 index 0000000000..30fac1f729 --- /dev/null +++ b/demos/gui/rich_text_bbcode/rich_text_bbcode.gd @@ -0,0 +1,17 @@ + +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 |