mirror of
https://github.com/Relintai/broken_seals_2d.git
synced 2024-11-11 20:35:10 +01:00
11 lines
233 B
GDScript3
11 lines
233 B
GDScript3
|
tool
|
||
|
extends EditorPlugin
|
||
|
|
||
|
var SimpleTile = preload("res://addons/tile_generator/smple_tile.gd")
|
||
|
|
||
|
func _enter_tree():
|
||
|
add_custom_type("SimpleTile", "Resource", SimpleTile, null)
|
||
|
|
||
|
func _exit_tree():
|
||
|
remove_custom_type("SimpleTile")
|