1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-05-08 06:14:48 -04:00

Start screen

- Created a start screen with the game title in order to switch between Modern and Classic modes. I moved the credits and license buttons out of the About window and into this screen. The About window itself is gona now since it kinda redundant, anyway.
This commit is contained in:
Anthony Wilcox 2019-01-05 09:17:59 -05:00
parent 268ea21dab
commit b85ee22101
26 changed files with 591 additions and 253 deletions

1
.gitignore vendored
View file

@ -7,6 +7,7 @@
.import/
export.cfg
export_presets.cfg
*.log
# Mono-specific ignores
.mono/

View file

@ -55,7 +55,7 @@ size_flags_horizontal = 1
size_flags_vertical = 1
alignment = 0
[node name="ModernBtn" type="Button" parent="RefRect/VertContainer" index="0"]
[node name="ExitBtn" type="Button" parent="RefRect/VertContainer" index="0"]
anchor_left = 0.0
anchor_top = 0.0
@ -74,7 +74,7 @@ toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
text = "Modern"
text = "KEXT"
flat = false
align = 1
@ -102,37 +102,10 @@ text = "KSET"
flat = false
align = 1
[node name="AboutBtn" type="Button" parent="RefRect/VertContainer" index="2"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 48.0
margin_right = 147.0
margin_bottom = 68.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
focus_mode = 2
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
text = "KABO"
flat = false
align = 1
_sections_unfolded = [ "Margin" ]
[node name="WinDialogs" parent="." index="1" instance=ExtResource( 2 )]
[connection signal="pressed" from="RefRect/VertContainer/ModernBtn" to="." method="_on_ModernBtn_pressed"]
[connection signal="pressed" from="RefRect/VertContainer/ExitBtn" to="." method="_on_ExitBtn_pressed"]
[connection signal="pressed" from="RefRect/VertContainer/SettingsBtn" to="." method="_on_SettingsBtn_pressed"]
[connection signal="pressed" from="RefRect/VertContainer/AboutBtn" to="." method="_on_AboutBtn_pressed"]

View file

@ -1,11 +1,13 @@
[gd_scene load_steps=7 format=2]
[ext_resource path="res://src/GameScreen.gd" type="Script" id=1]
[ext_resource path="res://assets/dress_up_bg.png" type="Texture" id=2]
[ext_resource path="res://assets/classic_dress_up_bg.png" type="Texture" id=2]
[ext_resource path="res://assets/lights.png" type="Texture" id=3]
[ext_resource path="res://Zack.tscn" type="PackedScene" id=4]
[ext_resource path="res://ClassicClothes.tscn" type="PackedScene" id=5]
[ext_resource path="res://ClassicInterface.tscn" type="PackedScene" id=6]
[ext_resource path="res://ClassicGUI.tscn" type="PackedScene" id=6]
[node name="GameScreen" type="Node"]

View file

@ -3,7 +3,7 @@
[ext_resource path="res://src/Interface.gd" type="Script" id=1]
[ext_resource path="res://WinDialogs.tscn" type="PackedScene" id=2]
[node name="Interface" type="Control" index="0"]
[node name="Interface" type="Control"]
anchor_left = 0.0
anchor_top = 0.0
@ -44,7 +44,9 @@ anchor_left = 0.0
anchor_top = 0.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_right = -20.0
margin_left = 10.0
margin_top = 2.0
margin_right = -10.0
margin_bottom = -6.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
@ -55,14 +57,14 @@ size_flags_vertical = 1
alignment = 0
_sections_unfolded = [ "Margin" ]
[node name="ClassicBtn" type="Button" parent="GMRefRect/GMenuHbox" index="0"]
[node name="ExitBtn" type="Button" parent="GMRefRect/GMenuHbox" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 42.0
margin_bottom = 22.0
margin_bottom = 20.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
focus_mode = 2
@ -78,7 +80,7 @@ toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
text = "KCLS"
text = "KEXT"
flat = true
align = 1
_sections_unfolded = [ "custom_colors", "custom_constants" ]
@ -91,7 +93,7 @@ anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 46.0
margin_right = 87.0
margin_bottom = 22.0
margin_bottom = 20.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
focus_mode = 2
@ -112,41 +114,10 @@ flat = true
align = 1
_sections_unfolded = [ "custom_colors" ]
[node name="AboutBtn" type="Button" parent="GMRefRect/GMenuHbox" index="2"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 91.0
margin_right = 140.0
margin_bottom = 22.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
focus_mode = 2
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
custom_colors/font_color_disabled = Color( 0, 0, 0, 1 )
custom_colors/font_color = Color( 0, 0, 0, 1 )
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
text = "KABO"
flat = true
align = 1
_sections_unfolded = [ "Margin", "custom_colors" ]
[node name="WinDialogs" parent="." index="1" instance=ExtResource( 2 )]
[connection signal="pressed" from="GMRefRect/GMenuHbox/ClassicBtn" to="." method="_on_ClassicBtn_pressed"]
[connection signal="pressed" from="GMRefRect/GMenuHbox/ExitBtn" to="." method="_on_ExitBtn_pressed"]
[connection signal="pressed" from="GMRefRect/GMenuHbox/SettingsBtn" to="." method="_on_SettingsBtn_pressed"]
[connection signal="pressed" from="GMRefRect/GMenuHbox/AboutBtn" to="." method="_on_AboutBtn_pressed"]

View file

@ -1,13 +1,13 @@
[gd_scene load_steps=7 format=2]
[ext_resource path="res://src/GameScreen.gd" type="Script" id=1]
[ext_resource path="res://assets/15_dress_up_bg.png" type="Texture" id=2]
[ext_resource path="res://assets/modern_dress_up_bg.png" type="Texture" id=2]
[ext_resource path="res://assets/icrazy_frame.png" type="Texture" id=3]
[ext_resource path="res://Zack.tscn" type="PackedScene" id=4]
[ext_resource path="res://Clothes.tscn" type="PackedScene" id=5]
[ext_resource path="res://Interface.tscn" type="PackedScene" id=6]
[ext_resource path="res://GUI.tscn" type="PackedScene" id=6]
[node name="GameScreen" type="Node" index="0"]
[node name="GameScreen" type="Node"]
script = ExtResource( 1 )

286
project/StartScn.tscn Normal file
View file

@ -0,0 +1,286 @@
[gd_scene load_steps=7 format=2]
[ext_resource path="res://src/StartScn.gd" type="Script" id=1]
[ext_resource path="res://assets/modern_dress_up_blurred_bg.png" type="Texture" id=2]
[ext_resource path="res://assets/dressup_blurred_wardrobe.png" type="Texture" id=3]
[ext_resource path="res://assets/classic_dress_up_blurred_bg.png" type="Texture" id=4]
[ext_resource path="res://assets/dressup_title.svg" type="Texture" id=5]
[ext_resource path="res://WinDialogs.tscn" type="PackedScene" id=6]
[node name="Start" type="Node" index="0"]
script = ExtResource( 1 )
[node name="ModernBG" type="Sprite" parent="." index="0"]
position = Vector2( 400, 277 )
texture = ExtResource( 2 )
__meta__ = {
"_edit_lock_": true
}
[node name="WordrobeBG" type="Sprite" parent="." index="1"]
position = Vector2( 492.609, 280.27 )
texture = ExtResource( 3 )
__meta__ = {
"_edit_lock_": true
}
[node name="ClassicBG" type="Sprite" parent="." index="2"]
visible = false
position = Vector2( 400, 277 )
texture = ExtResource( 4 )
__meta__ = {
"_edit_lock_": true
}
[node name="GameTitle" type="Sprite" parent="." index="3"]
position = Vector2( 489.565, 100.74 )
texture = ExtResource( 5 )
__meta__ = {
"_edit_lock_": true
}
[node name="MenuRf" type="ReferenceRect" parent="." index="4"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 221.0
margin_top = 147.0
margin_right = 762.0
margin_bottom = 462.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
[node name="StartVbox" type="VBoxContainer" parent="MenuRf" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 14.0
margin_top = 14.0
margin_right = 150.0
margin_bottom = 99.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 1
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
alignment = 0
[node name="PlayBtn" type="Button" parent="MenuRf/StartVbox" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 136.0
margin_bottom = 20.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
focus_mode = 2
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
toggle_mode = true
enabled_focus_mode = 2
shortcut = null
group = null
text = "KPLY"
flat = false
align = 1
[node name="CreditsBtn" type="Button" parent="MenuRf/StartVbox" index="1"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 24.0
margin_right = 136.0
margin_bottom = 44.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
focus_mode = 2
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
text = "KCRE"
flat = false
align = 1
[node name="LicenseBtn" type="Button" parent="MenuRf/StartVbox" index="2"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 48.0
margin_right = 136.0
margin_bottom = 68.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
focus_mode = 2
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
text = "KLIC"
flat = false
align = 1
[node name="ModePanel" type="Panel" parent="MenuRf" index="1"]
visible = false
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 168.0
margin_top = 14.0
margin_right = 314.0
margin_bottom = 106.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
[node name="PlayVbox" type="VBoxContainer" parent="MenuRf/ModePanel" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 5.0
margin_top = 5.0
margin_right = -5.0
margin_bottom = -5.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 1
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
alignment = 0
_sections_unfolded = [ "Margin" ]
__meta__ = {
"_edit_lock_": true
}
[node name="ModeLbl" type="Label" parent="MenuRf/ModePanel/PlayVbox" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_right = 136.0
margin_bottom = 14.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 2
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 4
text = "KGMO"
align = 1
percent_visible = 1.0
lines_skipped = 0
max_lines_visible = -1
__meta__ = {
"_edit_lock_": true
}
[node name="ModernBtn" type="Button" parent="MenuRf/ModePanel/PlayVbox" index="1"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 18.0
margin_right = 136.0
margin_bottom = 38.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
focus_mode = 2
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
text = "Modern"
flat = false
align = 1
__meta__ = {
"_edit_lock_": true
}
[node name="ClassicBtn" type="Button" parent="MenuRf/ModePanel/PlayVbox" index="2"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_top = 42.0
margin_right = 136.0
margin_bottom = 62.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
focus_mode = 2
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
text = "KCLS"
flat = false
align = 1
__meta__ = {
"_edit_lock_": true
}
[node name="WinDialogs" parent="." index="5" instance=ExtResource( 6 )]
[connection signal="toggled" from="MenuRf/StartVbox/PlayBtn" to="." method="_on_PlayBtn_toggled"]
[connection signal="pressed" from="MenuRf/StartVbox/CreditsBtn" to="." method="_on_CreditsBtn_pressed"]
[connection signal="pressed" from="MenuRf/StartVbox/LicenseBtn" to="." method="_on_LicenseBtn_pressed"]
[connection signal="pressed" from="MenuRf/ModePanel/PlayVbox/ModernBtn" to="." method="_on_ModernBtn_pressed"]
[connection signal="mouse_entered" from="MenuRf/ModePanel/PlayVbox/ClassicBtn" to="." method="_on_ClassicBtn_mouse_entered"]
[connection signal="mouse_exited" from="MenuRf/ModePanel/PlayVbox/ClassicBtn" to="." method="_on_ClassicBtn_mouse_exited"]
[connection signal="pressed" from="MenuRf/ModePanel/PlayVbox/ClassicBtn" to="." method="_on_ClassicBtn_pressed"]

View file

@ -3,7 +3,7 @@
[ext_resource path="res://src/WinDialogs.gd" type="Script" id=1]
[ext_resource path="res://music/song.ogg" type="AudioStream" id=2]
[node name="WinDialogs" type="Control"]
[node name="WinDialogs" type="Control" index="0"]
anchor_left = 0.0
anchor_top = 0.0
@ -26,163 +26,8 @@ autoplay = false
mix_target = 0
bus = "Master"
[node name="AboutWin" type="WindowDialog" parent="." index="1"]
[node name="CreditsWin" type="AcceptDialog" parent="." index="1"]
editor/display_folded = true
visible = false
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 199.0
margin_top = 229.0
margin_right = 620.0
margin_bottom = 301.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
popup_exclusive = false
window_title = "KABO"
resizable = false
_sections_unfolded = [ "Dialog", "Rect" ]
[node name="AboutRefRect" type="ReferenceRect" parent="AboutWin" index="1"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 1.0
anchor_bottom = 1.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
[node name="AboutTxt" type="RichTextLabel" parent="AboutWin/AboutRefRect" index="0"]
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = -415.0
margin_top = -68.0
margin_right = -5.0
margin_bottom = -34.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = true
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
bbcode_enabled = false
bbcode_text = ""
visible_characters = -1
percent_visible = 1.0
meta_underlined = true
tab_size = 4
text = "Zack's Dress Up is a dress up game created by Anthony Wilcox."
scroll_active = false
scroll_following = false
selection_enabled = false
override_selected_font_color = false
_sections_unfolded = [ "Anchor", "Margin", "Rect" ]
[node name="AboutBtnHBox" type="HBoxContainer" parent="AboutWin/AboutRefRect" index="1"]
anchor_left = 0.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_top = -28.0
margin_bottom = -8.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
mouse_filter = 1
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
alignment = 1
_sections_unfolded = [ "Margin", "Rect" ]
[node name="LicenseBtn" type="Button" parent="AboutWin/AboutRefRect/AboutBtnHBox" index="0"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 150.0
margin_right = 190.0
margin_bottom = 20.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
focus_mode = 2
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
text = "KLIC"
flat = false
align = 1
[node name="CreditsBtn" type="Button" parent="AboutWin/AboutRefRect/AboutBtnHBox" index="1"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 194.0
margin_right = 237.0
margin_bottom = 20.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
focus_mode = 2
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
text = "KCRE"
flat = false
align = 1
[node name="CloseAbtBtn" type="Button" parent="AboutWin/AboutRefRect/AboutBtnHBox" index="2"]
anchor_left = 0.0
anchor_top = 0.0
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 241.0
margin_right = 271.0
margin_bottom = 20.0
rect_pivot_offset = Vector2( 0, 0 )
rect_clip_content = false
focus_mode = 2
mouse_filter = 0
mouse_default_cursor_shape = 0
size_flags_horizontal = 1
size_flags_vertical = 1
toggle_mode = false
enabled_focus_mode = 2
shortcut = null
group = null
text = "Ok"
flat = false
align = 1
[node name="CreditsWin" type="AcceptDialog" parent="." index="2"]
editor/display_folded = true
visible = false
anchor_left = 0.0
anchor_top = 0.0
@ -257,7 +102,7 @@ selection_enabled = true
override_selected_font_color = false
_sections_unfolded = [ "BBCode" ]
[node name="SettingsWin" type="AcceptDialog" parent="." index="3"]
[node name="SettingsWin" type="AcceptDialog" parent="." index="2"]
editor/display_folded = true
visible = false
@ -349,7 +194,7 @@ text = "KMUS"
flat = false
align = 1
[node name="LicenseWin" type="AcceptDialog" parent="." index="4"]
[node name="LicenseWin" type="AcceptDialog" parent="." index="3"]
editor/display_folded = true
visible = false
@ -430,12 +275,6 @@ selection_enabled = false
override_selected_font_color = false
_sections_unfolded = [ "BBCode" ]
[connection signal="pressed" from="AboutWin/AboutRefRect/AboutBtnHBox/LicenseBtn" to="." method="_on_LicenseBtn_pressed"]
[connection signal="pressed" from="AboutWin/AboutRefRect/AboutBtnHBox/CreditsBtn" to="." method="_on_CreditsBtn_pressed"]
[connection signal="pressed" from="AboutWin/AboutRefRect/AboutBtnHBox/CloseAbtBtn" to="." method="_on_CloseAbtBtn_pressed"]
[connection signal="toggled" from="SettingsWin/Grid/MusicBtn" to="." method="_on_MusicBtn_toggled"]

View file

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -0,0 +1,29 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/classic_dress_up_bg.png-1b33be640efcffd8de2c8f6fcb93e744.stex"
[deps]
source_file="res://assets/classic_dress_up_bg.png"
dest_files=[ "res://.import/classic_dress_up_bg.png-1b33be640efcffd8de2c8f6fcb93e744.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

Binary file not shown.

After

Width:  |  Height:  |  Size: 43 KiB

View file

@ -0,0 +1,29 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/classic_dress_up_blurred_bg.png-b938f8959e4f1478acf80be0ecd0cbcb.stex"
[deps]
source_file="res://assets/classic_dress_up_blurred_bg.png"
dest_files=[ "res://.import/classic_dress_up_blurred_bg.png-b938f8959e4f1478acf80be0ecd0cbcb.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View file

@ -0,0 +1,29 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/dressup_blurred_wardrobe.png-9f23933ae37429abefcdd1b04d488722.stex"
[deps]
source_file="res://assets/dressup_blurred_wardrobe.png"
dest_files=[ "res://.import/dressup_blurred_wardrobe.png-9f23933ae37429abefcdd1b04d488722.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

View file

@ -0,0 +1,122 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="126.30465mm"
height="16.950974mm"
viewBox="0 0 126.30465 16.950974"
version="1.1"
id="svg8"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="dressup_title.svg"
inkscape:export-filename="dressup_title.png"
inkscape:export-xdpi="141.11099"
inkscape:export-ydpi="141.11099">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="289.38072"
inkscape:cy="194.95805"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:pagecheckerboard="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-45.88631,-57.28246)">
<g
aria-label="Zack's Dress Up"
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#fcfcfc;fill-opacity:1;stroke:none;stroke-width:0.26458332"
id="text817">
<path
d="m 54.93506,60.386904 q -0.582083,0.635 -1.411111,1.658056 -0.829028,1.005416 -1.710972,2.204861 -0.881945,1.181805 -1.74625,2.451806 -0.846667,1.252361 -1.499306,2.38125 h 6.561667 v 1.887361 H 45.88631 v -1.393473 q 0.352778,-0.652638 0.811389,-1.411111 0.47625,-0.776111 1.005417,-1.5875 0.529166,-0.811389 1.093611,-1.640416 0.582083,-0.829028 1.146528,-1.5875 0.564444,-0.776112 1.093611,-1.464028 0.546805,-0.705556 1.023055,-1.252361 h -5.87375 v -1.887362 h 8.748889 z"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:17.63888931px;font-family:Ubuntu;-inkscape-font-specification:'Ubuntu Medium';stroke-width:0.26458332;fill:#fcfcfc;fill-opacity:1"
id="path819" />
<path
d="m 60.330631,69.470932 q 0.987778,0 1.499306,-0.105833 v -2.363611 q -0.176389,-0.05292 -0.511528,-0.105834 -0.335139,-0.05292 -0.740833,-0.05292 -0.352778,0 -0.723195,0.05292 -0.352778,0.05292 -0.652639,0.194028 -0.282222,0.141111 -0.458611,0.405695 -0.176389,0.246944 -0.176389,0.635 0,0.758472 0.47625,1.058333 0.47625,0.282222 1.287639,0.282222 z m -0.176389,-7.955139 q 1.058334,0 1.781528,0.264583 0.723195,0.264584 1.146528,0.740834 0.440972,0.47625 0.617361,1.164166 0.194028,0.670278 0.194028,1.481667 v 5.591528 q -0.493889,0.105833 -1.499306,0.246945 -0.987778,0.15875 -2.240139,0.15875 -0.829028,0 -1.516944,-0.15875 -0.687917,-0.15875 -1.181806,-0.511528 -0.47625,-0.352778 -0.758472,-0.917223 -0.264583,-0.564444 -0.264583,-1.393472 0,-0.79375 0.299861,-1.340555 0.3175,-0.546806 0.846666,-0.881945 0.529167,-0.352778 1.217084,-0.493889 0.705555,-0.15875 1.464028,-0.15875 0.352777,0 0.740833,0.05292 0.388055,0.03528 0.829028,0.141111 v -0.352778 q 0,-0.370416 -0.08819,-0.705555 -0.08819,-0.335139 -0.3175,-0.582084 -0.211666,-0.264583 -0.582083,-0.405694 -0.352778,-0.141111 -0.899583,-0.141111 -0.740834,0 -1.358195,0.105833 -0.617361,0.105833 -1.005417,0.246945 l -0.264583,-1.728612 q 0.405695,-0.141111 1.181806,-0.282222 0.776111,-0.141111 1.658055,-0.141111 z"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:17.63888931px;font-family:Ubuntu;-inkscape-font-specification:'Ubuntu Medium';stroke-width:0.26458332;fill:#fcfcfc;fill-opacity:1"
id="path821" />
<path
d="m 65.978659,66.366488 q 0,-1.023056 0.3175,-1.905 0.3175,-0.899584 0.899583,-1.552223 0.599723,-0.652639 1.446389,-1.023055 0.846667,-0.370417 1.905,-0.370417 1.305278,0 2.469445,0.47625 l -0.458611,1.74625 q -0.370417,-0.15875 -0.846667,-0.264583 -0.458611,-0.105834 -0.987778,-0.105834 -1.252361,0 -1.905,0.79375 -0.652639,0.776112 -0.652639,2.204862 0,1.375833 0.617361,2.187222 0.617362,0.79375 2.081389,0.79375 0.546806,0 1.075973,-0.105833 0.529166,-0.105834 0.917222,-0.264584 l 0.299861,1.763889 q -0.352778,0.176389 -1.075972,0.3175 -0.705556,0.141111 -1.464028,0.141111 -1.181806,0 -2.06375,-0.352777 -0.864306,-0.370417 -1.446389,-1.005417 -0.564445,-0.652639 -0.846667,-1.534584 -0.282222,-0.899583 -0.282222,-1.940277 z"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:17.63888931px;font-family:Ubuntu;-inkscape-font-specification:'Ubuntu Medium';stroke-width:0.26458332;fill:#fcfcfc;fill-opacity:1"
id="path823" />
<path
d="m 76.961624,65.343432 q 0.405694,-0.423333 0.864306,-0.899583 0.458611,-0.493889 0.899583,-0.970139 0.440972,-0.493889 0.829028,-0.934861 0.405694,-0.458611 0.687916,-0.79375 h 2.522362 q -0.881945,0.987777 -1.869723,2.046111 -0.970139,1.058333 -1.957916,2.06375 0.529166,0.440972 1.11125,1.075972 0.582083,0.617361 1.128888,1.322917 0.546806,0.705555 1.023056,1.411111 0.47625,0.705555 0.79375,1.305278 H 80.52468 q -0.3175,-0.546806 -0.740834,-1.146528 -0.405694,-0.599722 -0.881944,-1.164167 -0.47625,-0.564444 -0.970139,-1.058333 -0.493889,-0.511528 -0.970139,-0.864306 v 4.233334 H 74.827318 V 57.635237 l 2.134306,-0.352777 z"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:17.63888931px;font-family:Ubuntu;-inkscape-font-specification:'Ubuntu Medium';stroke-width:0.26458332;fill:#fcfcfc;fill-opacity:1"
id="path825" />
<path
d="m 86.55332,57.564682 v 1.093611 q 0,0.846667 -0.123473,1.834444 -0.123472,0.970139 -0.282222,1.957917 h -1.358194 q -0.176389,-0.987778 -0.282222,-1.957917 -0.105834,-0.970138 -0.105834,-1.852083 v -1.075972 z"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:17.63888931px;font-family:Ubuntu;-inkscape-font-specification:'Ubuntu Medium';stroke-width:0.26458332;fill:#fcfcfc;fill-opacity:1"
id="path827" />
<path
d="m 91.435159,69.435654 q 0.846666,0 1.234722,-0.194027 0.388055,-0.211667 0.388055,-0.705556 0,-0.458611 -0.423333,-0.758472 -0.405694,-0.299861 -1.358194,-0.652639 -0.582084,-0.211667 -1.075973,-0.440972 -0.47625,-0.246945 -0.829027,-0.564445 -0.352778,-0.3175 -0.564445,-0.758472 -0.194028,-0.458611 -0.194028,-1.11125 0,-1.27 0.934862,-1.993195 0.934861,-0.740833 2.54,-0.740833 0.811388,0 1.552222,0.15875 0.740833,0.141111 1.11125,0.282222 l -0.388056,1.728611 q -0.352777,-0.15875 -0.899583,-0.282222 -0.546806,-0.141111 -1.27,-0.141111 -0.652639,0 -1.058333,0.229306 -0.405695,0.211666 -0.405695,0.670277 0,0.229306 0.07056,0.405695 0.08819,0.176389 0.282222,0.335139 0.194028,0.141111 0.511528,0.299861 0.3175,0.141111 0.776111,0.299861 0.758472,0.282222 1.287639,0.564445 0.529166,0.264583 0.864305,0.617361 0.352778,0.335139 0.511528,0.776111 0.15875,0.440972 0.15875,1.058333 0,1.322917 -0.987778,2.010833 -0.970139,0.670278 -2.786944,0.670278 -1.217084,0 -1.957917,-0.211666 -0.740833,-0.194028 -1.040694,-0.3175 l 0.370416,-1.781528 q 0.47625,0.194028 1.128889,0.370416 0.670278,0.176389 1.516945,0.176389 z"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:17.63888931px;font-family:Ubuntu;-inkscape-font-specification:'Ubuntu Medium';stroke-width:0.26458332;fill:#fcfcfc;fill-opacity:1"
id="path829" />
<path
d="m 103.61398,69.135793 q 0.19403,0.01764 0.51153,0.03528 0.3175,0 0.86431,0 2.24014,0 3.33375,-1.128889 1.11125,-1.146528 1.11125,-3.192639 0,-2.081389 -1.07598,-3.192639 -1.07597,-1.11125 -3.33375,-1.11125 -0.98777,0 -1.41111,0.05292 z m 8.14917,-4.28625 q 0,1.5875 -0.49389,2.769306 -0.49389,1.164166 -1.41111,1.957916 -0.89958,0.776112 -2.18722,1.164167 -1.27,0.370417 -2.82222,0.370417 -0.74084,0 -1.6757,-0.07056 -0.93486,-0.05292 -1.78153,-0.246944 V 58.922876 q 0.84667,-0.194027 1.79917,-0.246944 0.9525,-0.05292 1.69333,-0.05292 1.53459,0 2.80459,0.370417 1.27,0.352778 2.16958,1.128889 0.91722,0.758472 1.41111,1.940278 0.49389,1.164166 0.49389,2.786944 z"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:17.63888931px;font-family:Ubuntu;-inkscape-font-specification:'Ubuntu Medium';stroke-width:0.26458332;fill:#fcfcfc;fill-opacity:1"
id="path831" />
<path
d="m 119.3578,63.667738 q -0.26459,-0.08819 -0.74084,-0.176389 -0.45861,-0.105834 -1.07597,-0.105834 -0.35278,0 -0.75847,0.07056 -0.38806,0.07055 -0.54681,0.123472 v 7.390695 h -2.1343 v -8.784167 q 0.61736,-0.229306 1.53458,-0.423333 0.93486,-0.211667 2.06375,-0.211667 0.21167,0 0.49389,0.03528 0.28222,0.01764 0.56444,0.07055 0.28223,0.03528 0.54681,0.105834 0.26458,0.05292 0.42333,0.105833 z"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:17.63888931px;font-family:Ubuntu;-inkscape-font-specification:'Ubuntu Medium';stroke-width:0.26458332;fill:#fcfcfc;fill-opacity:1"
id="path833" />
<path
d="m 120.68677,66.401765 q 0,-1.217083 0.35278,-2.134305 0.37042,-0.917222 0.97014,-1.516945 0.59972,-0.617361 1.37583,-0.917222 0.77611,-0.3175 1.5875,-0.3175 1.905,0 2.96334,1.181806 1.07597,1.181805 1.07597,3.527778 0,0.176388 -0.0176,0.405694 0,0.211667 -0.0176,0.388056 h -6.08542 q 0.0882,1.11125 0.77612,1.728611 0.70555,0.599722 2.02847,0.599722 0.77611,0 1.41111,-0.141111 0.65264,-0.141111 1.02305,-0.299861 l 0.28223,1.74625 q -0.17639,0.08819 -0.49389,0.194028 -0.29986,0.08819 -0.70556,0.15875 -0.38805,0.08819 -0.84666,0.141111 -0.45862,0.05292 -0.93487,0.05292 -1.21708,0 -2.11666,-0.352777 -0.89959,-0.370417 -1.48167,-1.005417 -0.58208,-0.652639 -0.8643,-1.516945 -0.28223,-0.881944 -0.28223,-1.922639 z m 6.19125,-0.9525 q 0,-0.440972 -0.12347,-0.829027 -0.12347,-0.405695 -0.37042,-0.687917 -0.2293,-0.299861 -0.58208,-0.458611 -0.33514,-0.176389 -0.81139,-0.176389 -0.49389,0 -0.8643,0.194028 -0.37042,0.176389 -0.635,0.47625 -0.24695,0.299861 -0.38806,0.687916 -0.14111,0.388056 -0.19403,0.79375 z"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:17.63888931px;font-family:Ubuntu;-inkscape-font-specification:'Ubuntu Medium';stroke-width:0.26458332;fill:#fcfcfc;fill-opacity:1"
id="path835" />
<path
d="m 133.56868,69.435654 q 0.84667,0 1.23472,-0.194027 0.38806,-0.211667 0.38806,-0.705556 0,-0.458611 -0.42333,-0.758472 -0.4057,-0.299861 -1.3582,-0.652639 -0.58208,-0.211667 -1.07597,-0.440972 -0.47625,-0.246945 -0.82903,-0.564445 -0.35278,-0.3175 -0.56444,-0.758472 -0.19403,-0.458611 -0.19403,-1.11125 0,-1.27 0.93486,-1.993195 0.93486,-0.740833 2.54,-0.740833 0.81139,0 1.55222,0.15875 0.74084,0.141111 1.11125,0.282222 l -0.38805,1.728611 q -0.35278,-0.15875 -0.89959,-0.282222 -0.5468,-0.141111 -1.27,-0.141111 -0.65264,0 -1.05833,0.229306 -0.40569,0.211666 -0.40569,0.670277 0,0.229306 0.0705,0.405695 0.0882,0.176389 0.28222,0.335139 0.19403,0.141111 0.51153,0.299861 0.3175,0.141111 0.77611,0.299861 0.75847,0.282222 1.28764,0.564445 0.52917,0.264583 0.86431,0.617361 0.35277,0.335139 0.51152,0.776111 0.15875,0.440972 0.15875,1.058333 0,1.322917 -0.98777,2.010833 -0.97014,0.670278 -2.78695,0.670278 -1.21708,0 -1.95791,-0.211666 -0.74084,-0.194028 -1.0407,-0.3175 l 0.37042,-1.781528 q 0.47625,0.194028 1.12889,0.370416 0.67027,0.176389 1.51694,0.176389 z"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:17.63888931px;font-family:Ubuntu;-inkscape-font-specification:'Ubuntu Medium';stroke-width:0.26458332;fill:#fcfcfc;fill-opacity:1"
id="path837" />
<path
d="m 141.6302,69.435654 q 0.84667,0 1.23473,-0.194027 0.38805,-0.211667 0.38805,-0.705556 0,-0.458611 -0.42333,-0.758472 -0.4057,-0.299861 -1.3582,-0.652639 -0.58208,-0.211667 -1.07597,-0.440972 -0.47625,-0.246945 -0.82903,-0.564445 -0.35277,-0.3175 -0.56444,-0.758472 -0.19403,-0.458611 -0.19403,-1.11125 0,-1.27 0.93486,-1.993195 0.93486,-0.740833 2.54,-0.740833 0.81139,0 1.55223,0.15875 0.74083,0.141111 1.11125,0.282222 l -0.38806,1.728611 q -0.35278,-0.15875 -0.89958,-0.282222 -0.54681,-0.141111 -1.27,-0.141111 -0.65264,0 -1.05834,0.229306 -0.40569,0.211666 -0.40569,0.670277 0,0.229306 0.0705,0.405695 0.0882,0.176389 0.28223,0.335139 0.19402,0.141111 0.51152,0.299861 0.3175,0.141111 0.77612,0.299861 0.75847,0.282222 1.28763,0.564445 0.52917,0.264583 0.86431,0.617361 0.35278,0.335139 0.51153,0.776111 0.15875,0.440972 0.15875,1.058333 0,1.322917 -0.98778,2.010833 -0.97014,0.670278 -2.78694,0.670278 -1.21709,0 -1.95792,-0.211666 -0.74083,-0.194028 -1.0407,-0.3175 l 0.37042,-1.781528 q 0.47625,0.194028 1.12889,0.370416 0.67028,0.176389 1.51694,0.176389 z"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:17.63888931px;font-family:Ubuntu;-inkscape-font-specification:'Ubuntu Medium';stroke-width:0.26458332;fill:#fcfcfc;fill-opacity:1"
id="path839" />
<path
d="m 156.29611,71.234821 q -1.25236,0 -2.15194,-0.352778 -0.89959,-0.370416 -1.49931,-1.023055 -0.58208,-0.652639 -0.8643,-1.534584 -0.28223,-0.881944 -0.28223,-1.940277 v -7.63764 h 2.24014 v 7.425973 q 0,0.829028 0.17639,1.42875 0.19403,0.582083 0.52917,0.9525 0.35278,0.370417 0.81139,0.546805 0.47625,0.176389 1.05833,0.176389 0.58208,0 1.05833,-0.176389 0.47625,-0.176388 0.81139,-0.546805 0.35278,-0.370417 0.52917,-0.9525 0.19403,-0.599722 0.19403,-1.42875 v -7.425973 h 2.24014 v 7.63764 q 0,1.058333 -0.29986,1.940277 -0.28223,0.881945 -0.88195,1.534584 -0.58208,0.652639 -1.4993,1.023055 -0.91723,0.352778 -2.16959,0.352778 z"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:17.63888931px;font-family:Ubuntu;-inkscape-font-specification:'Ubuntu Medium';stroke-width:0.26458332;fill:#fcfcfc;fill-opacity:1"
id="path841" />
<path
d="m 170.00373,66.401765 q 0,-1.42875 -0.65263,-2.2225 -0.635,-0.79375 -2.06375,-0.79375 -0.29987,0 -0.635,0.03528 -0.3175,0.01764 -0.635,0.105833 v 5.274028 q 0.28222,0.194028 0.74083,0.370417 0.47625,0.15875 1.00542,0.15875 1.16416,0 1.69333,-0.79375 0.5468,-0.79375 0.5468,-2.134306 z m 2.18723,-0.03528 q 0,1.058333 -0.28223,1.940277 -0.26458,0.881945 -0.77611,1.516945 -0.51152,0.635 -1.28764,0.987778 -0.75847,0.352778 -1.72861,0.352778 -0.65264,0 -1.19944,-0.15875 -0.54681,-0.15875 -0.89958,-0.352778 v 3.580694 h -2.13431 V 62.04496 q 0.65264,-0.176389 1.60514,-0.335139 0.9525,-0.15875 2.01083,-0.15875 1.09361,0 1.95792,0.335139 0.8643,0.335139 1.46403,0.970139 0.61736,0.617361 0.93486,1.516944 0.33514,0.881945 0.33514,1.993195 z"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:17.63888931px;font-family:Ubuntu;-inkscape-font-specification:'Ubuntu Medium';stroke-width:0.26458332;fill:#fcfcfc;fill-opacity:1"
id="path843" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 16 KiB

View file

@ -2,12 +2,12 @@
importer="texture"
type="StreamTexture"
path="res://.import/dress_up_bg.png-f85588b7b816c08fa2827a4f2a00be9e.stex"
path="res://.import/dressup_title.svg-8d2a8b65ef9e6151959385637bef7960.stex"
[deps]
source_file="res://assets/dress_up_bg.png"
dest_files=[ "res://.import/dress_up_bg.png-f85588b7b816c08fa2827a4f2a00be9e.stex" ]
source_file="res://assets/dressup_title.svg"
dest_files=[ "res://.import/dressup_title.svg-8d2a8b65ef9e6151959385637bef7960.stex" ]
[params]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

View file

Before

Width:  |  Height:  |  Size: 5.3 KiB

After

Width:  |  Height:  |  Size: 5.3 KiB

View file

@ -2,12 +2,12 @@
importer="texture"
type="StreamTexture"
path="res://.import/15_dress_up_bg.png-539edf16398b672e4b3f5a1602dc2b98.stex"
path="res://.import/modern_dress_up_bg.png-6393820664f1320a23b0c4aa117b655b.stex"
[deps]
source_file="res://assets/15_dress_up_bg.png"
dest_files=[ "res://.import/15_dress_up_bg.png-539edf16398b672e4b3f5a1602dc2b98.stex" ]
source_file="res://assets/modern_dress_up_bg.png"
dest_files=[ "res://.import/modern_dress_up_bg.png-6393820664f1320a23b0c4aa117b655b.stex" ]
[params]

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -0,0 +1,29 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/modern_dress_up_blurred_bg.png-25831e2973bc1b7f2d3095dd52febfd9.stex"
[deps]
source_file="res://assets/modern_dress_up_blurred_bg.png"
dest_files=[ "res://.import/modern_dress_up_blurred_bg.png-25831e2973bc1b7f2d3095dd52febfd9.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/normal_map=0
flags/repeat=0
flags/filter=true
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
stream=false
size_limit=0
detect_3d=true
svg/scale=1.0

View file

@ -9,10 +9,13 @@ KCLS,Classic,Klassisk
KUND,Underwear,Underkläder
KCLR,Clear,Klar
KMUS,Music,Musik
KGMO,Game Mode,Spelläge
KCRE,Credits,Eftertexter
KABO,About,Handla om
KLIC,License,Licens
KSOO,Coming Soon,Kommer snart
KPLY,Play,Spela
KEXT,Exit,Utgång
KHELP,Help,Hjälp
KSET,Settings,Inställningar
KLANG,Languages,Språk
1 en sv
9 KUND Underwear Underkläder
10 KCLR Clear Klar
11 KMUS Music Musik
12 KGMO Game Mode Spelläge
13 KCRE Credits Eftertexter
14 KABO About Handla om
15 KLIC License Licens
16 KSOO Coming Soon Kommer snart
17 KPLY Play Spela
18 KEXT Exit Utgång
19 KHELP Help Hjälp
20 KSET Settings Inställningar
21 KLANG Languages Språk

Binary file not shown.

Binary file not shown.

View file

@ -11,7 +11,7 @@ config_version=3
[application]
config/name="Zack's Dress Up"
run/main_scene="res://GameScreen.tscn"
run/main_scene="res://StartScn.tscn"
config/use_custom_user_dir=true
boot_splash/image="res://assets/game_splash.png"
config/icon="res://icon.png"

View file

@ -2,14 +2,8 @@
# See the LICENSE file in the project root for more information.
extends Control
func _on_AboutBtn_pressed():
$WinDialogs/AboutWin.show()
func _on_SettingsBtn_pressed():
$WinDialogs/SettingsWin.show()
func _on_ClassicBtn_pressed():
get_tree().change_scene("res://ClassicScreen.tscn")
func _on_ModernBtn_pressed():
get_tree().change_scene("res://GameScreen.tscn")
func _on_ExitBtn_pressed():
get_tree().change_scene("res://StartScn.tscn")

31
project/src/StartScn.gd Normal file
View file

@ -0,0 +1,31 @@
# Anthony Wilcox licenses this file to you under the GPL license.
# See the LICENSE file in the project root for more information.
extends Node
func _on_ClassicBtn_pressed():
get_tree().change_scene("res://ClassicScn.tscn")
func _on_ModernBtn_pressed():
get_tree().change_scene("res://GameScn.tscn")
func _on_ClassicBtn_mouse_entered():
$ModernBG.hide()
$WordrobeBG.hide()
$ClassicBG.show()
func _on_ClassicBtn_mouse_exited():
$ClassicBG.hide()
$WordrobeBG.show()
$ModernBG.show()
func _on_CreditsBtn_pressed():
$WinDialogs/CreditsWin.show()
func _on_LicenseBtn_pressed():
$WinDialogs/LicenseWin.show()
func _on_PlayBtn_toggled(button_pressed):
if button_pressed == true:
$MenuRf/ModePanel.show()
else:
$MenuRf/ModePanel.hide()