citylimits/scripts/core_gui.gd
2021-05-20 21:25:41 -04:00

13 lines
301 B
GDScript

extends Control
onready var debug_console = $Console
onready var advisor = $AdvsiorNotice
# onready var news_ticker = $TickerPanel/ScrollContainer
func _ready():
advisor.show()
func _process(delta):
if Input.is_action_just_released("ui_cheats"):
debug_console.show()
get_tree().paused = true