frame-of-mind/src/addons/markdownlabel/example.gd

10 lines
322 B
GDScript3
Raw Normal View History

2024-10-07 09:10:58 +00:00
extends Control
func _ready() -> void:
$MarkdownLabel.display_file("res://addons/markdownlabel/README.md")
$MarkdownLabel.task_checkbox_clicked.connect(
func(id: int, line: int, checked: bool, text: String) -> void:
print("%s task #%d on line %d: %s" % ["Checked" if checked else "Unchecked", id, line, text])
)