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

Brand new soundtrack!

- Nathan's Dress Up finally has the makings of a proper soundtrack. Credit to Avgvsts Tunes. These are midi songs meant for RPGs but I find that they suit this game as well.
This commit is contained in:
Anthony Wilcox 2019-05-04 17:27:43 -04:00
parent e39458cb3c
commit 2ac38db54d
12 changed files with 91 additions and 33 deletions

View file

@ -1,9 +1,10 @@
[gd_scene load_steps=5 format=2]
[gd_scene load_steps=6 format=2]
[ext_resource path="res://src/GameScn.gd" type="Script" id=1]
[ext_resource path="res://sprites/icrazy_frame.png" type="Texture" id=2]
[ext_resource path="res://scn/Clothes.tscn" type="PackedScene" id=3]
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=4]
[ext_resource path="res://src/Soundtrack.gd" type="Script" id=5]
[node name="GameScreen" type="Node"]
script = ExtResource( 1 )
@ -15,3 +16,6 @@ texture = ExtResource( 2 )
[node name="Clothes" parent="." instance=ExtResource( 3 )]
[node name="WinDialogs" parent="." instance=ExtResource( 4 )]
[node name="Music" type="AudioStreamPlayer" parent="."]
script = ExtResource( 5 )

View file

@ -1,20 +1,21 @@
[gd_scene load_steps=4 format=2]
[gd_scene load_steps=5 format=2]
[ext_resource path="res://src/TitleScn.gd" type="Script" id=1]
[ext_resource path="res://sprites/title.svg" type="Texture" id=2]
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=3]
[ext_resource path="res://src/Soundtrack.gd" type="Script" id=4]
[node name="Start" type="Node"]
script = ExtResource( 1 )
[node name="Title" type="Sprite" parent="."]
position = Vector2( 526.047, 150.148 )
position = Vector2( 522.047, 150.148 )
texture = ExtResource( 2 )
[node name="MenuRf" type="ReferenceRect" parent="."]
margin_left = 315.292
margin_left = 311.292
margin_top = 72.2924
margin_right = 734.292
margin_right = 730.292
margin_bottom = 523.292
[node name="StartVbox" type="VBoxContainer" parent="MenuRf"]
@ -82,10 +83,13 @@ margin_bottom = 62.0
text = "KCLS"
[node name="WinDialogs" parent="." instance=ExtResource( 3 )]
margin_left = 113.0
margin_left = 97.0
margin_top = 37.0
margin_right = 113.0
margin_right = 97.0
margin_bottom = 37.0
[node name="Music" type="AudioStreamPlayer" parent="."]
script = ExtResource( 4 )
[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"]

View file

@ -1,7 +1,6 @@
[gd_scene load_steps=3 format=2]
[gd_scene load_steps=2 format=2]
[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"]
anchor_left = 0.5
@ -10,9 +9,6 @@ anchor_right = 0.5
anchor_bottom = 0.5
script = ExtResource( 1 )
[node name="Music" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 2 )
[node name="PauseWin" type="PopupDialog" parent="."]
pause_mode = 2
editor/display_folded = true
@ -58,7 +54,6 @@ margin_bottom = 86.0
text = "KEXT"
[node name="CreditsWin" type="AcceptDialog" parent="."]
editor/display_folded = true
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
@ -73,13 +68,17 @@ resizable = true
[node name="CreditsTxt" type="RichTextLabel" parent="CreditsWin"]
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = 8.0
margin_top = 8.0
margin_right = -8.0
margin_bottom = -36.0
focus_mode = 2
bbcode_enabled = true
bbcode_text = "[center]Created by
Anthony Wilcox
Music by
Augmentality
Michael Carey
Clothing inspired by
Megawolf77
@ -93,7 +92,7 @@ text = "Created by
Anthony Wilcox
Music by
Augmentality
Michael Carey
Clothing inspired by
Megawolf77
@ -107,7 +106,6 @@ selection_enabled = true
[node name="SettingsWin" type="AcceptDialog" parent="."]
pause_mode = 2
editor/display_folded = true
anchor_left = 0.5
anchor_top = 0.5
anchor_right = 0.5
@ -161,8 +159,9 @@ resizable = true
anchor_left = 0.5
anchor_right = 0.5
margin_left = -194.0
margin_top = 8.0
margin_right = 194.0
margin_bottom = 231.0
margin_bottom = 239.0
bbcode_enabled = true
bbcode_text = "Nathan's Dress Up is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
@ -194,7 +193,6 @@ Attribution-ShareAlike 4.0 International License.
You should have received a copy of the license along with this work.
If not, see <http://creativecommons.org/licenses/by-sa/4.0/>."
[connection signal="pressed" from="PauseWin/PauseVbox/SettingsBtn" to="." method="_on_SettingsBtn_pressed"]
[connection signal="pressed" from="PauseWin/PauseVbox/ResumeBtn" to="." method="_on_ResumeBtn_pressed"]
[connection signal="pressed" from="PauseWin/PauseVbox/ExitBtn" to="." method="_on_ExitBtn_pressed"]