mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-10 22:34:49 -04:00
- Redid the wordrobe background which finally gives a chance to use Godot's native resolution, allowing for more screen real estate, and add more items. - Removed the Classic option. It may return in the future.
18 lines
456 B
GDScript
18 lines
456 B
GDScript
# Anthony Wilcox licenses this file to you under the GPL license.
|
|
# See the LICENSE file in the project root for more information.
|
|
extends "res://src/GameKit.gd"
|
|
|
|
func _on_ClassicBtn_pressed():
|
|
switch_scenes("classic")
|
|
|
|
func _on_ModernBtn_pressed():
|
|
switch_scenes("modern")
|
|
|
|
func _on_CreditsBtn_pressed():
|
|
$WinDialogs/CreditsWin.show()
|
|
|
|
func _on_LicenseBtn_pressed():
|
|
$WinDialogs/LicenseWin.show()
|
|
|
|
func _on_PlayBtn_pressed():
|
|
switch_scenes("modern")
|