1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-07-03 03:24:44 -04:00

New underwear and varies internal tweaks

- New item for both modes: fundosi. This will be last new item in Classic mode due to the limitions in how it was designed.
- Certain assets for Classic mode have moved to the /classic directory.
- New accessories layor in Modern mode. The camera item to return. However, I had to get rid of the Clear [all] button.
- WinDialogs and GameKit are now autoloaded.
- StartScn was renamed to TitleScn.
- The boot splash (formally the game splash) is now transparent in order to let the game engine provide the background color.
This commit is contained in:
Anthony Wilcox 2019-01-05 21:45:27 -05:00
parent 67dac38ded
commit 248d8b2eb9
28 changed files with 371 additions and 135 deletions

View file

@ -13,5 +13,5 @@ func switch_scenes(new_mode):
get_tree().change_scene("res://ClassicScn.tscn")
elif new_mode == "modern":
get_tree().change_scene("res://ModernScn.tscn")
elif new_mode == "start":
get_tree().change_scene("res://StartScn.tscn")
elif new_mode == "title":
get_tree().change_scene("res://TitleScn.tscn")