diff --git a/project.godot b/project.godot index 4bcd87a..e85e42e 100644 --- a/project.godot +++ b/project.godot @@ -34,8 +34,9 @@ gdscript/completion/autocomplete_setters_and_getters=true window/size/width=800 window/size/height=500 window/size/resizable=false +window/energy_saving/keep_screen_on=false mouse_cursor/custom_image="res://sprites/clothes/cursor.png" -window/stretch/mode="viewport" +window/stretch/mode="2d" window/stretch/aspect="keep" [gui] diff --git a/scenes/characterBase.tscn b/scenes/characterBase.tscn index 1d473c9..8c44b73 100644 --- a/scenes/characterBase.tscn +++ b/scenes/characterBase.tscn @@ -1,10 +1,10 @@ [gd_scene load_steps=32 format=2] -[ext_resource path="res://scripts/characterBase.gd" type="Script" id=1] +[ext_resource path="res://sprites/character/shadow.svg" type="Texture" id=1] [ext_resource path="res://sprites/character/tail/tail0.svg" type="Texture" id=2] [ext_resource path="res://sprites/character/tail/tail1.svg" type="Texture" id=3] [ext_resource path="res://sprites/character/tail/tail2.svg" type="Texture" id=4] -[ext_resource path="res://sprites/character_base.svg" type="Texture" id=5] +[ext_resource path="res://sprites/character_base_legs.svg" type="Texture" id=5] [ext_resource path="res://sprites/character/eyes/eyes1.png" type="Texture" id=6] [ext_resource path="res://sprites/character/eyes/eyes2.png" type="Texture" id=7] [ext_resource path="res://sprites/character/eyes/eyes3.png" type="Texture" id=8] @@ -23,13 +23,37 @@ [ext_resource path="res://sprites/character/mouth/mouth9.png" type="Texture" id=21] [ext_resource path="res://sprites/character/mouth/mouth10.png" type="Texture" id=22] [ext_resource path="res://sprites/character/mouth/mouth12.png" type="Texture" id=23] -[ext_resource path="res://sprites/clothes/briefs.svg" type="Texture" id=24] -[ext_resource path="res://sprites/clothes/blank_bottom.png" type="Texture" id=25] +[ext_resource path="res://sprites/character_base_top.svg" type="Texture" id=25] [ext_resource path="res://sprites/clothes/blank_top.png" type="Texture" id=26] -[ext_resource path="res://sprites/character/shadow.svg" type="Texture" id=27] +[ext_resource path="res://sprites/character_base_head.svg" type="Texture" id=27] [ext_resource path="res://sprites/character/mouth/mouth11.png" type="Texture" id=28] -[sub_resource type="SpriteFrames" id=1] +[sub_resource type="GDScript" id=1] +script/source = "# Anthony Wilcox licenses this file to you under the MPL license. +# See the LICENSE file in the project root for more information. +extends Node2D + +onready var character = preload(\"res://resources/character.tres\") +onready var accessory = $body/accessory +#onready var underwear = $Undies +onready var bottom = $body/legs +onready var top = $body/top + +func _process(delta): + if character.accessory != null: + accessory.texture = character.accessory + +# if character.underwear != null: +# underwear.texture = character.underwear + + if character.bottom != null: + bottom.texture = character.bottom + + if character.top != null: + top.texture = character.top +" + +[sub_resource type="SpriteFrames" id=2] animations = [ { "frames": [ ExtResource( 2 ), ExtResource( 3 ), ExtResource( 4 ) ], "loop": true, @@ -37,7 +61,7 @@ animations = [ { "speed": 2.0 } ] -[sub_resource type="SpriteFrames" id=2] +[sub_resource type="SpriteFrames" id=3] animations = [ { "frames": [ ExtResource( 6 ), ExtResource( 7 ), ExtResource( 8 ), ExtResource( 9 ), ExtResource( 10 ), ExtResource( 11 ), ExtResource( 12 ) ], "loop": true, @@ -45,7 +69,7 @@ animations = [ { "speed": 2.0 } ] -[sub_resource type="SpriteFrames" id=3] +[sub_resource type="SpriteFrames" id=4] animations = [ { "frames": [ ExtResource( 13 ), ExtResource( 14 ), ExtResource( 15 ), ExtResource( 16 ), ExtResource( 17 ), ExtResource( 18 ), ExtResource( 19 ), ExtResource( 20 ), ExtResource( 21 ), ExtResource( 22 ), ExtResource( 28 ), ExtResource( 23 ) ], "loop": true, @@ -54,48 +78,73 @@ animations = [ { } ] [node name="characterBase" type="Node2D"] -script = ExtResource( 1 ) +position = Vector2( -19, -92 ) +script = SubResource( 1 ) -[node name="base" type="Node2D" parent="."] -position = Vector2( -103.897, -160.477 ) +[node name="shadow" type="Sprite" parent="."] +position = Vector2( 4.84271, 244.714 ) +texture = ExtResource( 1 ) -[node name="Tail" type="AnimatedSprite" parent="base"] -position = Vector2( 55.0701, 172.425 ) -frames = SubResource( 1 ) -frame = 2 +[node name="body" type="Node2D" parent="."] +__meta__ = { +"_edit_lock_": true +} + +[node name="tail" type="AnimatedSprite" parent="body"] +position = Vector2( -41.9999, 100.157 ) +scale = Vector2( 0.927713, 1 ) +frames = SubResource( 2 ) +frame = 1 playing = true +__meta__ = { +"_edit_lock_": true +} -[node name="shadow" type="Sprite" parent="base"] -position = Vector2( 91.524, 317.295 ) -texture = ExtResource( 27 ) +[node name="top" type="Sprite" parent="body"] +position = Vector2( 7, 80 ) +texture = ExtResource( 25 ) +__meta__ = { +"_edit_lock_": true +} -[node name="Tony" type="Sprite" parent="base"] -position = Vector2( 96.3522, 164.086 ) +[node name="legs" type="Sprite" parent="body"] +position = Vector2( 3, 189 ) texture = ExtResource( 5 ) -[node name="Eyes" type="AnimatedSprite" parent="base"] -position = Vector2( 114.227, 63.9224 ) -frames = SubResource( 2 ) -playing = true +[node name="head" type="Sprite" parent="body"] +position = Vector2( 14.1214, -26.841 ) +texture = ExtResource( 27 ) +__meta__ = { +"_edit_lock_": true +} -[node name="Mouth" type="AnimatedSprite" parent="base"] -position = Vector2( 148.505, 68.0261 ) +[node name="accessory" type="Sprite" parent="body"] +position = Vector2( 9.54095, 73.0832 ) +texture = ExtResource( 26 ) +__meta__ = { +"_edit_lock_": true +} + +[node name="emote" type="Node2D" parent="body"] +position = Vector2( 51.7305, -20.2165 ) +__meta__ = { +"_edit_lock_": true +} + +[node name="eyes" type="AnimatedSprite" parent="body/emote"] +position = Vector2( -19.9234, -2.40303 ) frames = SubResource( 3 ) -frame = 7 +frame = 3 playing = true +__meta__ = { +"_edit_lock_": true +} -[node name="Undies" type="Sprite" parent="."] -position = Vector2( -17.3889, 95.818 ) -texture = ExtResource( 24 ) - -[node name="Bottom" type="Sprite" parent="."] -position = Vector2( -15.7094, 90.851 ) -texture = ExtResource( 25 ) - -[node name="Top" type="Sprite" parent="."] -position = Vector2( -7.53471, -0.0449677 ) -texture = ExtResource( 26 ) - -[node name="Accessory" type="Sprite" parent="."] -position = Vector2( -10.6723, -5.33797 ) -texture = ExtResource( 26 ) +[node name="mouth" type="AnimatedSprite" parent="body/emote"] +position = Vector2( 0.510399, 2.06003 ) +frames = SubResource( 4 ) +frame = 6 +playing = true +__meta__ = { +"_edit_lock_": true +} diff --git a/scenes/game.tscn b/scenes/game.tscn index 90967cf..7ad68ca 100644 --- a/scenes/game.tscn +++ b/scenes/game.tscn @@ -1,7 +1,7 @@ [gd_scene load_steps=10 format=2] [ext_resource path="res://scenes/characterBase.tscn" type="PackedScene" id=1] -[ext_resource path="res://sprites/clothes/background.svg" type="Texture" id=2] +[ext_resource path="res://sprites/world/background.svg" type="Texture" id=2] [ext_resource path="res://sprites/ui/blue_boxCross.png" type="Texture" id=3] [ext_resource path="res://scenes/wardrobe.tscn" type="PackedScene" id=4] [ext_resource path="res://sprites/clothes/icrazy_frame.svg" type="Texture" id=5] @@ -28,7 +28,7 @@ position = Vector2( 35.118, -14.56 ) texture = ExtResource( 6 ) [node name="characterBase" parent="." instance=ExtResource( 1 )] -position = Vector2( 126.596, 319.219 ) +position = Vector2( 145.146, 205.536 ) [node name="ui" type="CanvasLayer" parent="."] diff --git a/scenes/wardrobe.tscn b/scenes/wardrobe.tscn index 64503e0..04d41dd 100644 --- a/scenes/wardrobe.tscn +++ b/scenes/wardrobe.tscn @@ -1,7 +1,6 @@ -[gd_scene load_steps=21 format=2] +[gd_scene load_steps=18 format=2] [ext_resource path="res://scenes/clothing/camera.tscn" type="PackedScene" id=1] -[ext_resource path="res://scenes/clothing/undies/zBriefs.tscn" type="PackedScene" id=2] [ext_resource path="res://scenes/clothing/pants/beatUpJeans.tscn" type="PackedScene" id=3] [ext_resource path="res://scenes/clothing/pants/jeans.tscn" type="PackedScene" id=4] [ext_resource path="res://scenes/clothing/pants/skirt.tscn" type="PackedScene" id=5] @@ -17,9 +16,7 @@ [ext_resource path="res://scenes/clothing/tops/atomicShirt.tscn" type="PackedScene" id=15] [ext_resource path="res://scenes/clothing/tops/nlShirt.tscn" type="PackedScene" id=16] [ext_resource path="res://scenes/clothing/pants/sweatPants.tscn" type="PackedScene" id=17] -[ext_resource path="res://scenes/clothing/undies/briefs.tscn" type="PackedScene" id=20] [ext_resource path="res://scripts/wardrobe.gd" type="Script" id=21] -[ext_resource path="res://scenes/clothing/undies/fundosi.tscn" type="PackedScene" id=22] [node name="Wordrobe" type="TabContainer"] anchor_right = 1.0 @@ -58,7 +55,7 @@ columns = 4 [node name="removePants" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"] margin_right = 106.0 -margin_bottom = 112.0 +margin_bottom = 134.0 rect_min_size = Vector2( 0, 112 ) texture_normal = ExtResource( 9 ) @@ -66,53 +63,53 @@ texture_normal = ExtResource( 9 ) anchor_right = 0.0 anchor_bottom = 0.0 margin_left = 110.0 -margin_right = 216.0 -margin_bottom = 112.0 +margin_right = 220.0 +margin_bottom = 134.0 [node name="jeans" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 4 )] anchor_right = 0.0 anchor_bottom = 0.0 -margin_left = 220.0 -margin_right = 326.0 -margin_bottom = 112.0 +margin_left = 224.0 +margin_right = 330.0 +margin_bottom = 134.0 [node name="camoJeans" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 7 )] anchor_right = 0.0 anchor_bottom = 0.0 -margin_left = 330.0 -margin_right = 436.0 -margin_bottom = 112.0 +margin_left = 334.0 +margin_right = 444.0 +margin_bottom = 134.0 [node name="sweatPants" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 17 )] anchor_right = 0.0 anchor_bottom = 0.0 -margin_top = 116.0 +margin_top = 138.0 margin_right = 106.0 -margin_bottom = 228.0 +margin_bottom = 270.0 [node name="camoJeans2" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 8 )] anchor_right = 0.0 anchor_bottom = 0.0 margin_left = 110.0 -margin_top = 116.0 -margin_right = 216.0 -margin_bottom = 228.0 +margin_top = 138.0 +margin_right = 220.0 +margin_bottom = 270.0 [node name="formalSkirt" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 6 )] anchor_right = 0.0 anchor_bottom = 0.0 -margin_left = 220.0 -margin_top = 116.0 -margin_right = 326.0 -margin_bottom = 228.0 +margin_left = 224.0 +margin_top = 138.0 +margin_right = 330.0 +margin_bottom = 270.0 [node name="skirt" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 5 )] anchor_right = 0.0 anchor_bottom = 0.0 -margin_left = 330.0 -margin_top = 116.0 -margin_right = 436.0 -margin_bottom = 228.0 +margin_left = 334.0 +margin_top = 138.0 +margin_right = 444.0 +margin_bottom = 270.0 [node name="Shirts" type="Tabs" parent="."] visible = false @@ -182,40 +179,6 @@ margin_top = 119.0 margin_right = 106.0 margin_bottom = 234.0 -[node name="Underwear" type="Tabs" parent="."] -visible = false -anchor_right = 1.0 -anchor_bottom = 1.0 -margin_left = 5.0 -margin_top = 40.0 -margin_right = -5.0 -margin_bottom = -10.0 - -[node name="UndiesScroll" type="ScrollContainer" parent="Underwear"] -anchor_right = 1.0 -anchor_bottom = 1.0 - -[node name="UndiesGrid" type="GridContainer" parent="Underwear/UndiesScroll"] -margin_right = 790.0 -margin_bottom = 450.0 -size_flags_horizontal = 3 -size_flags_vertical = 3 -columns = 3 - -[node name="fundosi" parent="Underwear/UndiesScroll/UndiesGrid" instance=ExtResource( 22 )] -margin_right = 106.0 -margin_bottom = 112.0 - -[node name="zBriefs" parent="Underwear/UndiesScroll/UndiesGrid" instance=ExtResource( 2 )] -margin_left = 110.0 -margin_right = 216.0 -margin_bottom = 112.0 - -[node name="briefs" parent="Underwear/UndiesScroll/UndiesGrid" instance=ExtResource( 20 )] -margin_left = 220.0 -margin_right = 326.0 -margin_bottom = 112.0 - [node name="Accessoires" type="Tabs" parent="."] visible = false anchor_right = 1.0 diff --git a/scripts/ui.gd b/scripts/ui.gd index f9d17e1..c86509b 100644 --- a/scripts/ui.gd +++ b/scripts/ui.gd @@ -1,12 +1,12 @@ -tool extends Control onready var character = preload("res://resources/character.tres") -onready var blank_top = preload("res://sprites/clothes/blank_top.png") -onready var blank_bottom = preload("res://sprites/clothes/blank_bottom.png") +onready var blank_accessory = preload("res://sprites/clothes/blank_top.png") +onready var base_top = preload("res://sprites/character_base_top.svg") +onready var base_bottom = preload("res://sprites/character_base_legs.svg") func _on_clearBtn_pressed(): $clear.play() - character.accessory = blank_top - character.bottom = blank_bottom - character.top = blank_top + character.accessory = blank_accessory + character.bottom = base_bottom + character.top = base_top diff --git a/scripts/wardrobe.gd b/scripts/wardrobe.gd index 4741a96..317cd62 100644 --- a/scripts/wardrobe.gd +++ b/scripts/wardrobe.gd @@ -1,12 +1,13 @@ extends TabContainer onready var character = preload("res://resources/character.tres") -onready var blank_top = preload("res://sprites/clothes/blank_top.png") -onready var blank_bottom = preload("res://sprites/clothes/blank_bottom.png") +onready var blank_accessory = preload("res://sprites/clothes/blank_top.png") +onready var base_top = preload("res://sprites/character_base_top.svg") +onready var base_bottom = preload("res://sprites/character_base_legs.svg") onready var pants_grid = $Pants/PantsScroll/PantsGrid onready var shirts_grid = $Shirts/ShirtsScroll/ShirtsGrid -onready var undies_grid = $Underwear/UndiesScroll/UndiesGrid +#onready var undies_grid = $Underwear/UndiesScroll/UndiesGrid onready var accs_grid = $Accessoires/AccsScroll/AccsGrid func list_files_in_directory(path): @@ -44,10 +45,10 @@ func check_for_dlc(dlc_pack): # Lists the files in each of their respective directories var shirts_dir = "res://scenes/dlc/shirts/" var pants_dir = "res://scenes/dlc/pants/" - var undies_dir = "res://scenes/dlc/undies/" +# var undies_dir = "res://scenes/dlc/undies/" var dlc_shirts = list_files_in_directory(shirts_dir) var dlc_pants = list_files_in_directory(pants_dir) - var dlc_undies = list_files_in_directory(undies_dir) +# var dlc_undies = list_files_in_directory(undies_dir) # Make sure each file actually exist, instance them # and add them to their respective tabs @@ -63,21 +64,21 @@ func check_for_dlc(dlc_pack): shirts_grid.add_child(init) print_debug("Initialized: " + pants_dir + pants) - for undies in dlc_undies: - if dir.file_exists(undies_dir + undies): - var init = load(undies_dir + undies).instance() - shirts_grid.add_child(init) - print_debug("Initialized: " + undies_dir + undies) +# for undies in dlc_undies: +# if dir.file_exists(undies_dir + undies): +# var init = load(undies_dir + undies).instance() +# shirts_grid.add_child(init) +# print_debug("Initialized: " + undies_dir + undies) func _ready(): # check_for_dlc("testdlc.pck") pass func _on_removeAccessory_pressed(): - character.accessory = blank_top + character.accessory = blank_accessory func _on_removePants_pressed(): - character.bottom = blank_bottom + character.bottom = base_bottom func _on_removeShirt_pressed(): - character.top = blank_top + character.top = base_top diff --git a/sprites/character_base.svg b/sprites/character_base.svg index 925e51f..8de1b63 100644 --- a/sprites/character_base.svg +++ b/sprites/character_base.svg @@ -1,6 +1,4 @@ - - + version="1.1" + viewBox="0 0 43.377262 37.227165" + height="37.227165mm" + width="43.377262mm"> + inkscape:pagecheckerboard="true" + fit-margin-bottom="0" + fit-margin-right="0" + fit-margin-left="0" + fit-margin-top="0" + showgrid="false" + inkscape:current-layer="layer2" + inkscape:document-units="mm" + inkscape:cy="121.24583" + inkscape:cx="93.607727" + inkscape:zoom="2.8" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" /> @@ -51,149 +50,115 @@ image/svg+xml - + - + + inkscape:groupmode="layer"> + d="m 12.756696,20.042186 c -3.0330485,3.485978 -6.9287479,8.842867 -10.6778266,9.780135 5.411336,2.216856 13.7737856,1.25077 18.6153276,-3.590773 -1.673498,-3.036966 -4.542199,-5.822302 -7.937501,-6.189362 z" + style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + d="m 34.726561,20.939881 c 1.424506,0.409095 2.905617,0.519717 4.441219,0.519717 -0.631436,0.891699 -1.802839,1.33673 -2.834817,1.795387 0.679627,2.000634 1.918615,4.085352 2.55134,6.236608 -0.196308,-1.699022 -1.726382,-2.566554 -2.976563,-3.449034 -1.289203,1.845106 -2.413179,3.349977 -4.441222,4.110492 -0.02396,-1.807178 -0.561611,-3.490928 -2.102492,-4.464845 -1.266898,0.154353 -2.719548,0.200395 -2.62221,1.063057 0.225306,1.996779 1.707495,3.473391 3.168393,4.548419 2.475619,10.439903 -17.224345,5.695069 -9.782977,-1.241126 2.338792,-1.754093 0.344395,-5.168508 -2.315104,-4.346726 -1.654478,0.194645 -1.540993,1.586536 -1.417411,3.023812 -1.143466,-0.96755 -1.993973,-1.935806 -2.315104,-3.449035 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176 8.399753,-4.993925 13.806413,-4.295882 18.993302,-0.425223 z" + style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + d="M 31.513766,4.4697399 33.171594,0.92059932 36.191219,5.9184807 Z" + style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:1.42187;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + d="m 15.733259,21.365104 c 8.031531,-1.988559 12.40585,-4.181396 18.993303,-0.425223 4.457472,-16.6670615 -22.644325,-7.978795 -21.296268,-1.23851 0.0953,0.476477 1.928934,1.360996 2.302965,1.663733" + style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + d="M 12.756695,20.042186 C 18.416439,16.062161 25.70522,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988082 29.207101,0.4402425 18.893463,6.8361942 13.370906,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z" + style="fill:#6699cc;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - - - - + d="M 24.993675,13.852831 C 23.111329,11.112846 22.776665,7.1008422 24.899181,4.5924141 28.443308,3.5516118 32.34615,3.7638575 35.151786,5.8680839 34.290793,8.2025937 31.848954,10.704232 32.978422,13.285862" + style="fill:#333333;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> - + id="path5045" + d="m 32.97842,13.285862 c -1.622684,-1.035005 -4.693573,-0.02406 -6.709075,0.0945" + style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + + d="M 15.537908,8.9384397 C 13.980201,6.756896 10.705056,5.0717367 8.3808294,3.6521391 8.0327779,4.6634621 8.1572432,5.7312218 8.0376818,6.7672806 8.4787557,6.6562752 8.5984797,6.227326 8.8710403,5.9648957 8.9919797,7.3299488 9.1194496,8.5491118 9.7534199,9.6936258 10.049714,9.24812 10.142439,8.5379754 10.341673,7.9944576 c 0.285982,1.3580005 0.172484,2.8610974 0.392168,4.2007214 0.248875,-0.839177 0.348466,-1.693489 0.588254,-2.5015532 1.028074,0.8901012 1.251834,2.2544372 1.715738,3.4455352 0.08118,-1.814112 1.504476,-2.893544 2.500075,-4.2007213 z" + style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.509042;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + inkscape:label="Re-ink" + id="layer2" + inkscape:groupmode="layer"> + d="m 31.324776,3.8055155 c 0,0 1.628858,-3.7746833 2.315104,-2.93216171 2.908313,3.57061041 2.551339,5.04512691 2.551339,5.04512691" + style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + d="m 34.726562,20.939881 c 1.424506,0.409095 2.905615,0.519717 4.441219,0.519717 -0.631435,0.891699 -1.802841,1.33673 -2.83482,1.795387 0.679627,2.000634 1.918617,4.085351 2.55134,6.236607 -0.196308,-1.69902 -1.726382,-2.566552 -2.976563,-3.449033 -1.289202,1.845105 -2.41318,3.349976 -4.44122,4.110491 -0.02396,-1.807178 -0.561611,-3.490926 -2.102492,-4.464844 -1.266898,0.154353 -2.347681,0.239471 -2.62221,1.063059 -0.342642,1.027925 -0.123795,3.337174 2.207894,3.621326 m -8.822478,-0.314035 c 2.922238,-0.08554 0.344395,-5.168508 -2.315104,-4.346726 -1.654478,0.194645 -1.540993,1.586537 -1.417411,3.02381 -1.143466,-0.967549 -1.993973,-1.935805 -2.315104,-3.449033 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176" + style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + d="M 12.756696,20.042186 C 18.41644,16.062161 25.705221,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988086 29.207102,0.4402425 18.893464,6.8361949 13.370907,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z" + style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + d="m 25.088169,19.569717 c 1.190156,-0.763595 2.367736,-0.865038 3.449032,0 -0.218392,0.862046 -0.809812,1.244368 -1.464656,1.653646 -0.887893,-0.606787 -1.473948,-1.058147 -1.984376,-1.653646 z" + style="fill:#ff99cc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> - - + - + d="M 23.765253,4.4979163 23.623512,2.4662944 26.836309,2.4190474 V 3.836458 Z" + style="fill:#6699cc;fill-opacity:1;stroke:#000000;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + d="M 12.757044,20.045314 C 8.5429472,14.783337 6.1354862,7.5554427 6.1354862,0.80142861 11.351958,1.2722088 15.093613,5.0085232 18.952931,7.8743621" + style="fill:none;stroke:#000000;stroke-width:1.18376;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> diff --git a/sprites/character_base_head.svg b/sprites/character_base_head.svg new file mode 100644 index 0000000..302a498 --- /dev/null +++ b/sprites/character_base_head.svg @@ -0,0 +1,163 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sprites/character_base_head.svg.import b/sprites/character_base_head.svg.import new file mode 100644 index 0000000..77dc463 --- /dev/null +++ b/sprites/character_base_head.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="StreamTexture" +path.s3tc="res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.s3tc.stex" +path.etc2="res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.etc2.stex" +path.etc="res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.etc.stex" +metadata={ +"imported_formats": [ "s3tc", "etc2", "etc" ], +"vram_texture": true +} + +[deps] + +source_file="res://sprites/character_base_head.svg" +dest_files=[ "res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.s3tc.stex", "res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.etc2.stex", "res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.etc.stex" ] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=true +flags/filter=true +flags/mipmaps=true +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=false +svg/scale=1.0 diff --git a/sprites/character_base_legs.svg b/sprites/character_base_legs.svg new file mode 100644 index 0000000..ccdeb3c --- /dev/null +++ b/sprites/character_base_legs.svg @@ -0,0 +1,95 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + diff --git a/sprites/character_base_legs.svg.import b/sprites/character_base_legs.svg.import new file mode 100644 index 0000000..bd1dfd2 --- /dev/null +++ b/sprites/character_base_legs.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="StreamTexture" +path.s3tc="res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.s3tc.stex" +path.etc2="res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.etc2.stex" +path.etc="res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.etc.stex" +metadata={ +"imported_formats": [ "s3tc", "etc2", "etc" ], +"vram_texture": true +} + +[deps] + +source_file="res://sprites/character_base_legs.svg" +dest_files=[ "res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.s3tc.stex", "res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.etc2.stex", "res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.etc.stex" ] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=true +flags/filter=true +flags/mipmaps=true +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=false +svg/scale=1.0 diff --git a/sprites/character_base_top.svg b/sprites/character_base_top.svg new file mode 100644 index 0000000..4813e33 --- /dev/null +++ b/sprites/character_base_top.svg @@ -0,0 +1,123 @@ + + + + + + + + image/svg+xml + + + + + + + + + + + + + + + + + + + diff --git a/sprites/character_base_top.svg.import b/sprites/character_base_top.svg.import new file mode 100644 index 0000000..5360e10 --- /dev/null +++ b/sprites/character_base_top.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="StreamTexture" +path.s3tc="res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.s3tc.stex" +path.etc2="res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.etc2.stex" +path.etc="res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.etc.stex" +metadata={ +"imported_formats": [ "s3tc", "etc2", "etc" ], +"vram_texture": true +} + +[deps] + +source_file="res://sprites/character_base_top.svg" +dest_files=[ "res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.s3tc.stex", "res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.etc2.stex", "res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.etc.stex" ] + +[params] + +compress/mode=2 +compress/lossy_quality=0.7 +compress/hdr_mode=0 +compress/bptc_ldr=0 +compress/normal_map=0 +flags/repeat=true +flags/filter=true +flags/mipmaps=true +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=false +svg/scale=1.0 diff --git a/sprites/clothes/beat_up_jeans.svg b/sprites/clothes/beat_up_jeans.svg index 88d4402..3895842 100644 --- a/sprites/clothes/beat_up_jeans.svg +++ b/sprites/clothes/beat_up_jeans.svg @@ -1,6 +1,4 @@ - - + version="1.1" + viewBox="0 0 29.356467 35.498169" + height="35.498169mm" + width="29.356466mm"> + inkscape:window-x="-9" + inkscape:window-height="1001" + inkscape:window-width="1920" + showguides="false" + fit-margin-bottom="0" + fit-margin-right="0" + fit-margin-left="0" + fit-margin-top="0" + inkscape:pagecheckerboard="true" + showgrid="false" + inkscape:current-layer="layer1" + inkscape:document-units="mm" + inkscape:cy="72.755858" + inkscape:cx="60.889655" + inkscape:zoom="7.9195959" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" /> @@ -50,65 +49,106 @@ image/svg+xml - + - - + inkscape:label="Layer 1"> + + + + + + + + + + + + + + inkscape:groupmode="layer"> + 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 0.377976,-12.413999 0.377976,-12.413999 0,0 -5.938677,7.551179 -7.228794,13.589569 -0.328044,1.535408 -12.5071103,2.802641 -10.4773756,-0.107661 z" + style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.997624;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + d="m 18.426339,13.972628 c 0,0 1.617341,-2.392754 1.269607,-4.2556557 C 19.348213,7.8540704 19.040519,2.8667529 19.040519,2.8667529" + style="fill:none;stroke:#000000;stroke-width:0.5;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" + style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + d="m 8.2727251,8.6461754 c 0,0 2.7605219,0.9937891 3.6076819,-0.064851 0.84716,-1.0586401 0.876732,-5.245691 0.876732,-5.245691 l -3.1378736,0.420475 z" + style="fill:#676767;fill-opacity:1;stroke:#000000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + d="m 9.6192654,3.7561084 c 0,0 0.3544121,-0.9759023 0.7708376,-0.9833627 4.367213,-0.07824 10.825706,-0.9252221 15.468224,-1.6704345 0.369698,-0.059344 0.467965,1.0211734 0.234104,1.0879908 C 22.558728,3.1999315 9.6192654,3.7561084 9.6192654,3.7561084 Z" + style="fill:#989898;fill-opacity:1;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + d="M 9.6192654,3.7561084 18.999166,3.2834424 26.326292,2.1234846" + style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> diff --git a/sprites/clothes/blue_camo_jeans.svg b/sprites/clothes/blue_camo_jeans.svg index 0835ead..f96342d 100644 --- a/sprites/clothes/blue_camo_jeans.svg +++ b/sprites/clothes/blue_camo_jeans.svg @@ -1,6 +1,4 @@ - - + version="1.1" + viewBox="0 0 29.356467 34.312774" + height="34.312775mm" + width="29.356466mm"> + inkscape:window-y="-9" + inkscape:window-x="-9" + inkscape:window-height="1001" + inkscape:window-width="1920" + showguides="false" + fit-margin-bottom="0" + fit-margin-right="0" + fit-margin-left="0" + fit-margin-top="0" + inkscape:pagecheckerboard="true" + showgrid="false" + inkscape:current-layer="layer2" + inkscape:document-units="mm" + inkscape:cy="50.729766" + inkscape:cx="68.730496" + inkscape:zoom="5.6" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" /> @@ -56,144 +55,192 @@ - - - - - - - - - - - - - - - - - - - + sodipodi:insensitive="true" + transform="translate(0.2625277,-0.1588812)" + inkscape:label="legs" + id="layer1" + inkscape:groupmode="layer"> - - + transform="translate(-0.2625277,-1.026511)" + id="g892"> + + + + + + + + + + + id="g919"> - + sodipodi:nodetypes="ssssscss" /> + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sprites/clothes/blue_skirt.svg b/sprites/clothes/blue_skirt.svg index f9ecf46..bef5dbc 100644 --- a/sprites/clothes/blue_skirt.svg +++ b/sprites/clothes/blue_skirt.svg @@ -1,6 +1,4 @@ - - + version="1.1" + viewBox="0 0 29.356467 34.948318" + height="34.948318mm" + width="29.356466mm"> + inkscape:window-x="-9" + inkscape:window-height="1001" + inkscape:window-width="1920" + showguides="false" + fit-margin-bottom="0" + fit-margin-right="0" + fit-margin-left="0" + fit-margin-top="0" + inkscape:pagecheckerboard="true" + showgrid="false" + inkscape:current-layer="layer1" + inkscape:document-units="mm" + inkscape:cy="90.492535" + inkscape:cx="73.671713" + inkscape:zoom="7.9195959" + inkscape:pageshadow="2" + inkscape:pageopacity="0.0" + borderopacity="1.0" + bordercolor="#666666" + pagecolor="#ffffff" + id="base" /> @@ -50,54 +49,94 @@ image/svg+xml - + - + + + + + + + + + + + + + inkscape:groupmode="layer"> + id="path824" + d="m 9.942268,2.5388847 16.23706,-2.03793016 c 0,0 1.111833,8.28470726 1.583283,16.00276246 0.06877,1.125724 -2.241517,0.683836 -3.368686,0.53454 -0.378588,-0.05015 -0.662409,-0.460713 -1.044293,-0.467722 -1.248827,-0.02292 -2.221831,1.455757 -3.469745,1.403165 -0.592052,-0.02495 -0.991753,-0.766695 -1.583281,-0.801809 -1.266009,-0.07515 -2.085279,1.45325 -3.570806,1.302939 -0.415133,-0.042 -0.728187,-0.491133 -1.145353,-0.50113 -1.250845,-0.02998 -2.253166,1.288171 -3.503431,1.336348 C 8.9764925,19.352455 8.0063167,18.48351 6.9104514,18.374604 5.7886362,18.263119 3.0622049,19.687213 3.5417667,18.675282 8.2673486,8.7037569 9.942268,2.5388847 9.942268,2.5388847 Z" + style="fill:#4791ff;fill-opacity:1;stroke:#000000;stroke-width:1.00215;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" /> + d="M 8.3187639,16.904622 C 13.931424,5.2783972 12.795528,5.6458929 12.795528,5.6458929" + style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + d="m 12.828937,9.3542576 c -0.7684,4.2763124 -0.233861,7.3165034 -0.233861,7.3165034" + style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + d="M 15.935946,16.069405 C 17.907058,9.187214 17.071841,5.6124842 17.071841,5.6124842" + style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + d="m 17.895223,8.575149 c 0.360691,4.329803 1.661365,7.129221 1.661365,7.129221" + style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + d="M 23.175166,15.213039 C 22.814475,10.883236 21.513801,8.0838183 21.513801,8.0838183" + style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + d="M 24.578978,15.782268 C 22.607866,8.9000772 23.443083,5.3253473 23.443083,5.3253473" + style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> diff --git a/sprites/clothes/classic_dress_up_blurred_bg.png.import b/sprites/clothes/classic_dress_up_blurred_bg.png.import deleted file mode 100644 index dab810b..0000000 --- a/sprites/clothes/classic_dress_up_blurred_bg.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/classic_dress_up_blurred_bg.png-21899d83f42ae1cd02cd106046f74e05.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://sprites/clothes/classic_dress_up_blurred_bg.png" -dest_files=[ "res://.import/classic_dress_up_blurred_bg.png-21899d83f42ae1cd02cd106046f74e05.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=false -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=false -svg/scale=1.0 diff --git a/sprites/clothes/modern_dress_up_bg.png.import b/sprites/clothes/modern_dress_up_bg.png.import deleted file mode 100644 index 8a54db2..0000000 --- a/sprites/clothes/modern_dress_up_bg.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/modern_dress_up_bg.png-2ec62cdd8ee1c5f60b5faa53f704458f.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://sprites/clothes/modern_dress_up_bg.png" -dest_files=[ "res://.import/modern_dress_up_bg.png-2ec62cdd8ee1c5f60b5faa53f704458f.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=false -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=false -svg/scale=1.0 diff --git a/sprites/clothes/modern_dress_up_blurred_bg.png.import b/sprites/clothes/modern_dress_up_blurred_bg.png.import deleted file mode 100644 index efdc40d..0000000 --- a/sprites/clothes/modern_dress_up_blurred_bg.png.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/modern_dress_up_blurred_bg.png-75dc54176153d3b2378312626047f013.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://sprites/clothes/modern_dress_up_blurred_bg.png" -dest_files=[ "res://.import/modern_dress_up_blurred_bg.png-75dc54176153d3b2378312626047f013.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=false -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=false -svg/scale=1.0 diff --git a/sprites/new_character_base.svg.import b/sprites/new_character_base.svg.import new file mode 100644 index 0000000..366423f --- /dev/null +++ b/sprites/new_character_base.svg.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/new_character_base.svg-e37d5232b11c88359270a1b5f7a925f8.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/new_character_base.svg" +dest_files=[ "res://.import/new_character_base.svg-e37d5232b11c88359270a1b5f7a925f8.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=false +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=false +svg/scale=1.0 diff --git a/sprites/world.blend b/sprites/world.blend new file mode 100644 index 0000000..8a67fb2 Binary files /dev/null and b/sprites/world.blend differ diff --git a/sprites/world.blend1 b/sprites/world.blend1 new file mode 100644 index 0000000..edd4a83 Binary files /dev/null and b/sprites/world.blend1 differ diff --git a/sprites/clothes/background.svg b/sprites/world/background.svg similarity index 100% rename from sprites/clothes/background.svg rename to sprites/world/background.svg diff --git a/sprites/clothes/background.svg.import b/sprites/world/background.svg.import similarity index 69% rename from sprites/clothes/background.svg.import rename to sprites/world/background.svg.import index 9a35431..5f369f8 100644 --- a/sprites/clothes/background.svg.import +++ b/sprites/world/background.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/background.svg-53a5ac36b87b243d4a54ca15a9574f97.stex" +path="res://.import/background.svg-9a13379093158c4dd6765036ae620619.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/clothes/background.svg" -dest_files=[ "res://.import/background.svg-53a5ac36b87b243d4a54ca15a9574f97.stex" ] +source_file="res://sprites/world/background.svg" +dest_files=[ "res://.import/background.svg-9a13379093158c4dd6765036ae620619.stex" ] [params] diff --git a/sprites/clothes/classic_dress_up_bg.png b/sprites/world/classic_dress_up_bg.png similarity index 100% rename from sprites/clothes/classic_dress_up_bg.png rename to sprites/world/classic_dress_up_bg.png diff --git a/sprites/world/classic_dress_up_bg.png.import b/sprites/world/classic_dress_up_bg.png.import new file mode 100644 index 0000000..aa2a372 --- /dev/null +++ b/sprites/world/classic_dress_up_bg.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/classic_dress_up_bg.png-91243fdfc1a4ed4c9d92cd705c19bfd4.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/world/classic_dress_up_bg.png" +dest_files=[ "res://.import/classic_dress_up_bg.png-91243fdfc1a4ed4c9d92cd705c19bfd4.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=false +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=false +svg/scale=1.0 diff --git a/sprites/clothes/classic_dress_up_blurred_bg.png b/sprites/world/classic_dress_up_blurred_bg.png similarity index 100% rename from sprites/clothes/classic_dress_up_blurred_bg.png rename to sprites/world/classic_dress_up_blurred_bg.png diff --git a/sprites/world/classic_dress_up_blurred_bg.png.import b/sprites/world/classic_dress_up_blurred_bg.png.import new file mode 100644 index 0000000..bbc4b26 --- /dev/null +++ b/sprites/world/classic_dress_up_blurred_bg.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/classic_dress_up_blurred_bg.png-ce6fef332733ba210937c36735d40783.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/world/classic_dress_up_blurred_bg.png" +dest_files=[ "res://.import/classic_dress_up_blurred_bg.png-ce6fef332733ba210937c36735d40783.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=false +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=false +svg/scale=1.0 diff --git a/sprites/clothes/dressup_blurred_wardrobe.png b/sprites/world/dressup_blurred_wardrobe.png similarity index 100% rename from sprites/clothes/dressup_blurred_wardrobe.png rename to sprites/world/dressup_blurred_wardrobe.png diff --git a/sprites/clothes/classic_dress_up_bg.png.import b/sprites/world/dressup_blurred_wardrobe.png.import similarity index 65% rename from sprites/clothes/classic_dress_up_bg.png.import rename to sprites/world/dressup_blurred_wardrobe.png.import index 8bb3c85..b7e6d9c 100644 --- a/sprites/clothes/classic_dress_up_bg.png.import +++ b/sprites/world/dressup_blurred_wardrobe.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/classic_dress_up_bg.png-594c00eaf14ad58cdedc1824d8f59a5c.stex" +path="res://.import/dressup_blurred_wardrobe.png-ccd2427a9b242dfea390fb0dba1cb8b6.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/clothes/classic_dress_up_bg.png" -dest_files=[ "res://.import/classic_dress_up_bg.png-594c00eaf14ad58cdedc1824d8f59a5c.stex" ] +source_file="res://sprites/world/dressup_blurred_wardrobe.png" +dest_files=[ "res://.import/dressup_blurred_wardrobe.png-ccd2427a9b242dfea390fb0dba1cb8b6.stex" ] [params] diff --git a/sprites/clothes/dressup_panel.svg b/sprites/world/dressup_panel.svg similarity index 100% rename from sprites/clothes/dressup_panel.svg rename to sprites/world/dressup_panel.svg diff --git a/sprites/clothes/dressup_panel.svg.import b/sprites/world/dressup_panel.svg.import similarity index 68% rename from sprites/clothes/dressup_panel.svg.import rename to sprites/world/dressup_panel.svg.import index bb8d4b0..bd217e6 100644 --- a/sprites/clothes/dressup_panel.svg.import +++ b/sprites/world/dressup_panel.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/dressup_panel.svg-10ad40ebf590034174b6f525bb791368.stex" +path="res://.import/dressup_panel.svg-8a41151cb84a8483a6bad92f218a33e8.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/clothes/dressup_panel.svg" -dest_files=[ "res://.import/dressup_panel.svg-10ad40ebf590034174b6f525bb791368.stex" ] +source_file="res://sprites/world/dressup_panel.svg" +dest_files=[ "res://.import/dressup_panel.svg-8a41151cb84a8483a6bad92f218a33e8.stex" ] [params] diff --git a/sprites/clothes/dressup_wardrobe.png b/sprites/world/dressup_wardrobe.png similarity index 100% rename from sprites/clothes/dressup_wardrobe.png rename to sprites/world/dressup_wardrobe.png diff --git a/sprites/clothes/dressup_wardrobe.png.import b/sprites/world/dressup_wardrobe.png.import similarity index 67% rename from sprites/clothes/dressup_wardrobe.png.import rename to sprites/world/dressup_wardrobe.png.import index fcb87ff..455f5ad 100644 --- a/sprites/clothes/dressup_wardrobe.png.import +++ b/sprites/world/dressup_wardrobe.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/dressup_wardrobe.png-c4a59bdd169c023e961e92917f5fd969.stex" +path="res://.import/dressup_wardrobe.png-3622bbe4ab99a88bf60cd058eb099f9f.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/clothes/dressup_wardrobe.png" -dest_files=[ "res://.import/dressup_wardrobe.png-c4a59bdd169c023e961e92917f5fd969.stex" ] +source_file="res://sprites/world/dressup_wardrobe.png" +dest_files=[ "res://.import/dressup_wardrobe.png-3622bbe4ab99a88bf60cd058eb099f9f.stex" ] [params] diff --git a/sprites/clothes/dressup_wardrobe.svg b/sprites/world/dressup_wardrobe.svg similarity index 100% rename from sprites/clothes/dressup_wardrobe.svg rename to sprites/world/dressup_wardrobe.svg diff --git a/sprites/clothes/dressup_wardrobe.svg.import b/sprites/world/dressup_wardrobe.svg.import similarity index 67% rename from sprites/clothes/dressup_wardrobe.svg.import rename to sprites/world/dressup_wardrobe.svg.import index e033072..05c4a30 100644 --- a/sprites/clothes/dressup_wardrobe.svg.import +++ b/sprites/world/dressup_wardrobe.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/dressup_wardrobe.svg-469d705b19d4010c02c75ae841bf12a7.stex" +path="res://.import/dressup_wardrobe.svg-50694cf0e1b6e5ed9fafb867a0443a2e.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/clothes/dressup_wardrobe.svg" -dest_files=[ "res://.import/dressup_wardrobe.svg-469d705b19d4010c02c75ae841bf12a7.stex" ] +source_file="res://sprites/world/dressup_wardrobe.svg" +dest_files=[ "res://.import/dressup_wardrobe.svg-50694cf0e1b6e5ed9fafb867a0443a2e.stex" ] [params] diff --git a/sprites/clothes/modern_dress_up_bg.png b/sprites/world/modern_dress_up_bg.png similarity index 100% rename from sprites/clothes/modern_dress_up_bg.png rename to sprites/world/modern_dress_up_bg.png diff --git a/sprites/world/modern_dress_up_bg.png.import b/sprites/world/modern_dress_up_bg.png.import new file mode 100644 index 0000000..62093ef --- /dev/null +++ b/sprites/world/modern_dress_up_bg.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/modern_dress_up_bg.png-27905358c41c27aeb52d5d89ce00ae1c.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/world/modern_dress_up_bg.png" +dest_files=[ "res://.import/modern_dress_up_bg.png-27905358c41c27aeb52d5d89ce00ae1c.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=false +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=false +svg/scale=1.0 diff --git a/sprites/clothes/modern_dress_up_blurred_bg.png b/sprites/world/modern_dress_up_blurred_bg.png similarity index 100% rename from sprites/clothes/modern_dress_up_blurred_bg.png rename to sprites/world/modern_dress_up_blurred_bg.png diff --git a/sprites/clothes/dressup_blurred_wardrobe.png.import b/sprites/world/modern_dress_up_blurred_bg.png.import similarity index 64% rename from sprites/clothes/dressup_blurred_wardrobe.png.import rename to sprites/world/modern_dress_up_blurred_bg.png.import index faa0a1c..1820fc3 100644 --- a/sprites/clothes/dressup_blurred_wardrobe.png.import +++ b/sprites/world/modern_dress_up_blurred_bg.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/dressup_blurred_wardrobe.png-8d6b33052b265436c0bddfa109913146.stex" +path="res://.import/modern_dress_up_blurred_bg.png-a91fc2889db09eed8864cdf2b9441122.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/clothes/dressup_blurred_wardrobe.png" -dest_files=[ "res://.import/dressup_blurred_wardrobe.png-8d6b33052b265436c0bddfa109913146.stex" ] +source_file="res://sprites/world/modern_dress_up_blurred_bg.png" +dest_files=[ "res://.import/modern_dress_up_blurred_bg.png-a91fc2889db09eed8864cdf2b9441122.stex" ] [params]