1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-12-19 13:14:43 -05:00

Removed unused assets

- Removed some unsued assets from the original second version
- Added window control from Project 64 and made it more customizable
- Added a Coming Soon and About window
- Redid the interface and removed the Sixam logo, for now
This commit is contained in:
Anthony Wilcox 2018-12-30 20:07:44 -05:00
parent 15c32ec7c9
commit e5db016ba1
18 changed files with 287 additions and 221 deletions

View file

@ -1,7 +1,12 @@
extends Control
onready var coming_soon_win = preload("res://windows/ComingSoon.tscn")
onready var about_win = preload("res://windows/About.tscn")
func _on_ScreenshotBtn_pressed():
pass
var win_instance = coming_soon_win.instance()
add_child(win_instance)
func _on_AboutBtn_pressed():
pass
var win_instance = about_win.instance()
add_child(win_instance)