13 lines
226 B
GDScript
13 lines
226 B
GDScript
@tool
|
|
extends EditorPlugin
|
|
|
|
|
|
func _enter_tree() -> void:
|
|
# This is where we should initialise options for showing bug markers
|
|
pass
|
|
|
|
|
|
func _exit_tree() -> void:
|
|
# This is where we should remove any visible bug markers
|
|
pass
|