mirror of
https://github.com/tonytins/godotstarter.git
synced 2025-03-25 02:39:11 +00:00
21 lines
No EOL
396 B
GDScript
21 lines
No EOL
396 B
GDScript
extends Control
|
|
|
|
func _on_ExitBtn_pressed():
|
|
GameKit.is_game_paused(false)
|
|
GameKit.switch_scenes("title")
|
|
|
|
func _on_SettingsBtn_pressed():
|
|
$SettingsWin.show()
|
|
|
|
func _on_CreditsBtn_pressed():
|
|
$CreditsWin.show()
|
|
|
|
func _on_LicenseBtn_pressed():
|
|
$LicenseWin.show()
|
|
|
|
func _on_CloseAbtBtn_pressed():
|
|
$AboutWin.hide()
|
|
|
|
func _on_ResumeBtn_pressed():
|
|
$PauseWin.hide()
|
|
GameKit.is_game_paused(false) |