citylimits/scripts/core_gui.gd
Tony Bark 59ea5dd6f0 Advisor dialogs
- WIP debug/cheat console
- Rewrote README
- Updated Zack's avatar with something made by me
2021-05-20 18:17:44 -04:00

11 lines
217 B
GDScript

extends Control
onready var debug_console = $Console
onready var advisor = $AdvsiorNotice
func _ready():
advisor.show()
func _process(delta):
if Input.is_action_just_released("ui_cheats"):
debug_console.show()