11 lines
231 B
GDScript
11 lines
231 B
GDScript
@tool
|
|
extends EditorPlugin
|
|
|
|
|
|
func _enter_tree():
|
|
add_custom_type("BetterTabContainer", "ScrollContainer", preload("BetterTabContainer.gd"), preload("class-icon.svg"))
|
|
|
|
|
|
func _exit_tree():
|
|
remove_custom_type("BetterTabContainer")
|