summaryrefslogtreecommitdiff
path: root/scripts/Console.gd
diff options
context:
space:
mode:
authorAnson Bridges <bridges.anson@gmail.com>2022-09-02 23:12:33 -0700
committerAnson Bridges <bridges.anson@gmail.com>2022-09-02 23:12:33 -0700
commit4d51178d32e07c070c61aa7567856bec7eda3639 (patch)
tree7ef4884dd2221340f9c1ed96bd0f52c761ae9fb0 /scripts/Console.gd
parent0939d84e611f1c63fd5805339a2f777251fb1653 (diff)
hit/killsounds, swimming, main menu, fixed explosion physics
Diffstat (limited to 'scripts/Console.gd')
-rw-r--r--scripts/Console.gd14
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/Console.gd b/scripts/Console.gd
deleted file mode 100644
index ac73525..0000000
--- a/scripts/Console.gd
+++ /dev/null
@@ -1,14 +0,0 @@
-extends ScrollContainer
-
-# Called when the node enters the scene tree for the first time.
-func _ready():
- pass
-
-func add_line(text):
- var lbl = Label.new()
- lbl.autowrap = true
- lbl.text = text
- text = ""
- $ConsoleLines.add_child(lbl)
- yield(get_tree().create_timer(0.05), "timeout")
- ensure_control_visible(lbl)