Remove references to terminal.gd

This commit is contained in:
Leroy Hopson 2023-01-21 11:20:44 +13:00
parent e563a15ce2
commit 15e5b2b8c7
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA
10 changed files with 68 additions and 135 deletions

View file

@ -1,7 +1,5 @@
@tool
extends "res://addons/godot_xterm/terminal.gd"
signal theme_changed
extends Terminal
func _ready():
@ -24,10 +22,3 @@ func _ready():
write("\u001b[1mL\u001b[0m") # Bold.
write("\u001b[3mL\u001b[0m") # Italic.
write("\u001b[1m\u001b[3mL\u001b[0m") # Bold Italic.
func _notification(what):
super._notification(what)
match what:
NOTIFICATION_THEME_CHANGED:
call_deferred("emit_signal", "theme_changed")