This repository has been archived on 2022-01-09. You can view files and clone it, but cannot push or open issues/pull-requests.
liblast/Game/addons/Trail/plugin.gd

13 lines
404 B
GDScript

tool
extends EditorPlugin
func _enter_tree():
add_custom_type("Trail3D","ImmediateGeometry",preload("res://addons/Trail/trail_3d.gd"),preload("res://addons/Trail/trail3d_icon.svg"))
add_custom_type("Trail2D","Line2D",preload("res://addons/Trail/trail_2d.gd"),preload("res://addons/Trail/trail2d_icon.svg"))
pass
func _exit_tree():
remove_custom_type("Trail3D")
remove_custom_type("Trail2D")
pass