mirror of
https://github.com/tonytins/godotstarter.git
synced 2025-03-20 16:41:27 +00:00
6 lines
147 B
GDScript3
6 lines
147 B
GDScript3
|
extends "res://src/GameKit.gd"
|
||
|
|
||
|
func _process(delta):
|
||
|
if Input.is_action_pressed("ui_pause"):
|
||
|
is_game_paused(true)
|
||
|
$WinDialogs/PauseWin.show()
|