mirror of
https://github.com/tonytins/citylimits
synced 2025-05-05 22:24:50 -04:00
- WIP debug/cheat console - Rewrote README - Updated Zack's avatar with something made by me
11 lines
217 B
GDScript
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()
|