mirror of
https://github.com/tonytins/citylimits.git
synced 2025-03-20 23:01:22 +00:00
- Changed debug control into custom window dialog. - Reworked "whereyoufrom" cheat - Changed how the money cheat works
12 lines
268 B
GDScript
12 lines
268 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_pressed("ui_cheats"):
|
|
debug_console.show()
|