mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-08 06:14:48 -04:00
- 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
12 lines
352 B
GDScript
12 lines
352 B
GDScript
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():
|
|
var win_instance = coming_soon_win.instance()
|
|
add_child(win_instance)
|
|
|
|
func _on_AboutBtn_pressed():
|
|
var win_instance = about_win.instance()
|
|
add_child(win_instance)
|