1
0
Fork 0
mirror of https://github.com/tonytins/dressupzack synced 2025-12-18 21:04:43 -05:00

SVG remaster, part 1 (#5)

Up until this point, this game still relied heavily on my copy of ZC's Dress Up for editing and creating new sprites so they properly match the look and feel. The only reason why it's not included in the source code is because the format is proprietary and Adobe's editor doesn't work with all platforms that Godot does. That is unfair when the whole goal of this project to remove Flash from the equation.

This remaster aims to remove that final need by remaking in an open format, whether it be an open source editor or format. I found that using SVG as is with Inkscape as the editor does the job well because Godot can render it without any extra steps required. I tried testing out Krita and Gimp but they didn't produce the results I wanted.
This commit is contained in:
Anthony Wilcox 2019-05-05 14:37:08 -04:00 committed by GitHub
parent 6dd20ff447
commit 1f8aab08bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
59 changed files with 2635 additions and 1340 deletions

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"]