citylimits/scripts/core_gui.gd
Tony Bark e86dd64b8b Changed debug control to winodw
- Changed debug control into custom window dialog.
- Reworked "whereyoufrom" cheat
- Changed how the money cheat works
2021-05-20 22:16:43 -04:00

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()