mirror of
https://github.com/tonytins/dressupzack
synced 2025-06-26 08:34:43 -04: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:
parent
6dd20ff447
commit
1f8aab08bc
59 changed files with 2635 additions and 1340 deletions
|
@ -3,7 +3,7 @@
|
|||
[ext_resource path="res://sprites/tail/tail0.png" type="Texture" id=1]
|
||||
[ext_resource path="res://sprites/tail/tail1.png" type="Texture" id=2]
|
||||
[ext_resource path="res://sprites/tail/tail2.png" type="Texture" id=3]
|
||||
[ext_resource path="res://sprites/character_base.png" type="Texture" id=4]
|
||||
[ext_resource path="res://sprites/character_base.svg" type="Texture" id=4]
|
||||
[ext_resource path="res://sprites/eyes/eyes1.png" type="Texture" id=5]
|
||||
[ext_resource path="res://sprites/eyes/eyes2.png" type="Texture" id=6]
|
||||
[ext_resource path="res://sprites/eyes/eyes3.png" type="Texture" id=7]
|
||||
|
@ -23,7 +23,6 @@
|
|||
[ext_resource path="res://sprites/mouth/mouth10.png" type="Texture" id=21]
|
||||
[ext_resource path="res://sprites/mouth/mouth12.png" type="Texture" id=22]
|
||||
|
||||
|
||||
[sub_resource type="SpriteFrames" id=1]
|
||||
animations = [ {
|
||||
"frames": [ ExtResource( 1 ), ExtResource( 1 ), ExtResource( 1 ), ExtResource( 2 ), ExtResource( 2 ), ExtResource( 2 ), ExtResource( 3 ), ExtResource( 3 ), ExtResource( 3 ) ],
|
||||
|
@ -53,7 +52,7 @@ animations = [ {
|
|||
[node name="Tail" type="AnimatedSprite" parent="."]
|
||||
position = Vector2( 49.6951, 374.417 )
|
||||
frames = SubResource( 1 )
|
||||
frame = 7
|
||||
frame = 8
|
||||
playing = true
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
|
@ -69,7 +68,7 @@ __meta__ = {
|
|||
[node name="Eyes" type="AnimatedSprite" parent="."]
|
||||
position = Vector2( 109.519, 253.9 )
|
||||
frames = SubResource( 2 )
|
||||
frame = 7
|
||||
frame = 2
|
||||
playing = true
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
|
@ -78,7 +77,7 @@ __meta__ = {
|
|||
[node name="Mouth" type="AnimatedSprite" parent="."]
|
||||
position = Vector2( 126.316, 257.474 )
|
||||
frames = SubResource( 3 )
|
||||
frame = 26
|
||||
frame = 2
|
||||
playing = true
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
[ext_resource path="res://src/ItemDrag.gd" type="Script" id=2]
|
||||
[ext_resource path="res://sprites/classic/z_briefs_classic.png" type="Texture" id=3]
|
||||
[ext_resource path="res://sprites/classic/fundosi_classic.png" type="Texture" id=4]
|
||||
[ext_resource path="res://sprites/jeans.png" type="Texture" id=5]
|
||||
[ext_resource path="res://sprites/jeans.svg" type="Texture" id=5]
|
||||
[ext_resource path="res://sprites/dj_shorts.png" type="Texture" id=6]
|
||||
[ext_resource path="res://sprites/sweat_pants.png" type="Texture" id=7]
|
||||
[ext_resource path="res://sprites/blue_camo_jeans.png" type="Texture" id=8]
|
||||
[ext_resource path="res://sprites/sweat_pants.svg" type="Texture" id=7]
|
||||
[ext_resource path="res://sprites/blue_camo_jeans.svg" type="Texture" id=8]
|
||||
[ext_resource path="res://sprites/beat_up_jeans.png" type="Texture" id=9]
|
||||
[ext_resource path="res://sprites/old_sweatshirt.png" type="Texture" id=10]
|
||||
[ext_resource path="res://sprites/dj_shirt.png" type="Texture" id=11]
|
||||
|
@ -20,592 +20,200 @@
|
|||
[ext_resource path="res://sprites/classic/camera_classic.png" type="Texture" id=18]
|
||||
[ext_resource path="res://sprites/classic/owo_censor_classic.png" type="Texture" id=19]
|
||||
|
||||
|
||||
[node name="Clothes" type="Control"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.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="Wordrobe" type="ReferenceRect" parent="." index="0"]
|
||||
|
||||
editor/display_folded = true
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Wordrobe" type="ReferenceRect" parent="."]
|
||||
margin_left = 193.0
|
||||
margin_top = 17.0
|
||||
margin_right = 775.0
|
||||
margin_bottom = 527.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
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="Underwear" type="Control" parent="Wordrobe" index="0"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Underwear" type="Control" parent="Wordrobe"]
|
||||
margin_left = -197.0
|
||||
margin_top = -8.0
|
||||
margin_right = -197.0
|
||||
margin_bottom = -8.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="Briefs" type="TextureButton" parent="Wordrobe/Underwear" index="0"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Briefs" type="TextureButton" parent="Wordrobe/Underwear"]
|
||||
margin_left = 68.0
|
||||
margin_top = 391.0
|
||||
margin_right = 136.0
|
||||
margin_bottom = 425.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
|
||||
texture_normal = ExtResource( 1 )
|
||||
script = ExtResource( 2 )
|
||||
|
||||
[node name="ZBriefs" type="TextureButton" parent="Wordrobe/Underwear" index="1"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="ZBriefs" type="TextureButton" parent="Wordrobe/Underwear"]
|
||||
margin_left = 375.0
|
||||
margin_top = 454.0
|
||||
margin_right = 443.0
|
||||
margin_bottom = 488.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
|
||||
texture_normal = ExtResource( 3 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Fundosi" type="TextureButton" parent="Wordrobe/Underwear" index="2"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Fundosi" type="TextureButton" parent="Wordrobe/Underwear"]
|
||||
margin_left = 512.0
|
||||
margin_top = 453.0
|
||||
margin_right = 580.0
|
||||
margin_bottom = 493.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
|
||||
texture_normal = ExtResource( 4 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Bottoms" type="Control" parent="Wordrobe" index="1"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Bottoms" type="Control" parent="Wordrobe"]
|
||||
margin_left = -197.0
|
||||
margin_top = -8.0
|
||||
margin_right = -197.0
|
||||
margin_bottom = -8.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="Jeans" type="TextureButton" parent="Wordrobe/Bottoms" index="0"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Jeans" type="TextureButton" parent="Wordrobe/Bottoms"]
|
||||
margin_left = 614.0
|
||||
margin_top = 292.0
|
||||
margin_right = 720.0
|
||||
margin_bottom = 404.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
|
||||
texture_normal = ExtResource( 5 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="DJ Shorts" type="TextureButton" parent="Wordrobe/Bottoms" index="1"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="DJ Shorts" type="TextureButton" parent="Wordrobe/Bottoms"]
|
||||
margin_left = 628.0
|
||||
margin_top = 415.0
|
||||
margin_right = 734.0
|
||||
margin_bottom = 527.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
|
||||
texture_normal = ExtResource( 6 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Anchor", "Textures" ]
|
||||
|
||||
[node name="Sweats" type="TextureButton" parent="Wordrobe/Bottoms" index="2"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Sweats" type="TextureButton" parent="Wordrobe/Bottoms"]
|
||||
margin_left = 484.0
|
||||
margin_top = 318.0
|
||||
margin_right = 590.0
|
||||
margin_bottom = 430.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
|
||||
texture_normal = ExtResource( 7 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Blue Camo Jeans" type="TextureButton" parent="Wordrobe/Bottoms" index="3"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Blue Camo Jeans" type="TextureButton" parent="Wordrobe/Bottoms"]
|
||||
margin_left = 234.0
|
||||
margin_top = 400.0
|
||||
margin_right = 340.0
|
||||
margin_bottom = 512.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
|
||||
texture_normal = ExtResource( 8 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Beat Up Jeans" type="TextureButton" parent="Wordrobe/Bottoms" index="4"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Beat Up Jeans" type="TextureButton" parent="Wordrobe/Bottoms"]
|
||||
margin_left = 366.0
|
||||
margin_top = 316.0
|
||||
margin_right = 472.0
|
||||
margin_bottom = 428.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
|
||||
texture_normal = ExtResource( 9 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Tops" type="Control" parent="Wordrobe" index="2"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Tops" type="Control" parent="Wordrobe"]
|
||||
margin_left = -197.0
|
||||
margin_top = -8.0
|
||||
margin_right = -197.0
|
||||
margin_bottom = -8.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="Sweatshirt" type="TextureButton" parent="Wordrobe/Tops" index="0"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Sweatshirt" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 643.0
|
||||
margin_top = 34.0
|
||||
margin_right = 728.0
|
||||
margin_bottom = 144.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
|
||||
texture_normal = ExtResource( 10 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="DJ Shirt" type="TextureButton" parent="Wordrobe/Tops" index="1"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="DJ Shirt" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 644.0
|
||||
margin_top = 156.0
|
||||
margin_right = 729.0
|
||||
margin_bottom = 271.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
|
||||
texture_normal = ExtResource( 11 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Raw" type="TextureButton" parent="Wordrobe/Tops" index="2"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Raw" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 247.0
|
||||
margin_top = 25.0
|
||||
margin_right = 332.0
|
||||
margin_bottom = 138.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
|
||||
texture_normal = ExtResource( 12 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Atomic Shirt" type="TextureButton" parent="Wordrobe/Tops" index="3"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Atomic Shirt" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 518.0
|
||||
margin_top = 33.0
|
||||
margin_right = 603.0
|
||||
margin_bottom = 148.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
|
||||
texture_normal = ExtResource( 13 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Z Shirt" type="TextureButton" parent="Wordrobe/Tops" index="4"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Z Shirt" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 385.0
|
||||
margin_top = 178.0
|
||||
margin_right = 466.0
|
||||
margin_bottom = 293.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
|
||||
texture_normal = ExtResource( 14 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Biker Jacket" type="TextureButton" parent="Wordrobe/Tops" index="5"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Biker Jacket" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 253.0
|
||||
margin_top = 275.0
|
||||
margin_right = 338.0
|
||||
margin_bottom = 390.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
|
||||
texture_normal = ExtResource( 15 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="What's New" type="TextureButton" parent="Wordrobe/Tops" index="6"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="What's New" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 249.0
|
||||
margin_top = 150.0
|
||||
margin_right = 334.0
|
||||
margin_bottom = 265.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
|
||||
texture_normal = ExtResource( 16 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Train Shirt" type="TextureButton" parent="Wordrobe/Tops" index="7"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Train Shirt" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 512.0
|
||||
margin_top = 176.0
|
||||
margin_right = 597.0
|
||||
margin_bottom = 291.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
|
||||
texture_normal = ExtResource( 17 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Accessories" type="Control" parent="Wordrobe" index="3"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Accessories" type="Control" parent="Wordrobe"]
|
||||
margin_left = -197.0
|
||||
margin_top = -8.0
|
||||
margin_right = -197.0
|
||||
margin_bottom = -8.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="Camera" type="TextureButton" parent="Wordrobe/Accessories" index="0"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Camera" type="TextureButton" parent="Wordrobe/Accessories"]
|
||||
margin_left = 398.0
|
||||
margin_top = 94.0
|
||||
margin_right = 447.0
|
||||
margin_bottom = 156.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
|
||||
texture_normal = ExtResource( 18 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="OwO Censor" type="TextureButton" parent="Wordrobe/Accessories" index="1"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
margin_left = 371.0
|
||||
margin_top = 37.0
|
||||
margin_right = 476.0
|
||||
margin_bottom = 77.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
|
||||
[node name="OwO Censor" type="TextureButton" parent="Wordrobe/Accessories"]
|
||||
margin_left = 369.0
|
||||
margin_top = 16.0
|
||||
margin_right = 475.0
|
||||
margin_bottom = 56.0
|
||||
texture_normal = ExtResource( 19 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Underwear/Briefs" to="Wordrobe/Underwear/Briefs" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Underwear/ZBriefs" to="Wordrobe/Underwear/ZBriefs" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Underwear/Fundosi" to="Wordrobe/Underwear/Fundosi" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Bottoms/Jeans" to="Wordrobe/Bottoms/Jeans" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Bottoms/DJ Shorts" to="Wordrobe/Bottoms/DJ Shorts" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Bottoms/Sweats" to="Wordrobe/Bottoms/Sweats" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Bottoms/Blue Camo Jeans" to="Wordrobe/Bottoms/Blue Camo Jeans" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Bottoms/Beat Up Jeans" to="Wordrobe/Bottoms/Beat Up Jeans" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/Sweatshirt" to="Wordrobe/Tops/Sweatshirt" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/DJ Shirt" to="Wordrobe/Tops/DJ Shirt" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/Raw" to="Wordrobe/Tops/Raw" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/Atomic Shirt" to="Wordrobe/Tops/Atomic Shirt" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/Z Shirt" to="Wordrobe/Tops/Z Shirt" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/Biker Jacket" to="Wordrobe/Tops/Biker Jacket" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/What's New" to="Wordrobe/Tops/What's New" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/Train Shirt" to="Wordrobe/Tops/Train Shirt" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Accessories/Camera" to="Wordrobe/Accessories/Camera" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Accessories/OwO Censor" to="Wordrobe/Accessories/OwO Censor" method="_on_outfit_gui_input"]
|
||||
|
||||
|
||||
|
|
|
@ -7,33 +7,25 @@
|
|||
[ext_resource path="res://scn/ClassicClothes.tscn" type="PackedScene" id=5]
|
||||
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=6]
|
||||
|
||||
|
||||
|
||||
[node name="GameScreen" type="Node" index="0"]
|
||||
|
||||
[node name="GameScreen" type="Node"]
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="Background" type="Sprite" parent="." index="0"]
|
||||
|
||||
[node name="Background" type="Sprite" parent="."]
|
||||
position = Vector2( 400, 277 )
|
||||
texture = ExtResource( 2 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="Lights" type="Sprite" parent="." index="1"]
|
||||
|
||||
[node name="Lights" type="Sprite" parent="."]
|
||||
position = Vector2( 477.823, 100.811 )
|
||||
texture = ExtResource( 3 )
|
||||
_sections_unfolded = [ "Z Index" ]
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="Nathan" parent="." index="2" instance=ExtResource( 4 )]
|
||||
|
||||
[node name="Clothes" parent="." index="3" instance=ExtResource( 5 )]
|
||||
|
||||
[node name="WinDialogs" parent="." index="4" instance=ExtResource( 6 )]
|
||||
[node name="Nathan" parent="." instance=ExtResource( 4 )]
|
||||
|
||||
[node name="Clothes" parent="." instance=ExtResource( 5 )]
|
||||
|
||||
[node name="WinDialogs" parent="." instance=ExtResource( 6 )]
|
||||
|
|
File diff suppressed because it is too large
Load diff
21
project/scn/GameScn.tscn
Normal file
21
project/scn/GameScn.tscn
Normal file
|
@ -0,0 +1,21 @@
|
|||
[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 )
|
||||
|
||||
[node name="PicFrame" type="Sprite" parent="."]
|
||||
position = Vector2( 204.942, 120.396 )
|
||||
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 )
|
|
@ -1,33 +0,0 @@
|
|||
[gd_scene load_steps=7 format=2]
|
||||
|
||||
[ext_resource path="res://src/GameScn.gd" type="Script" id=1]
|
||||
[ext_resource path="res://sprites/modern_dress_up_bg.png" type="Texture" id=2]
|
||||
[ext_resource path="res://sprites/icrazy_frame.png" type="Texture" id=3]
|
||||
[ext_resource path="res://scn/Character.tscn" type="PackedScene" id=4]
|
||||
[ext_resource path="res://scn/Clothes.tscn" type="PackedScene" id=5]
|
||||
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=6]
|
||||
|
||||
|
||||
[node name="GameScreen" type="Node"]
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="Background" type="Sprite" parent="."]
|
||||
position = Vector2( 400, 277 )
|
||||
texture = ExtResource( 2 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="PicFrame" type="Sprite" parent="."]
|
||||
position = Vector2( 93.9417, 98.396 )
|
||||
texture = ExtResource( 3 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="Nathan" parent="." instance=ExtResource( 4 )]
|
||||
|
||||
[node name="Clothes" parent="." instance=ExtResource( 5 )]
|
||||
|
||||
[node name="WinDialogs" parent="." instance=ExtResource( 6 )]
|
||||
|
|
@ -1,44 +1,21 @@
|
|||
[gd_scene load_steps=6 format=2]
|
||||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://src/TitleScn.gd" type="Script" id=1]
|
||||
[ext_resource path="res://sprites/modern_dress_up_blurred_bg.png" type="Texture" id=2]
|
||||
[ext_resource path="res://sprites/dressup_blurred_wardrobe.png" type="Texture" id=3]
|
||||
[ext_resource path="res://sprites/classic_dress_up_blurred_bg.png" type="Texture" id=4]
|
||||
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=5]
|
||||
[ext_resource path="res://sprites/title.svg" type="Texture" id=2]
|
||||
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=3]
|
||||
|
||||
[node name="Start" type="Node"]
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="Modern" type="Node2D" parent="."]
|
||||
|
||||
[node name="ModernBG" type="Sprite" parent="Modern"]
|
||||
position = Vector2( 400, 277 )
|
||||
[node name="Title" type="Sprite" parent="."]
|
||||
position = Vector2( 522.047, 150.148 )
|
||||
texture = ExtResource( 2 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="WordrobeBG" type="Sprite" parent="Modern"]
|
||||
visible = false
|
||||
position = Vector2( 492.609, 280.27 )
|
||||
texture = ExtResource( 3 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="ClassicBG" type="Sprite" parent="."]
|
||||
visible = false
|
||||
position = Vector2( 400, 277 )
|
||||
texture = ExtResource( 4 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="MenuRf" type="ReferenceRect" parent="."]
|
||||
margin_left = 202.0
|
||||
margin_top = 67.0
|
||||
margin_right = 762.0
|
||||
margin_bottom = 518.0
|
||||
margin_left = 311.292
|
||||
margin_top = 72.2924
|
||||
margin_right = 730.292
|
||||
margin_bottom = 523.292
|
||||
|
||||
[node name="StartVbox" type="VBoxContainer" parent="MenuRf"]
|
||||
anchor_left = 0.5
|
||||
|
@ -68,15 +45,14 @@ margin_right = 136.0
|
|||
margin_bottom = 68.0
|
||||
text = "KLIC"
|
||||
|
||||
[node name="ModePanel" type="Panel" parent="MenuRf"]
|
||||
visible = false
|
||||
[node name="ModePanel" type="WindowDialog" parent="MenuRf"]
|
||||
anchor_left = 0.5
|
||||
anchor_top = 0.5
|
||||
anchor_right = 0.5
|
||||
anchor_bottom = 0.5
|
||||
margin_left = 80.0
|
||||
margin_left = -73.0
|
||||
margin_top = -46.0
|
||||
margin_right = 226.0
|
||||
margin_right = 73.0
|
||||
margin_bottom = 46.0
|
||||
|
||||
[node name="PlayVbox" type="VBoxContainer" parent="MenuRf/ModePanel"]
|
||||
|
@ -86,43 +62,32 @@ margin_left = 5.0
|
|||
margin_top = 5.0
|
||||
margin_right = -5.0
|
||||
margin_bottom = -5.0
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="ModeLbl" type="Label" parent="MenuRf/ModePanel/PlayVbox"]
|
||||
margin_right = 136.0
|
||||
margin_bottom = 14.0
|
||||
text = "KGMO"
|
||||
align = 1
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="ModernBtn" type="Button" parent="MenuRf/ModePanel/PlayVbox"]
|
||||
margin_top = 18.0
|
||||
margin_right = 136.0
|
||||
margin_bottom = 38.0
|
||||
text = "Modern"
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="ClassicBtn" type="Button" parent="MenuRf/ModePanel/PlayVbox"]
|
||||
margin_top = 42.0
|
||||
margin_right = 136.0
|
||||
margin_bottom = 62.0
|
||||
text = "KCLS"
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="WinDialogs" parent="." instance=ExtResource( 5 )]
|
||||
|
||||
[connection signal="toggled" from="MenuRf/StartVbox/PlayBtn" to="." method="_on_PlayBtn_toggled"]
|
||||
[node name="WinDialogs" parent="." instance=ExtResource( 3 )]
|
||||
margin_left = 97.0
|
||||
margin_top = 37.0
|
||||
margin_right = 97.0
|
||||
margin_bottom = 37.0
|
||||
[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"]
|
||||
[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"]
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue