mirror of
https://github.com/tonytins/citylimits
synced 2025-05-06 22:54:48 -04:00
13 lines
301 B
GDScript
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
|