hadean-godot/addons/tile_helper/TileHelper.gd

14 lines
207 B
GDScript
Raw Normal View History

2024-05-13 18:16:23 -04:00
@tool
extends EditorPlugin
func _handles(object):
return object is Tile
func _enter_tree():
# Initialization of the plugin goes here.
pass
func _exit_tree():
# Clean-up of the plugin goes here.
pass