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