1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-06-26 08:34:43 -04:00

Properly reference GameKit

- GameKit is now properly referenced using AutoLoad's root node instead of directly inheriting the Node because it redundent. I'm still learning. xD
- Removed Global Menu
- New icon, song, and font
- Use the engine's lighting
- Version
- SVG Sixam wordmark
This commit is contained in:
Anthony Wilcox 2019-05-06 14:59:49 -04:00
parent 4b501e0c6e
commit 0d1cb030f7
43 changed files with 943 additions and 203 deletions

View file

@ -3,7 +3,7 @@
[ext_resource path="res://src/TitleScn.gd" type="Script" id=1]
[ext_resource path="res://styles/DressUpTheme.res" type="Theme" id=2]
[ext_resource path="res://sprites/title.svg" type="Texture" id=3]
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=4]
[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=4]
[node name="Start" type="Node"]
script = ExtResource( 1 )
@ -28,27 +28,26 @@ anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
anchor_bottom = 0.5
margin_left = -68.0
margin_left = -67.5
margin_top = -42.5
margin_right = 68.0
margin_bottom = 42.5
margin_right = 68.5
margin_bottom = 61.5
[node name="PlayBtn" type="Button" parent="MenuRf/StartVbox"]
margin_right = 136.0
margin_bottom = 25.0
toggle_mode = true
margin_bottom = 21.0
text = "KPLY"
[node name="CreditsBtn" type="Button" parent="MenuRf/StartVbox"]
margin_top = 29.0
margin_top = 25.0
margin_right = 136.0
margin_bottom = 54.0
margin_bottom = 46.0
text = "KCRE"
[node name="LicenseBtn" type="Button" parent="MenuRf/StartVbox"]
margin_top = 58.0
margin_top = 50.0
margin_right = 136.0
margin_bottom = 83.0
margin_bottom = 71.0
text = "KLIC"
[node name="ModePanel" type="WindowDialog" parent="MenuRf"]
@ -92,6 +91,13 @@ margin_left = 97.0
margin_top = 37.0
margin_right = 97.0
margin_bottom = 37.0
[node name="Version" type="Label" parent="."]
margin_left = 950.908
margin_top = 568.64
margin_right = 990.908
margin_bottom = 582.64
text = "Version"
[connection signal="pressed" from="MenuRf/StartVbox/PlayBtn" to="." method="_on_PlayBtn_pressed"]
[connection signal="pressed" from="MenuRf/StartVbox/CreditsBtn" to="." method="_on_CreditsBtn_pressed"]
[connection signal="pressed" from="MenuRf/StartVbox/LicenseBtn" to="." method="_on_LicenseBtn_pressed"]