mirror of
https://github.com/lihop/godot-xterm.git
synced 2024-11-10 04:40:25 +01:00
15 lines
292 B
GDScript3
15 lines
292 B
GDScript3
|
tool
|
||
|
extends EditorPlugin
|
||
|
|
||
|
|
||
|
func _enter_tree():
|
||
|
var script = preload("res://addons/godot_xterm/terminal.gd")
|
||
|
var texture = preload("res://addons/godot_xterm/icon.svg")
|
||
|
add_custom_type("Terminal", "Control", script, texture)
|
||
|
pass
|
||
|
|
||
|
|
||
|
func _exit_tree():
|
||
|
remove_custom_type("Terminal")
|
||
|
pass
|