mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-07 14:04:48 -04:00
Removed Beyond outfit
- WIP experiential JSON format for loading in new clothes
This commit is contained in:
parent
78872e68a0
commit
c93b416250
10 changed files with 87 additions and 491 deletions
12
project/ImportItems.gd
Normal file
12
project/ImportItems.gd
Normal file
|
@ -0,0 +1,12 @@
|
|||
extends Node
|
||||
|
||||
# export (String, FILE, "*.json") var item_file : String
|
||||
|
||||
func load_items(file_path) -> Dictionary:
|
||||
var file = File.new()
|
||||
assert file.file_exists(file_path)
|
||||
|
||||
file.open(file_path)
|
||||
var items = parse_json(file.get_as_text())
|
||||
assert items.size() > 0
|
||||
return items
|
|
@ -1,4 +1,4 @@
|
|||
[gd_scene load_steps=24 format=2]
|
||||
[gd_scene load_steps=22 format=2]
|
||||
|
||||
[ext_resource path="res://styles/DressUpTheme.res" type="Theme" id=1]
|
||||
[ext_resource path="res://styles/wordrobe_panel.stylebox" type="StyleBox" id=2]
|
||||
|
@ -6,23 +6,21 @@
|
|||
[ext_resource path="res://sprites/sweat_pants.svg" type="Texture" id=4]
|
||||
[ext_resource path="res://sprites/blue_camo_jeans.svg" type="Texture" id=5]
|
||||
[ext_resource path="res://sprites/beat_up_jeans.svg" type="Texture" id=6]
|
||||
[ext_resource path="res://sprites/beyond_jeans.svg" type="Texture" id=7]
|
||||
[ext_resource path="res://sprites/x_button.svg" type="Texture" id=8]
|
||||
[ext_resource path="res://sprites/old_sweatshirt.svg" type="Texture" id=9]
|
||||
[ext_resource path="res://sprites/beyond_jacket.svg" type="Texture" id=10]
|
||||
[ext_resource path="res://sprites/raw_shirt.svg" type="Texture" id=11]
|
||||
[ext_resource path="res://sprites/atomic_shirt.svg" type="Texture" id=12]
|
||||
[ext_resource path="res://sprites/z_shirt.png" type="Texture" id=13]
|
||||
[ext_resource path="res://sprites/biker_jacket.svg" type="Texture" id=14]
|
||||
[ext_resource path="res://sprites/nl_jacket.png" type="Texture" id=15]
|
||||
[ext_resource path="res://sprites/train_hoodie.svg" type="Texture" id=16]
|
||||
[ext_resource path="res://sprites/korm_shirt.png" type="Texture" id=17]
|
||||
[ext_resource path="res://sprites/whatsnew_shirt.svg" type="Texture" id=18]
|
||||
[ext_resource path="res://sprites/owo_censor.svg" type="Texture" id=19]
|
||||
[ext_resource path="res://sprites/briefs.svg" type="Texture" id=20]
|
||||
[ext_resource path="res://sprites/z_briefs.svg" type="Texture" id=21]
|
||||
[ext_resource path="res://sprites/fundosi.svg" type="Texture" id=22]
|
||||
[ext_resource path="res://sprites/camera.png" type="Texture" id=23]
|
||||
[ext_resource path="res://sprites/x_button.svg" type="Texture" id=7]
|
||||
[ext_resource path="res://sprites/old_sweatshirt.svg" type="Texture" id=8]
|
||||
[ext_resource path="res://sprites/raw_shirt.svg" type="Texture" id=9]
|
||||
[ext_resource path="res://sprites/atomic_shirt.svg" type="Texture" id=10]
|
||||
[ext_resource path="res://sprites/z_shirt.png" type="Texture" id=11]
|
||||
[ext_resource path="res://sprites/biker_jacket.svg" type="Texture" id=12]
|
||||
[ext_resource path="res://sprites/nl_jacket.png" type="Texture" id=13]
|
||||
[ext_resource path="res://sprites/train_hoodie.svg" type="Texture" id=14]
|
||||
[ext_resource path="res://sprites/korm_shirt.png" type="Texture" id=15]
|
||||
[ext_resource path="res://sprites/whatsnew_shirt.svg" type="Texture" id=16]
|
||||
[ext_resource path="res://sprites/owo_censor.svg" type="Texture" id=17]
|
||||
[ext_resource path="res://sprites/briefs.svg" type="Texture" id=18]
|
||||
[ext_resource path="res://sprites/z_briefs.svg" type="Texture" id=19]
|
||||
[ext_resource path="res://sprites/fundosi.svg" type="Texture" id=20]
|
||||
[ext_resource path="res://sprites/camera.png" type="Texture" id=21]
|
||||
|
||||
[node name="Clothes" type="Node"]
|
||||
|
||||
|
@ -41,6 +39,7 @@ custom_colors/font_color_bg = Color( 0.921569, 0.921569, 0.921569, 1 )
|
|||
custom_colors/font_color_fg = Color( 1, 1, 1, 1 )
|
||||
|
||||
[node name="Pants" type="Tabs" parent="Wordrobe"]
|
||||
visible = false
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
margin_top = 31.0
|
||||
|
@ -76,12 +75,6 @@ margin_right = 436.0
|
|||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 6 )
|
||||
|
||||
[node name="BeyondPants" type="TextureButton" parent="Wordrobe/Pants/PantsGrid"]
|
||||
margin_left = 440.0
|
||||
margin_right = 546.0
|
||||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 7 )
|
||||
|
||||
[node name="RemovePants" type="Button" parent="Wordrobe/Pants/PantsGrid"]
|
||||
margin_top = 116.0
|
||||
margin_right = 106.0
|
||||
|
@ -91,11 +84,10 @@ 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 )
|
||||
icon = ExtResource( 8 )
|
||||
icon = ExtResource( 7 )
|
||||
flat = true
|
||||
|
||||
[node name="Shirts" type="Tabs" parent="Wordrobe"]
|
||||
visible = false
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
margin_top = 31.0
|
||||
|
@ -110,75 +102,68 @@ columns = 7
|
|||
[node name="Sweatshirt" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_right = 85.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 9 )
|
||||
texture_normal = ExtResource( 8 )
|
||||
|
||||
[node name="BeyondJacket" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
[node name="Raw" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 89.0
|
||||
margin_right = 174.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 9 )
|
||||
|
||||
[node name="Atomic" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 178.0
|
||||
margin_right = 284.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 10 )
|
||||
|
||||
[node name="Raw" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 178.0
|
||||
margin_right = 263.0
|
||||
[node name="ZShirt" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 288.0
|
||||
margin_right = 369.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 11 )
|
||||
|
||||
[node name="Atomic" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 267.0
|
||||
margin_right = 373.0
|
||||
[node name="BikerJacket" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 373.0
|
||||
margin_right = 458.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 12 )
|
||||
|
||||
[node name="ZShirt" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 377.0
|
||||
margin_right = 458.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 13 )
|
||||
|
||||
[node name="BikerJacket" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
[node name="NLJacket" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 462.0
|
||||
margin_right = 547.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 14 )
|
||||
texture_normal = ExtResource( 13 )
|
||||
|
||||
[node name="NLJacket" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
[node name="TrainHoodie" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 551.0
|
||||
margin_right = 636.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 15 )
|
||||
texture_normal = ExtResource( 14 )
|
||||
|
||||
[node name="TrainHoodie" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
[node name="KormShirt" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_top = 119.0
|
||||
margin_right = 85.0
|
||||
margin_bottom = 234.0
|
||||
texture_normal = ExtResource( 16 )
|
||||
texture_normal = ExtResource( 15 )
|
||||
|
||||
[node name="KormShirt" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
[node name="WhatsNewShirt" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 89.0
|
||||
margin_top = 119.0
|
||||
margin_right = 174.0
|
||||
margin_bottom = 234.0
|
||||
texture_normal = ExtResource( 17 )
|
||||
|
||||
[node name="WhatsNewShirt" type="TextureButton" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 178.0
|
||||
margin_top = 119.0
|
||||
margin_right = 263.0
|
||||
margin_bottom = 234.0
|
||||
texture_normal = ExtResource( 18 )
|
||||
texture_normal = ExtResource( 16 )
|
||||
|
||||
[node name="RemoveShirt" type="Button" parent="Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 267.0
|
||||
margin_left = 178.0
|
||||
margin_top = 119.0
|
||||
margin_right = 373.0
|
||||
margin_right = 284.0
|
||||
margin_bottom = 234.0
|
||||
rect_min_size = Vector2( 0, 112 )
|
||||
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 )
|
||||
icon = ExtResource( 8 )
|
||||
icon = ExtResource( 7 )
|
||||
flat = true
|
||||
|
||||
[node name="Underwear" type="Tabs" parent="Wordrobe"]
|
||||
|
@ -198,25 +183,25 @@ columns = 6
|
|||
[node name="OwOCensor" type="TextureButton" parent="Wordrobe/Underwear/UndiesGrid"]
|
||||
margin_right = 106.0
|
||||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 19 )
|
||||
texture_normal = ExtResource( 17 )
|
||||
|
||||
[node name="Briefs" type="TextureButton" parent="Wordrobe/Underwear/UndiesGrid"]
|
||||
margin_left = 110.0
|
||||
margin_right = 216.0
|
||||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 20 )
|
||||
texture_normal = ExtResource( 18 )
|
||||
|
||||
[node name="ZBriefs" type="TextureButton" parent="Wordrobe/Underwear/UndiesGrid"]
|
||||
margin_left = 220.0
|
||||
margin_right = 326.0
|
||||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 21 )
|
||||
texture_normal = ExtResource( 19 )
|
||||
|
||||
[node name="Fundosi" type="TextureButton" parent="Wordrobe/Underwear/UndiesGrid"]
|
||||
margin_left = 330.0
|
||||
margin_right = 436.0
|
||||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 22 )
|
||||
texture_normal = ExtResource( 20 )
|
||||
|
||||
[node name="Accessoires" type="Tabs" parent="Wordrobe"]
|
||||
editor/display_folded = true
|
||||
|
@ -234,17 +219,17 @@ columns = 6
|
|||
|
||||
[node name="CanonCam" type="TextureButton" parent="Wordrobe/Accessoires/AccsGrid"]
|
||||
margin_right = 85.0
|
||||
margin_bottom = 118.0
|
||||
texture_normal = ExtResource( 23 )
|
||||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 21 )
|
||||
|
||||
[node name="RemoveAccessory" type="Button" parent="Wordrobe/Accessoires/AccsGrid"]
|
||||
margin_left = 89.0
|
||||
margin_right = 207.0
|
||||
margin_bottom = 118.0
|
||||
margin_right = 195.0
|
||||
margin_bottom = 112.0
|
||||
rect_min_size = Vector2( 85, 105 )
|
||||
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 )
|
||||
icon = ExtResource( 8 )
|
||||
icon = ExtResource( 7 )
|
||||
flat = true
|
||||
|
|
|
@ -9,6 +9,15 @@
|
|||
[node name="Credits" type="Node"]
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="RichTextLabel" type="RichTextLabel" parent="."]
|
||||
margin_left = 33.0
|
||||
margin_top = 19.0
|
||||
margin_right = 320.0
|
||||
margin_bottom = 206.0
|
||||
theme = ExtResource( 2 )
|
||||
bbcode_text = "Nathan's Dress Up is a remake of Zack's Dress Up, a flash game created from 2006 to 2009. The character use to be a blue fox named Zack but was changed to a blue fennec named Nathan."
|
||||
text = "Nathan's Dress Up is a remake of Zack's Dress Up, a flash game created from 2006 to 2009. The character use to be a blue fox named Zack but was changed to a blue fennec named Nathan."
|
||||
|
||||
[node name="Credits" type="RichTextLabel" parent="."]
|
||||
anchor_left = 0.5
|
||||
anchor_right = 0.5
|
||||
|
@ -28,8 +37,8 @@ Megawolf77
|
|||
Canon Rhode
|
||||
Raier
|
||||
|
||||
[img]sprites/sixam_wordmark.svg[/img]
|
||||
sixam.xyz
|
||||
Made with
|
||||
Godot Engine
|
||||
[/center]"
|
||||
text = "Created by
|
||||
Anthony Wilcox
|
||||
|
@ -42,8 +51,8 @@ Megawolf77
|
|||
Canon Rhode
|
||||
Raier
|
||||
|
||||
|
||||
sixam.xyz
|
||||
Made with
|
||||
Godot Engine
|
||||
"
|
||||
|
||||
[node name="Character" parent="." instance=ExtResource( 3 )]
|
||||
|
|
|
@ -1,167 +0,0 @@
|
|||
<?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"
|
||||
version="1.1"
|
||||
id="svg837"
|
||||
width="85"
|
||||
height="115"
|
||||
viewBox="0 0 85 115"
|
||||
sodipodi:docname="beyond_jacket.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata843">
|
||||
<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>
|
||||
<defs
|
||||
id="defs841" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="950"
|
||||
inkscape:window-height="991"
|
||||
id="namedview839"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="5.6568543"
|
||||
inkscape:cx="37.779955"
|
||||
inkscape:cy="59.939224"
|
||||
inkscape:window-x="960"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="layer3"
|
||||
showguides="false" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
inkscape:label="Original"
|
||||
transform="translate(17.592821,10.674505)"
|
||||
sodipodi:insensitive="true" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Color">
|
||||
<path
|
||||
style="display:inline;opacity:1;fill:#003380;fill-opacity:1;stroke:none;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 8.0736469,15.651414 c -3.000545,1.901906 -2.134901,57.073021 -2.134901,57.073021 -2.3101643,9.809195 1.7559102,10.522205 0.608284,17.795372 3.172745,1.81514 6.7511221,-1.62007 11.6707931,-0.28466 4.919671,1.33542 1.601085,5.99959 0.42698,11.243813 -1.174105,5.24423 13.404674,6.57995 20.637376,8.09176 6.041484,1.26281 12.406349,1.67677 18.502475,0.71164 7.9885,-1.26473 20.835815,-4.94864 22.772278,-8.37642 1.936463,-3.427783 -8.341438,-10.916233 -7.116337,-15.086632 1.225101,-4.170404 7.707079,-1.859528 7.970297,-4.981436 0.780656,-9.259011 0.132549,-21.086054 -0.569307,-31.596534 -0.521871,-7.815165 -2.704208,-23.341585 -2.704208,-23.341585 0,0 -5.708848,-12.627003 -11.386138,-12.66708 C 60.741934,14.190253 60.509291,27.100642 54.51114,27.46906 48.496563,27.838487 46.873273,13.029683 40.882224,13.676947 28.555535,15.008703 11.074193,13.749508 8.0736469,15.651414 Z"
|
||||
id="path864-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="zcczzaazzsacsssz" />
|
||||
<path
|
||||
style="fill:#0044aa;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 44.546875,13.707031 25.626953,15.4375 8.0742188,15.652344 6.5410156,34.566406 16.970703,30.5 15.363281,53.541016 3.09375,46.144531 2.2089844,58.34375 14.365234,67.855469 12.75,91 20.516847,89.350492 19.359375,103.26172 44.5,112 68.25,109.25 80.523438,102.02539 71.5,89 78,84.25 75.681641,63.273438 79.814453,61.525391 79.107422,50.742188 74.546875,53.021484 71.939453,29.427734 78.136719,26.900391 71.240234,15.298828 64.701172,14.060547 59.75,24.5 54.800781,28.203125 Z"
|
||||
id="path2087"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccccccccccccccccccccc" />
|
||||
<path
|
||||
style="fill:#ffff00;stroke:none;stroke-width:0.9295885px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 31.819805,13.737484 33.941126,26.774089 39.59798,24.824133 35.708892,13.721297 Z"
|
||||
id="path2055-4-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ffff00;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 15.026019,16.712158 16.970563,30.50074 22.097087,28.732973 18.915106,15.828275 Z"
|
||||
id="path2055"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ffff00;stroke:none;stroke-width:0.9295885px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 23.152765,15.437652 25.274086,28.474257 30.93094,26.524301 27.041852,15.421465 Z"
|
||||
id="path2055-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#ffff00;stroke:none;stroke-width:0.90405869px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 63.276764,15.406304 2.298097,13.567812 3.181981,0.453776 -0.176777,-15.097558 z"
|
||||
id="path2055-4-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#cccccc;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 16.970563,30.50074 45.75,22.250001 l 9.050775,5.952642 0.949224,7.297358 -5.499999,-7.25 -4,-3.5 z"
|
||||
id="path2091"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2.00954032;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 56.631992,34.231635 3.62878,76.772945"
|
||||
id="path2095"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 56.375,27.375001 0.999999,7.75 2.75,-6.875 11.813823,1.177891 z"
|
||||
id="path2093"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#0054d1;fill-opacity:1;stroke:none;stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 21.25,48.999983 33.75,64.749986 27.75,108 19.358749,103.26231 20.5,92.999995 18.217822,90.235144 Z"
|
||||
id="path2097"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#003380;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 23.18566,46.205584 11.625,14.124999 2.875,-8.374999 -13.75,-10.5 z"
|
||||
id="path2099"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#0054d1;fill-opacity:1;stroke:none;stroke-width:0.68006837px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 69.84449,54.070219 -5.410538,9.452541 6.988191,43.35405 9.101342,-4.85194 C 73.747444,90.013202 70.585165,69.697814 69.84449,54.070219 Z"
|
||||
id="path2097-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#003380;fill-opacity:1;stroke:none;stroke-width:0.68006825px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 68.787658,51.70312 -6.523796,8.07602 -1.569693,-7.094356 7.684004,-5.005329 z"
|
||||
id="path2099-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Re-Ink"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 8.0736469,15.651414 c -1.916671,16.5657 -7.0806162,60.446928 0.2411497,73.984505 1.7291064,3.220442 4.9833544,-0.736187 9.9030254,0.59923 4.919671,1.335417 1.601085,5.999584 0.42698,11.243811 -1.174105,5.24423 13.404674,6.57995 20.637376,8.09176 6.041484,1.26281 12.406349,1.67677 18.502475,0.71164 7.9885,-1.26473 20.835815,-4.94864 22.772278,-8.37642 1.936463,-3.427781 -8.341438,-10.916229 -7.116337,-15.086633 1.225101,-4.170404 7.707079,-1.859528 7.970297,-4.981436 0.780656,-9.259011 0.132549,-21.086054 -0.569307,-31.596534 -0.521871,-7.815165 -2.704208,-23.341585 -2.704208,-23.341585 0,0 -5.708848,-12.627002 -11.386138,-12.667079 C 60.741933,14.190253 60.50929,27.100641 54.511139,27.469059 48.496562,27.838486 47.580379,11.615469 41.58933,12.262733 29.262641,13.594489 11.074192,13.749508 8.0736469,15.651414 Z"
|
||||
id="path864"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cczzaazzsacsssc" />
|
||||
<path
|
||||
style="opacity:1;fill:none;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 21.918317,40.563119 -3.700495,49.67203"
|
||||
id="path870"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="opacity:1;fill:none;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 70.024752,47.679455 3.415842,39.139852"
|
||||
id="path872"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 9.2 KiB |
|
@ -1,34 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/beyond_jacket.svg-98f6b1bf2a6317c20336645182f41937.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/beyond_jacket.svg"
|
||||
dest_files=[ "res://.import/beyond_jacket.svg-98f6b1bf2a6317c20336645182f41937.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=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
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
|
@ -1,175 +0,0 @@
|
|||
<?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="28.045834mm"
|
||||
height="29.633333mm"
|
||||
viewBox="0 0 28.045834 29.633333"
|
||||
version="1.1"
|
||||
id="svg2007"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="beyond_jeans.svg">
|
||||
<defs
|
||||
id="defs2001">
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter3128"
|
||||
x="-0.21130836"
|
||||
width="1.4226167"
|
||||
y="-0.35169941"
|
||||
height="1.7033988">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.80993903"
|
||||
id="feGaussianBlur3130" />
|
||||
</filter>
|
||||
<filter
|
||||
inkscape:collect="always"
|
||||
style="color-interpolation-filters:sRGB"
|
||||
id="filter3243"
|
||||
x="-0.084246888"
|
||||
width="1.1684938"
|
||||
y="-0.49529121"
|
||||
height="1.9905824">
|
||||
<feGaussianBlur
|
||||
inkscape:collect="always"
|
||||
stdDeviation="0.59648199"
|
||||
id="feGaussianBlur3245" />
|
||||
</filter>
|
||||
</defs>
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.9195959"
|
||||
inkscape:cx="61.4132"
|
||||
inkscape:cy="66.913206"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showguides="false"
|
||||
inkscape:window-width="1235"
|
||||
inkscape:window-height="991"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0" />
|
||||
<metadata
|
||||
id="metadata2004">
|
||||
<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(-78.959229,-134.01666)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Color">
|
||||
<path
|
||||
style="fill:#0044aa;fill-opacity:1;stroke:none;stroke-width:0.9976235;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 0.7201693,27.454537 C 6.177249,19.629991 9.4499313,2.5232009 10.205357,2.4050384 13.339093,1.9148645 21.153632,2.0908693 25.796875,0.6651976 c 1.830396,-0.562009 1.614178,15.8067304 1.795384,24.4988404 0.06654,3.19163 -10.098838,4.366766 -9.543896,1.22259 0.698309,-3.956459 1.112967,-14.852833 1.112967,-14.852833 0,0 -6.673668,9.990013 -7.963785,16.028404 -0.328044,1.535408 -12.5071107,2.802641 -10.4773757,-0.107662 z"
|
||||
id="path2567-0"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssssscss" />
|
||||
<path
|
||||
style="fill:#1a1a1a;fill-opacity:1;stroke:none;stroke-width:0.2714825;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;filter:url(#filter3243)"
|
||||
d="m 10.02017,4.123604 c 0,0 -0.04879,-1.343398 0.388253,-1.3508584 4.583491,-0.07824 11.326764,-0.7915872 16.199194,-1.5367997 0.388007,-0.059344 0.526204,0.8875387 0.280761,0.9543561 C 23.179675,3.1999316 10.02017,4.123604 10.02017,4.123604 Z"
|
||||
id="path2583-9-6"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
<path
|
||||
style="fill:#003380;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 12.661894,2.705928 10.791007,12.661718 6.5146947,14.66624 10.02017,4.123604 Z"
|
||||
id="path2805"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#003380;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 22.851545,2.4052499 1.369757,8.9535291 3.040189,2.238383 -0.899596,-11.3444445 z"
|
||||
id="path2805-1"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccccc" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25095776px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 5.9253836,16.992574 c 0.3796144,0.919614 5.6768224,3.689526 7.3816944,3.256184 1.704872,-0.433343 1.172851,0.943917 -0.280317,1.773168 -1.45317,0.829251 -6.852688,-1.774991 -7.5685732,-3.320662 -0.7158851,-1.545672 0.087581,-2.628304 0.4671958,-1.70869 z"
|
||||
id="path2839"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="zzzzz" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 10.02017,3.5944373 c 0,0 -0.046492,-1.3433979 0.369933,-1.3508583 C 14.757316,2.165339 21.1824,1.4519917 25.824918,0.70677933 26.194616,0.64743533 26.326292,1.5943179 26.092431,1.6611353 22.558728,2.670765 10.02017,3.5944373 10.02017,3.5944373 Z"
|
||||
id="path2583-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 10.02017,4.123604 c 0,0 -0.04649,-1.343398 0.369933,-1.3508584 4.367214,-0.07824 10.792297,-0.7915873 15.434815,-1.5367997 0.369698,-0.059344 0.501374,0.8875386 0.267513,0.954356 C 22.558728,3.1999315 10.02017,4.123604 10.02017,4.123604 Z"
|
||||
id="path2583"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Re-ink"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.9976235;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 0.7201694,27.454536 C 6.1772493,19.62999 9.4499316,2.5232009 10.205357,2.4050384 13.339093,1.9148645 21.153632,2.0908693 25.796875,0.66519761 27.627272,0.10318858 27.411054,16.471927 27.59226,25.164037 c 0.06654,3.191629 -10.098839,4.366766 -9.543897,1.22259 0.698309,-3.956459 1.112967,-14.852832 1.112967,-14.852832 0,0 -6.673668,9.990012 -7.963785,16.028402 -0.328044,1.535408 -12.5071103,2.802641 -10.4773756,-0.107661 z"
|
||||
id="path2567"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssssscss" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 19.562311,10.485372 C 19.815933,8.7226966 19.040519,2.8667529 19.040519,2.8667529"
|
||||
id="path2571"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 19.695946,9.7169723 20.500613,2.7246489"
|
||||
id="path2573"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 8.683823,2.8928543 6.6124843,4.3962453 5.5434063,8.1714273 8.850867,10.242766 10.02017,3.5944373 Z"
|
||||
id="path3262"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000;stroke:none;stroke-width:0.29349181px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 26.866978,2.8841931 24.555418,2.6121505 24.202085,6.0632908 27.920399,5.2673365 27.856475,2.7705369 26.866978,2.8841931"
|
||||
id="path3279"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 6.5146947,14.66624 3.6081386,21.147526 2.6058778,19.109596 5.1449383,13.797614 Z"
|
||||
id="path3281"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 8.5 KiB |
|
@ -1,34 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/beyond_jeans.svg-7d94689020ceb4d3ef57e6a831a9ead6.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/beyond_jeans.svg"
|
||||
dest_files=[ "res://.import/beyond_jeans.svg-7d94689020ceb4d3ef57e6a831a9ead6.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=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
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
7
project/sprites/tops.json
Normal file
7
project/sprites/tops.json
Normal file
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"accessoires": {
|
||||
"camera": {
|
||||
"sprite": {}
|
||||
}
|
||||
}
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
# See the LICENSE file in the project root for more information.
|
||||
extends Node
|
||||
|
||||
var version = "19.xx"
|
||||
var version = "2.0"
|
||||
|
||||
func is_game_paused(is_paused):
|
||||
if is_paused == true:
|
||||
|
|
|
@ -53,10 +53,6 @@ func _process(delta):
|
|||
if $Clothes/Wordrobe/Pants/PantsGrid/Jeans.is_pressed():
|
||||
change_bottoms(load("res://sprites/jeans.svg"))
|
||||
|
||||
if $Clothes/Wordrobe/Pants/PantsGrid/BeyondPants.is_pressed():
|
||||
change_bottoms(load("res://sprites/beyond_jeans.svg"))
|
||||
|
||||
|
||||
if $Clothes/Wordrobe/Pants/PantsGrid/Sweats.is_pressed():
|
||||
change_bottoms(load("res://sprites/sweat_pants.svg"))
|
||||
|
||||
|
@ -83,11 +79,8 @@ func _process(delta):
|
|||
if $Clothes/Wordrobe/Shirts/ShirtsGrid/TrainHoodie.is_pressed():
|
||||
change_tops(load("res://sprites/train_hoodie.svg"))
|
||||
|
||||
if $Clothes/Wordrobe/Shirts/ShirtsGrid/WhatsNewShirt.is_pressed():
|
||||
change_tops(load("res://sprites/whatsnew_shirt.svg"))
|
||||
|
||||
if $Clothes/Wordrobe/Shirts/ShirtsGrid/BeyondJacket.is_pressed():
|
||||
change_tops(load("res://sprites/beyond_jacket.svg"))
|
||||
if $Clothes/Wordrobe/Shirts/ShirtsGrid/Sweatshirt.is_pressed():
|
||||
change_tops(load("res://sprites/old_sweatshirt.svg"))
|
||||
|
||||
# Remove clothes
|
||||
# ===========================================================
|
||||
|
|
Loading…
Add table
Reference in a new issue