1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-05-10 22:34:49 -04:00
dressupzack/project/src/TitleScn.gd
Anthony Wilcox 9ba4f11a10 Use Godot's native resolution
- 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.
2019-05-04 15:59:10 -04:00

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")