14 lines
207 B
GDScript
14 lines
207 B
GDScript
|
|
@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
|