mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-20 23:01:22 +00: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
|