whydt/addons/markdown_text_edit/plugin.gd
2025-06-30 23:50:48 +02:00

15 lines
299 B
GDScript

@tool
extends EditorPlugin
func _enter_tree() -> void:
# Initialization of the plugin goes here.
add_custom_type("MarkdownTextEdit", "TextEdit", preload("markdown_text_edit.gd"), null)
func _exit_tree() -> void:
# Clean-up of the plugin goes here.
remove_custom_type("MarkdownTextEdit")