diff --git a/project/lang/local.en.translation b/project/lang/local.en.translation index 89626a4..8889f17 100644 Binary files a/project/lang/local.en.translation and b/project/lang/local.en.translation differ diff --git a/project/lang/local.sv.translation b/project/lang/local.sv.translation index e4ab8c5..12777ef 100644 Binary files a/project/lang/local.sv.translation and b/project/lang/local.sv.translation differ diff --git a/project/project.godot b/project/project.godot index 4618505..7cd366e 100644 --- a/project/project.godot +++ b/project/project.godot @@ -16,7 +16,7 @@ _global_script_class_icons={ [application] config/name="Tony's Dress Up" -run/main_scene="res://scn/TitleScn.tscn" +run/main_scene="res://scenes/TitleScn.tscn" config/use_custom_user_dir=true boot_splash/image="res://icon.png" boot_splash/bg_color=Color( 0.8, 0.8, 0.4, 1 ) @@ -25,9 +25,9 @@ name_sv="Tonys klä upp" [autoload] -GameKit="*res://src/GameKit.gd" -UserSettings="*res://src/UserSettings.gd" -Soundtrack="*res://src/Soundtrack.gd" +GameKit="*res://scripts/GameKit.gd" +UserSettings="*res://scripts/UserSettings.gd" +Soundtrack="*res://scripts/Soundtrack.gd" [debug] @@ -37,10 +37,38 @@ gdscript/completion/autocomplete_setters_and_getters=true window/size/width=800 window/dpi/allow_hidpi=true -mouse_cursor/custom_image="res://sprites/cursor.png" +mouse_cursor/custom_image="res://sprites/clothes/cursor.png" window/stretch/mode="viewport" window/stretch/aspect="keep" +[gui] + +theme/custom="res://styles/Game.theme" +theme/custom_font="res://fonts/montserrat_extra_bold_16.tres" + +[importer_defaults] + +texture={ +"compress/bptc_ldr": 0, +"compress/hdr_mode": 0, +"compress/lossy_quality": 0.7, +"compress/mode": 0, +"compress/normal_map": 0, +"detect_3d": false, +"flags/anisotropic": false, +"flags/filter": false, +"flags/mipmaps": false, +"flags/repeat": 0, +"flags/srgb": 2, +"process/HDR_as_SRGB": false, +"process/fix_alpha_border": true, +"process/invert_color": false, +"process/premult_alpha": false, +"size_limit": 0, +"stream": false, +"svg/scale": 1.0 +} + [input] ui_pause={ @@ -55,6 +83,10 @@ ui_pause={ locale_filter=[ 1, [ "en", "sv" ] ] translations=PoolStringArray( "res://lang/local.en.translation", "res://lang/local.sv.translation" ) +[node] + +name_casing=1 + [rendering] quality/intended_usage/framebuffer_allocation=0 diff --git a/project/scn/Character.tscn b/project/scenes/Character.tscn similarity index 90% rename from project/scn/Character.tscn rename to project/scenes/Character.tscn index 2224b11..aad3bc9 100644 --- a/project/scn/Character.tscn +++ b/project/scenes/Character.tscn @@ -1,10 +1,10 @@ [gd_scene load_steps=30 format=2] -[ext_resource path="res://src/Character.gd" type="Script" id=1] +[ext_resource path="res://scripts/Character.gd" type="Script" id=1] [ext_resource path="res://sprites/tail/tail0.svg" type="Texture" id=2] [ext_resource path="res://sprites/tail/tail1.svg" type="Texture" id=3] [ext_resource path="res://sprites/tail/tail2.svg" type="Texture" id=4] -[ext_resource path="res://sprites/character_base.svg" type="Texture" id=5] +[ext_resource path="res://sprites/clothes/character_base.svg" type="Texture" id=5] [ext_resource path="res://sprites/eyes/eyes1.png" type="Texture" id=6] [ext_resource path="res://sprites/eyes/eyes2.png" type="Texture" id=7] [ext_resource path="res://sprites/eyes/eyes3.png" type="Texture" id=8] @@ -23,9 +23,11 @@ [ext_resource path="res://sprites/mouth/mouth9.png" type="Texture" id=21] [ext_resource path="res://sprites/mouth/mouth10.png" type="Texture" id=22] [ext_resource path="res://sprites/mouth/mouth12.png" type="Texture" id=23] -[ext_resource path="res://sprites/briefs.svg" type="Texture" id=24] -[ext_resource path="res://sprites/bottoms_placeholder.png" type="Texture" id=25] -[ext_resource path="res://sprites/tops_placeholder.png" type="Texture" id=26] +[ext_resource path="res://sprites/clothes/briefs.svg" type="Texture" id=24] +[ext_resource path="res://sprites/clothes/bottoms_placeholder.png" type="Texture" id=25] +[ext_resource path="res://sprites/clothes/tops_placeholder.png" type="Texture" id=26] + + [sub_resource type="SpriteFrames" id=1] animations = [ { diff --git a/project/scn/ClassicClothes.tscn b/project/scenes/ClassicClothes.tscn similarity index 84% rename from project/scn/ClassicClothes.tscn rename to project/scenes/ClassicClothes.tscn index 9b865d5..0a99ec4 100644 --- a/project/scn/ClassicClothes.tscn +++ b/project/scenes/ClassicClothes.tscn @@ -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.svg" type="Texture" id=4] +[ext_resource path="res://sprites/clothes/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] @@ -22,25 +22,28 @@ [ext_resource path="res://sprites/mouth/mouth9.png" type="Texture" id=20] [ext_resource path="res://sprites/mouth/mouth10.png" type="Texture" id=21] [ext_resource path="res://sprites/mouth/mouth12.png" type="Texture" id=22] -[ext_resource path="res://sprites/classic/briefs_classic.png" type="Texture" id=23] -[ext_resource path="res://src/ItemDrag.gd" type="Script" id=24] -[ext_resource path="res://sprites/classic/z_briefs_classic.png" type="Texture" id=25] -[ext_resource path="res://sprites/classic/fundosi_classic.png" type="Texture" id=26] -[ext_resource path="res://sprites/jeans.svg" type="Texture" id=27] -[ext_resource path="res://sprites/dj_shorts.svg" type="Texture" id=28] -[ext_resource path="res://sprites/sweat_pants.svg" type="Texture" id=29] -[ext_resource path="res://sprites/blue_camo_jeans.svg" type="Texture" id=30] -[ext_resource path="res://sprites/beat_up_jeans.svg" type="Texture" id=31] -[ext_resource path="res://sprites/old_sweatshirt.png" type="Texture" id=32] -[ext_resource path="res://sprites/dj_shirt.png" type="Texture" id=33] -[ext_resource path="res://sprites/raw_shirt.svg" type="Texture" id=34] -[ext_resource path="res://sprites/atomic_shirt.svg" type="Texture" id=35] -[ext_resource path="res://sprites/z_shirt.png" type="Texture" id=36] -[ext_resource path="res://sprites/biker_jacket.png" type="Texture" id=37] -[ext_resource path="res://sprites/whatsnew_shirt.png" type="Texture" id=38] -[ext_resource path="res://sprites/train_hoodie.png" type="Texture" id=39] -[ext_resource path="res://sprites/classic/camera_classic.png" type="Texture" id=40] -[ext_resource path="res://sprites/classic/owo_censor_classic.png" type="Texture" id=41] +[ext_resource path="res://sprites/clothes/classic/briefs_classic.png" type="Texture" id=23] +[ext_resource path="res://scripts/ItemDrag.gd" type="Script" id=24] +[ext_resource path="res://sprites/clothes/classic/z_briefs_classic.png" type="Texture" id=25] +[ext_resource path="res://sprites/clothes/classic/fundosi_classic.png" type="Texture" id=26] +[ext_resource path="res://sprites/clothes/jeans.svg" type="Texture" id=27] +[ext_resource path="res://sprites/clothes/dj_shorts.svg" type="Texture" id=28] +[ext_resource path="res://sprites/clothes/sweat_pants.svg" type="Texture" id=29] +[ext_resource path="res://sprites/clothes/blue_camo_jeans.svg" type="Texture" id=30] +[ext_resource path="res://sprites/clothes/beat_up_jeans.svg" type="Texture" id=31] +[ext_resource path="res://sprites/clothes/old_sweatshirt.png" type="Texture" id=32] +[ext_resource path="res://sprites/clothes/dj_shirt.png" type="Texture" id=33] +[ext_resource path="res://sprites/clothes/raw_shirt.svg" type="Texture" id=34] +[ext_resource path="res://sprites/clothes/atomic_shirt.svg" type="Texture" id=35] +[ext_resource path="res://sprites/clothes/z_shirt.png" type="Texture" id=36] +[ext_resource path="res://sprites/clothes/biker_jacket.png" type="Texture" id=37] +[ext_resource path="res://sprites/clothes/whatsnew_shirt.png" type="Texture" id=38] +[ext_resource path="res://sprites/clothes/train_hoodie.png" type="Texture" id=39] +[ext_resource path="res://sprites/clothes/classic/camera_classic.png" type="Texture" id=40] +[ext_resource path="res://sprites/clothes/classic/owo_censor_classic.png" type="Texture" id=41] + + + [sub_resource type="SpriteFrames" id=1] animations = [ { diff --git a/project/scn/ClassicScn.tscn b/project/scenes/ClassicScn.tscn similarity index 50% rename from project/scn/ClassicScn.tscn rename to project/scenes/ClassicScn.tscn index 66907df..cca44b9 100644 --- a/project/scn/ClassicScn.tscn +++ b/project/scenes/ClassicScn.tscn @@ -1,8 +1,10 @@ [gd_scene load_steps=4 format=2] -[ext_resource path="res://src/ClassicScn.gd" type="Script" id=1] -[ext_resource path="res://scn/ClassicClothes.tscn" type="PackedScene" id=2] -[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=3] +[ext_resource path="res://scripts/ClassicScn.gd" type="Script" id=1] +[ext_resource path="res://scenes/ClassicClothes.tscn" type="PackedScene" id=2] +[ext_resource path="res://scenes/PauseScn.tscn" type="PackedScene" id=3] + + [node name="GameScreen" type="Node"] script = ExtResource( 1 ) diff --git a/project/scn/Clothes.tscn b/project/scenes/Clothes.tscn similarity index 67% rename from project/scn/Clothes.tscn rename to project/scenes/Clothes.tscn index 7ea8e7c..68bcdf2 100644 --- a/project/scn/Clothes.tscn +++ b/project/scenes/Clothes.tscn @@ -1,60 +1,60 @@ -[gd_scene load_steps=25 format=2] +[gd_scene load_steps=23 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] -[ext_resource path="res://sprites/jeans.svg" type="Texture" id=3] -[ext_resource path="res://sprites/blue_skirt.svg" type="Texture" id=4] -[ext_resource path="res://sprites/sweat_pants.svg" type="Texture" id=5] -[ext_resource path="res://sprites/blue_camo_jeans.svg" type="Texture" id=6] -[ext_resource path="res://sprites/beat_up_jeans.svg" type="Texture" id=7] -[ext_resource path="res://sprites/formal_skirt.svg" type="Texture" id=8] -[ext_resource path="res://sprites/x_button.svg" type="Texture" id=9] -[ext_resource path="res://sprites/old_sweatshirt.svg" type="Texture" id=10] -[ext_resource path="res://sprites/raw_shirt.svg" type="Texture" id=11] -[ext_resource path="res://sprites/retro_shirt.svg" type="Texture" id=12] -[ext_resource path="res://sprites/atomic_shirt.svg" type="Texture" id=13] -[ext_resource path="res://sprites/z_shirt.png" type="Texture" id=14] -[ext_resource path="res://sprites/biker_jacket.svg" type="Texture" id=15] -[ext_resource path="res://sprites/nl_jacket.png" type="Texture" id=16] -[ext_resource path="res://sprites/train_hoodie.svg" type="Texture" id=17] -[ext_resource path="res://sprites/korm_shirt.png" type="Texture" id=18] -[ext_resource path="res://sprites/whatsnew_shirt.svg" type="Texture" id=19] -[ext_resource path="res://sprites/owo_censor.svg" type="Texture" id=20] -[ext_resource path="res://sprites/briefs.svg" type="Texture" id=21] -[ext_resource path="res://sprites/z_briefs.svg" type="Texture" id=22] -[ext_resource path="res://sprites/fundosi.svg" type="Texture" id=23] -[ext_resource path="res://sprites/camera.png" type="Texture" id=24] +[ext_resource path="res://sprites/clothes/jeans.svg" type="Texture" id=3] +[ext_resource path="res://sprites/clothes/blue_skirt.svg" type="Texture" id=4] +[ext_resource path="res://sprites/clothes/sweat_pants.svg" type="Texture" id=5] +[ext_resource path="res://sprites/clothes/blue_camo_jeans.svg" type="Texture" id=6] +[ext_resource path="res://sprites/clothes/beat_up_jeans.svg" type="Texture" id=7] +[ext_resource path="res://sprites/clothes/formal_skirt.svg" type="Texture" id=8] +[ext_resource path="res://sprites/clothes/x_button.svg" type="Texture" id=9] +[ext_resource path="res://sprites/clothes/old_sweatshirt.svg" type="Texture" id=10] +[ext_resource path="res://sprites/clothes/raw_shirt.svg" type="Texture" id=11] +[ext_resource path="res://sprites/clothes/retro_shirt.svg" type="Texture" id=12] +[ext_resource path="res://sprites/clothes/atomic_shirt.svg" type="Texture" id=13] +[ext_resource path="res://sprites/clothes/z_shirt.png" type="Texture" id=14] +[ext_resource path="res://sprites/clothes/biker_jacket.svg" type="Texture" id=15] +[ext_resource path="res://sprites/clothes/nl_jacket.png" type="Texture" id=16] +[ext_resource path="res://sprites/clothes/train_hoodie.svg" type="Texture" id=17] +[ext_resource path="res://sprites/clothes/korm_shirt.png" type="Texture" id=18] +[ext_resource path="res://sprites/clothes/whatsnew_shirt.svg" type="Texture" id=19] +[ext_resource path="res://sprites/clothes/owo_censor.svg" type="Texture" id=20] +[ext_resource path="res://sprites/clothes/briefs.svg" type="Texture" id=21] +[ext_resource path="res://sprites/clothes/z_briefs.svg" type="Texture" id=22] +[ext_resource path="res://sprites/clothes/fundosi.svg" type="Texture" id=23] +[ext_resource path="res://sprites/clothes/camera.png" type="Texture" id=24] [node name="Wordrobe" type="TabContainer"] -anchor_left = 1.0 anchor_right = 1.0 anchor_bottom = 1.0 -margin_left = -459.0 -margin_top = 21.0 -margin_right = -76.0 -margin_bottom = -35.0 -theme = ExtResource( 1 ) -custom_styles/panel = ExtResource( 2 ) custom_colors/font_color_disabled = Color( 0, 0, 0, 1 ) custom_colors/font_color_bg = Color( 0.921569, 0.921569, 0.921569, 1 ) custom_colors/font_color_fg = Color( 1, 1, 1, 1 ) +__meta__ = { +"_edit_use_anchors_": false +} [node name="Pants" type="Tabs" parent="."] anchor_right = 1.0 anchor_bottom = 1.0 -margin_top = 31.0 +margin_left = 5.0 +margin_top = 41.0 +margin_right = -5.0 +margin_bottom = -10.0 custom_constants/hseparation = 0 [node name="PantsScroll" type="ScrollContainer" parent="Pants"] -margin_left = 13.0 -margin_top = 21.0 -margin_right = 376.0 -margin_bottom = 498.0 +anchor_right = 1.0 +anchor_bottom = 1.0 +__meta__ = { +"_edit_use_anchors_": false +} [node name="PantsGrid" type="GridContainer" parent="Pants/PantsScroll"] -margin_right = 326.0 -margin_bottom = 344.0 -columns = 3 +margin_right = 448.0 +margin_bottom = 549.0 +size_flags_horizontal = 0 +size_flags_vertical = 3 +columns = 4 [node name="Jeans" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"] margin_right = 106.0 @@ -69,34 +69,34 @@ texture_normal = ExtResource( 4 ) [node name="Sweats" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"] margin_left = 220.0 -margin_right = 326.0 +margin_right = 338.0 margin_bottom = 112.0 texture_normal = ExtResource( 5 ) [node name="BlueCamoJeans" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"] -margin_top = 116.0 -margin_right = 106.0 -margin_bottom = 228.0 +margin_left = 342.0 +margin_right = 448.0 +margin_bottom = 112.0 texture_normal = ExtResource( 6 ) [node name="BeatUpJeans" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"] -margin_left = 110.0 margin_top = 116.0 -margin_right = 216.0 -margin_bottom = 228.0 +margin_right = 106.0 +margin_bottom = 236.0 texture_normal = ExtResource( 7 ) [node name="FormalSkirt" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"] -margin_left = 220.0 +margin_left = 110.0 margin_top = 116.0 -margin_right = 326.0 -margin_bottom = 228.0 +margin_right = 216.0 +margin_bottom = 236.0 texture_normal = ExtResource( 8 ) [node name="RemovePants" type="Button" parent="Pants/PantsScroll/PantsGrid"] -margin_top = 232.0 -margin_right = 106.0 -margin_bottom = 344.0 +margin_left = 220.0 +margin_top = 116.0 +margin_right = 338.0 +margin_bottom = 236.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 ) @@ -106,20 +106,24 @@ icon = ExtResource( 9 ) flat = true [node name="Shirts" type="Tabs" parent="."] -editor/display_folded = true visible = false anchor_right = 1.0 anchor_bottom = 1.0 -margin_top = 31.0 +margin_left = 5.0 +margin_top = 41.0 +margin_right = -5.0 +margin_bottom = -10.0 [node name="ShirtsScroll" type="ScrollContainer" parent="Shirts"] -margin_left = 16.0 -margin_top = 19.0 -margin_right = 368.0 -margin_bottom = 500.0 +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 10.0 +margin_top = 10.0 [node name="ShirtsGrid" type="GridContainer" parent="Shirts/ShirtsScroll"] -columns = 3 +margin_right = 296.0 +margin_bottom = 477.0 +columns = 4 [node name="Sweatshirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] margin_right = 85.0 @@ -128,13 +132,13 @@ texture_normal = ExtResource( 10 ) [node name="Raw" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] margin_left = 89.0 -margin_right = 195.0 +margin_right = 207.0 margin_bottom = 115.0 texture_normal = ExtResource( 11 ) [node name="Retro" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] -margin_left = 199.0 -margin_right = 284.0 +margin_left = 211.0 +margin_right = 296.0 margin_bottom = 115.0 texture_normal = ExtResource( 12 ) @@ -147,14 +151,14 @@ texture_normal = ExtResource( 13 ) [node name="ZShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] margin_left = 89.0 margin_top = 119.0 -margin_right = 195.0 +margin_right = 207.0 margin_bottom = 234.0 texture_normal = ExtResource( 14 ) [node name="BikerJacket" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] -margin_left = 199.0 +margin_left = 211.0 margin_top = 119.0 -margin_right = 284.0 +margin_right = 296.0 margin_bottom = 234.0 texture_normal = ExtResource( 15 ) @@ -167,28 +171,28 @@ texture_normal = ExtResource( 16 ) [node name="TrainHoodie" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] margin_left = 89.0 margin_top = 238.0 -margin_right = 195.0 +margin_right = 207.0 margin_bottom = 353.0 texture_normal = ExtResource( 17 ) [node name="KormShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] -margin_left = 199.0 +margin_left = 211.0 margin_top = 238.0 -margin_right = 284.0 +margin_right = 296.0 margin_bottom = 353.0 texture_normal = ExtResource( 18 ) [node name="WhatsNewShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] margin_top = 357.0 margin_right = 85.0 -margin_bottom = 472.0 +margin_bottom = 475.0 texture_normal = ExtResource( 19 ) [node name="RemoveShirt" type="Button" parent="Shirts/ShirtsScroll/ShirtsGrid"] margin_left = 89.0 margin_top = 357.0 -margin_right = 195.0 -margin_bottom = 472.0 +margin_right = 207.0 +margin_bottom = 475.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 ) @@ -201,15 +205,18 @@ flat = true visible = false anchor_right = 1.0 anchor_bottom = 1.0 -margin_top = 31.0 +margin_left = 5.0 +margin_top = 41.0 +margin_right = -5.0 +margin_bottom = -10.0 [node name="UndiesScroll" type="ScrollContainer" parent="Underwear"] -margin_left = 10.0 -margin_top = 26.0 -margin_right = 370.0 -margin_bottom = 491.0 +anchor_right = 1.0 +anchor_bottom = 1.0 [node name="UndiesGrid" type="GridContainer" parent="Underwear/UndiesScroll"] +margin_right = 326.0 +margin_bottom = 228.0 columns = 3 [node name="OwOCensor" type="TextureButton" parent="Underwear/UndiesScroll/UndiesGrid"] @@ -239,7 +246,10 @@ texture_normal = ExtResource( 23 ) visible = false anchor_right = 1.0 anchor_bottom = 1.0 -margin_top = 31.0 +margin_left = 5.0 +margin_top = 41.0 +margin_right = -5.0 +margin_bottom = -10.0 [node name="AccsScroll" type="ScrollContainer" parent="Accessoires"] margin_left = 19.0 @@ -248,6 +258,8 @@ margin_right = 369.0 margin_bottom = 494.0 [node name="AccsGrid" type="GridContainer" parent="Accessoires/AccsScroll"] +margin_right = 207.0 +margin_bottom = 120.0 columns = 3 [node name="CanonCam" type="TextureButton" parent="Accessoires/AccsScroll/AccsGrid"] diff --git a/project/scn/Clothing.tscn b/project/scenes/Clothing.tscn similarity index 100% rename from project/scn/Clothing.tscn rename to project/scenes/Clothing.tscn diff --git a/project/scn/CreditsScn.tscn b/project/scenes/CreditsScn.tscn similarity index 57% rename from project/scn/CreditsScn.tscn rename to project/scenes/CreditsScn.tscn index c223bf4..32a55b7 100644 --- a/project/scn/CreditsScn.tscn +++ b/project/scenes/CreditsScn.tscn @@ -1,12 +1,16 @@ [gd_scene load_steps=5 format=2] -[ext_resource path="res://src/CreditsScn.gd" type="Script" id=1] +[ext_resource path="res://scripts/CreditsScn.gd" type="Script" id=1] [ext_resource path="res://styles/DressUpTheme.res" type="Theme" id=2] -[ext_resource path="res://scn/Character.tscn" type="PackedScene" id=3] -[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=4] +[ext_resource path="res://scenes/Character.tscn" type="PackedScene" id=3] +[ext_resource path="res://scenes/PauseScn.tscn" type="PackedScene" id=4] -[node name="Credits" type="Node"] -script = ExtResource( 1 ) +[node name="Credits" type="Control"] +anchor_right = 1.0 +anchor_bottom = 1.0 +__meta__ = { +"_edit_use_anchors_": false +} [node name="Credits" type="RichTextLabel" parent="."] anchor_left = 0.5 @@ -48,15 +52,26 @@ Raier Made with Godot Engine " - -[node name="Character" parent="." instance=ExtResource( 3 )] -position = Vector2( 76.1938, 267.895 ) +__meta__ = { +"_edit_use_anchors_": false +} [node name="WinDialogs" parent="." instance=ExtResource( 4 )] -[node name="Version" type="Label" parent="."] +[node name="version" type="Label" parent="."] margin_left = 727.908 margin_top = 568.64 margin_right = 775.908 margin_bottom = 582.64 text = "Version" +__meta__ = { +"_edit_use_anchors_": false +} + +[node name="2D" type="CanvasLayer" parent="."] + +[node name="Base" type="Node2D" parent="2D"] +script = ExtResource( 1 ) + +[node name="Character" parent="2D/Base" instance=ExtResource( 3 )] +position = Vector2( 12.748, 270.467 ) diff --git a/project/scenes/GameScn.tscn b/project/scenes/GameScn.tscn new file mode 100644 index 0000000..cea0ebf --- /dev/null +++ b/project/scenes/GameScn.tscn @@ -0,0 +1,48 @@ +[gd_scene load_steps=7 format=2] + +[ext_resource path="res://scripts/GameScn.gd" type="Script" id=1] +[ext_resource path="res://sprites/clothes/icrazy_frame.svg" type="Texture" id=2] +[ext_resource path="res://sprites/clothes/lights.png" type="Texture" id=3] +[ext_resource path="res://scenes/Clothes.tscn" type="PackedScene" id=4] +[ext_resource path="res://scenes/PauseScn.tscn" type="PackedScene" id=5] +[ext_resource path="res://scenes/Character.tscn" type="PackedScene" id=6] + +[node name="GameScreen" type="Node2D"] +script = ExtResource( 1 ) + +[node name="PicFrame" type="Sprite" parent="."] +position = Vector2( 163.773, 119.752 ) +texture = ExtResource( 2 ) +__meta__ = { +"_edit_group_": true +} + +[node name="Light" type="Light2D" parent="PicFrame"] +position = Vector2( 35.118, -14.56 ) +texture = ExtResource( 3 ) + +[node name="Character" parent="." instance=ExtResource( 6 )] +position = Vector2( 61.8154, 246.831 ) + +[node name="UI" type="CanvasLayer" parent="."] + +[node name="Base" type="Control" parent="UI"] +anchor_right = 1.0 +anchor_bottom = 1.0 +__meta__ = { +"_edit_lock_": true, +"_edit_use_anchors_": false +} + +[node name="Wordrobe" parent="UI/Base" instance=ExtResource( 4 )] +margin_left = 276.0 +margin_top = 36.0 +margin_right = -20.0 +margin_bottom = -37.0 + +[node name="PauseScn" parent="UI/Base" instance=ExtResource( 5 )] +visible = false +margin_left = -150.0 +margin_top = -20.0 +margin_right = -150.0 +margin_bottom = -20.0 diff --git a/project/scn/PauseScn.tscn b/project/scenes/PauseScn.tscn similarity index 88% rename from project/scn/PauseScn.tscn rename to project/scenes/PauseScn.tscn index fdc0f86..ca83bd4 100644 --- a/project/scn/PauseScn.tscn +++ b/project/scenes/PauseScn.tscn @@ -1,15 +1,18 @@ -[gd_scene load_steps=3 format=2] +[gd_scene load_steps=2 format=2] -[ext_resource path="res://styles/DressUpTheme.res" type="Theme" id=1] -[ext_resource path="res://src/PauseScn.gd" type="Script" id=2] +[ext_resource path="res://scripts/PauseScn.gd" type="Script" id=2] [node name="WinDialogs" type="Control"] -anchor_left = 0.5 -anchor_top = 0.5 -anchor_right = 0.5 -anchor_bottom = 0.5 -theme = ExtResource( 1 ) +anchor_right = 1.0 +anchor_bottom = 1.0 +margin_left = 400.0 +margin_top = 300.0 +margin_right = -400.0 +margin_bottom = -300.0 script = ExtResource( 2 ) +__meta__ = { +"_edit_use_anchors_": false +} [node name="PauseWin" type="PopupDialog" parent="."] pause_mode = 2 @@ -20,7 +23,7 @@ anchor_bottom = 0.5 margin_left = -88.0 margin_top = -57.0 margin_right = 88.0 -margin_bottom = 57.0 +margin_bottom = 94.0 [node name="PauseVbox" type="VBoxContainer" parent="PauseWin"] anchor_right = 1.0 @@ -32,26 +35,26 @@ margin_bottom = -10.0 [node name="PauseLbl" type="Label" parent="PauseWin/PauseVbox"] margin_right = 156.0 -margin_bottom = 21.0 +margin_bottom = 29.0 text = "KPUS" align = 1 [node name="SettingsBtn" type="Button" parent="PauseWin/PauseVbox"] -margin_top = 25.0 +margin_top = 33.0 margin_right = 156.0 -margin_bottom = 46.0 +margin_bottom = 62.0 text = "KSET" [node name="ResumeBtn" type="Button" parent="PauseWin/PauseVbox"] -margin_top = 50.0 +margin_top = 66.0 margin_right = 156.0 -margin_bottom = 71.0 +margin_bottom = 95.0 text = "KRUS" [node name="ExitBtn" type="Button" parent="PauseWin/PauseVbox"] -margin_top = 75.0 +margin_top = 99.0 margin_right = 156.0 -margin_bottom = 96.0 +margin_bottom = 128.0 text = "KEXT" [node name="SettingsWin" type="AcceptDialog" parent="."] @@ -72,9 +75,9 @@ anchor_top = 0.5 anchor_right = 0.5 anchor_bottom = 0.5 margin_left = -68.0 -margin_top = -26.0 +margin_top = -33.0 margin_right = 68.0 -margin_bottom = -3.0 +margin_bottom = -4.0 columns = 3 [node name="Languages" type="MenuButton" parent="SettingsWin/Grid"] @@ -110,7 +113,7 @@ anchor_right = 0.5 margin_left = -207.5 margin_top = 8.0 margin_right = 207.5 -margin_bottom = 238.0 +margin_bottom = 230.0 bbcode_enabled = true bbcode_text = "This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this diff --git a/project/scn/TitleScn.tscn b/project/scenes/TitleScn.tscn similarity index 86% rename from project/scn/TitleScn.tscn rename to project/scenes/TitleScn.tscn index cf0edae..24d0306 100644 --- a/project/scn/TitleScn.tscn +++ b/project/scenes/TitleScn.tscn @@ -1,12 +1,17 @@ [gd_scene load_steps=5 format=2] -[ext_resource path="res://src/TitleScn.gd" type="Script" id=1] +[ext_resource path="res://scripts/TitleScn.gd" type="Script" id=1] [ext_resource path="res://styles/DressUpTheme.res" type="Theme" id=2] -[ext_resource path="res://sprites/title.svg" type="Texture" id=3] -[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=4] +[ext_resource path="res://sprites/clothes/title.svg" type="Texture" id=3] +[ext_resource path="res://scenes/PauseScn.tscn" type="PackedScene" id=4] -[node name="Start" type="Node"] +[node name="Start" type="Control"] +anchor_right = 1.0 +anchor_bottom = 1.0 script = ExtResource( 1 ) +__meta__ = { +"_edit_use_anchors_": false +} [node name="MenuRf" type="ReferenceRect" parent="."] anchor_left = 0.5 @@ -35,19 +40,19 @@ margin_bottom = 61.5 [node name="PlayBtn" type="Button" parent="MenuRf/StartVbox"] margin_right = 136.0 -margin_bottom = 21.0 +margin_bottom = 29.0 text = "KPLY" [node name="CreditsBtn" type="Button" parent="MenuRf/StartVbox"] -margin_top = 25.0 +margin_top = 33.0 margin_right = 136.0 -margin_bottom = 46.0 +margin_bottom = 62.0 text = "KCRE" [node name="LicenseBtn" type="Button" parent="MenuRf/StartVbox"] -margin_top = 50.0 +margin_top = 66.0 margin_right = 136.0 -margin_bottom = 71.0 +margin_bottom = 95.0 text = "KLIC" [node name="ModePanel" type="WindowDialog" parent="MenuRf"] diff --git a/project/scn/GameScn.tscn b/project/scn/GameScn.tscn deleted file mode 100644 index 2cb7f8a..0000000 --- a/project/scn/GameScn.tscn +++ /dev/null @@ -1,28 +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/icrazy_frame.svg" type="Texture" id=2] -[ext_resource path="res://sprites/lights.png" type="Texture" id=3] -[ext_resource path="res://scn/Clothes.tscn" type="PackedScene" id=4] -[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=5] -[ext_resource path="res://scn/Character.tscn" type="PackedScene" id=6] - -[node name="GameScreen" type="Node"] -script = ExtResource( 1 ) - -[node name="PicFrame" type="Sprite" parent="."] -position = Vector2( 223.773, 143.963 ) -texture = ExtResource( 2 ) - -[node name="Light" type="Light2D" parent="."] -position = Vector2( 258.891, 129.403 ) -texture = ExtResource( 3 ) - -[node name="Wordrobe" parent="." instance=ExtResource( 4 )] - -[node name="PauseScn" parent="." instance=ExtResource( 5 )] -margin_left = -130.0 -margin_right = -130.0 - -[node name="Character" parent="." instance=ExtResource( 6 )] -position = Vector2( 134.447, 242.62 ) diff --git a/project/src/Character.gd b/project/scripts/Character.gd similarity index 100% rename from project/src/Character.gd rename to project/scripts/Character.gd diff --git a/project/src/ClassicScn.gd b/project/scripts/ClassicScn.gd similarity index 100% rename from project/src/ClassicScn.gd rename to project/scripts/ClassicScn.gd diff --git a/project/scripts/CreditsScn.gd b/project/scripts/CreditsScn.gd new file mode 100644 index 0000000..4dd9e87 --- /dev/null +++ b/project/scripts/CreditsScn.gd @@ -0,0 +1,23 @@ +# 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 undies = $Character/Undies +onready var bottoms = $Character/Bottom +onready var tops = $Character/Top +onready var accesories = $Character/Accessory + +func _process(delta): + + if undies.texture != null: + undies.texture = UserSettings.Underwear + + if bottoms.texture != null: + bottoms.texture = UserSettings.Bottoms + + if tops.texture != null: + tops.texture = UserSettings.Tops + + if accesories.texture != null: + accesories.texture = UserSettings.Accessory + diff --git a/project/src/GameKit.gd b/project/scripts/GameKit.gd similarity index 70% rename from project/src/GameKit.gd rename to project/scripts/GameKit.gd index 40e0c6a..a0401cc 100644 --- a/project/src/GameKit.gd +++ b/project/scripts/GameKit.gd @@ -15,15 +15,15 @@ func is_game_paused(is_paused): func switch_scenes(new_mode): if new_mode == "classic": - get_tree().change_scene("res://scn/ClassicScn.tscn") + get_tree().change_scene("res://scenes/ClassicScn.tscn") elif new_mode == "credits": - get_tree().change_scene("res://scn/CreditsScn.tscn") + get_tree().change_scene("res://scenes/CreditsScn.tscn") elif new_mode == "play": - get_tree().change_scene("res://scn/GameScn.tscn") + get_tree().change_scene("res://scenes/GameScn.tscn") elif new_mode == "title": - get_tree().change_scene("res://scn/TitleScn.tscn") + get_tree().change_scene("res://scenes/TitleScn.tscn") func if_file_exists(file): var fileCheck = File.new() var fileExists = fileCheck.file_exists(file) - fileCheck \ No newline at end of file + fileCheck diff --git a/project/scripts/GameScn.gd b/project/scripts/GameScn.gd new file mode 100644 index 0000000..83f5d47 --- /dev/null +++ b/project/scripts/GameScn.gd @@ -0,0 +1,154 @@ +# Anthony Wilcox licenses this file to you under the MPL license. +# See the LICENSE file in the project root for more information. +extends Node2D + +enum ClothingLayer { + TOPS, + BOTTOMS, + UNDIES, + ACCESSORY, +} + +# Default clothing +onready var bottoms_placeholder = load("res://sprites/clothes/bottoms_placeholder.png") +onready var tops_placeholder = load("res://sprites/clothes/tops_placeholder.png") +onready var accessories_placeholder = load("res://sprites/clothes/tops_placeholder.png") + +onready var bottoms = $Character/Bottom +onready var tops = $Character/Top +onready var accessory = $Character/Accessory + +var UndiesBtn = load("res://scenes/Clothing.tscenes") +# +#func _init(): +# init_underwear() + +func change_bottoms(new_bottom): + bottoms_placeholder = new_bottom + + if new_bottom == null: + bottoms.texture = bottoms_placeholder + UserSettings.Bottoms = bottoms_placeholder + +# if undies == load("res://sprites/clothes/owo_censor.svg"): +# change_undies(null) + + bottoms.texture = bottoms_placeholder + UserSettings.Bottoms = bottoms_placeholder + +func change_undies(new_undies): + $Character/Undies.texture = new_undies + UserSettings.Underwear = new_undies + +func change_tops(new_top): + tops_placeholder = new_top + + if new_top == null: + tops.texture = tops_placeholder + UserSettings.Tops = tops_placeholder + + tops.texture = tops_placeholder + UserSettings.Tops = tops_placeholder + +func change_accessoires(new_accessory): + accessories_placeholder = new_accessory + + if new_accessory == null: + accessory.texture = accessories_placeholder + UserSettings.Accessory = accessories_placeholder + + accessory.texture = accessories_placeholder + UserSettings.Accessory = accessories_placeholder + +#func init_underwear(): +# var undiesFile = File.new() +# undiesFile.open("res://undies.json", undiesFile.READ) +# var undiesJson = parse_json(undiesFile.get_as_text()) +# +# for object in undiesJson: +# var underwear = UndiesBtn.instance() +# +# underwear.texture = load(object.sprite) +# + +func _process(delta): + + # Change clothes + # =========================================================== + + if $UI/Base/Wordrobe/Accessoires/AccsScroll/AccsGrid/CanonCam.is_pressed(): + change_accessoires(load("res://sprites/clothes/camera.png")) + + if $UI/Base/Wordrobe/Pants/PantsScroll/PantsGrid/Jeans.is_pressed(): + change_bottoms(load("res://sprites/clothes/jeans.svg")) + + if $UI/Base/Wordrobe/Pants/PantsScroll/PantsGrid/Sweats.is_pressed(): + change_bottoms(load("res://sprites/clothes/sweat_pants.svg")) + + if $UI/Base/Wordrobe/Pants/PantsScroll/PantsGrid/BlueSkirt.is_pressed(): + change_bottoms(load("res://sprites/clothes/blue_skirt.svg")) + + if $UI/Base/Wordrobe/Pants/PantsScroll/PantsGrid/FormalSkirt.is_pressed(): + change_bottoms(load("res://sprites/clothes/formal_skirt.svg")) + + if $UI/Base/Wordrobe/Pants/PantsScroll/PantsGrid/BeatUpJeans.is_pressed(): + change_bottoms(load("res://sprites/clothes/beat_up_jeans.svg")) + + if $UI/Base/Wordrobe/Underwear/UndiesScroll/UndiesGrid/Briefs.is_pressed(): + change_undies(load("res://sprites/clothes/briefs.svg")) + + if $UI/Base/Wordrobe/Underwear/UndiesScroll/UndiesGrid/ZBriefs.is_pressed(): + change_undies(load("res://sprites/clothes/z_briefs.svg")) + + if $UI/Base/Wordrobe/Underwear/UndiesScroll/UndiesGrid/Fundosi.is_pressed(): + change_undies(load("res://sprites/clothes/fundosi.svg")) + + if $UI/Base/Wordrobe/Underwear/UndiesScroll/UndiesGrid/OwOCensor.is_pressed(): + change_bottoms(null) + change_undies(load("res://sprites/clothes/owo_censor.svg")) + + + if $UI/Base/Wordrobe/Pants/PantsScroll/PantsGrid/BlueCamoJeans.is_pressed(): + change_bottoms(load("res://sprites/clothes/blue_camo_jeans.svg")) + + if $UI/Base/Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/TrainHoodie.is_pressed(): + change_tops(load("res://sprites/clothes/train_hoodie.svg")) + + if $UI/Base/Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/Sweatshirt.is_pressed(): + change_tops(load("res://sprites/clothes/old_sweatshirt.svg")) + + if $UI/Base/Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/Raw.is_pressed(): + change_tops(load("res://sprites/clothes/raw_shirt.svg")) + + if $UI/Base/Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/ZShirt.is_pressed(): + change_tops(load("res://sprites/clothes/z_shirt.png")) + + if $UI/Base/Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/WhatsNewShirt.is_pressed(): + change_tops(load("res://sprites/clothes/whatsnew_shirt.svg")) + + if $UI/Base/Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/Retro.is_pressed(): + change_tops(load("res://sprites/clothes/retro_shirt.svg")) + + if $UI/Base/Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/KormShirt.is_pressed(): + change_tops(load("res://sprites/clothes/korm_shirt.png")) + + if $UI/Base/Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/BikerJacket.is_pressed(): + change_tops(load("res://sprites/clothes/biker_jacket.svg")) + + if $UI/Base/Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/Atomic.is_pressed(): + change_tops(load("res://sprites/clothes/atomic_shirt.svg")) + + if $UI/Base/Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/NLJacket.is_pressed(): + change_tops(load("res://sprites/clothes/nl_jacket.png")) + + # Remove clothes + # =========================================================== + + if $UI/Base/Wordrobe/Accessoires/AccsScroll/AccsGrid/RemoveAccessory.is_pressed(): + change_accessoires(null) + + if $UI/Base/Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/RemoveShirt.is_pressed(): + change_tops(null) + + if $UI/Base/Wordrobe/Pants/PantsScroll/PantsGrid/RemovePants.is_pressed(): + change_bottoms(null) diff --git a/project/src/ImportItems.gd b/project/scripts/ImportItems.gd similarity index 100% rename from project/src/ImportItems.gd rename to project/scripts/ImportItems.gd diff --git a/project/src/ItemDrag.gd b/project/scripts/ItemDrag.gd similarity index 100% rename from project/src/ItemDrag.gd rename to project/scripts/ItemDrag.gd diff --git a/project/src/PauseScn.gd b/project/scripts/PauseScn.gd similarity index 96% rename from project/src/PauseScn.gd rename to project/scripts/PauseScn.gd index d983149..1957556 100644 --- a/project/src/PauseScn.gd +++ b/project/scripts/PauseScn.gd @@ -31,4 +31,4 @@ func _on_MusicBtn_toggled(button_pressed): func _on_ResumeBtn_pressed(): $PauseWin.hide() - GameKit.is_game_paused(false) \ No newline at end of file + GameKit.is_game_paused(false) diff --git a/project/src/Soundtrack.gd b/project/scripts/Soundtrack.gd similarity index 96% rename from project/src/Soundtrack.gd rename to project/scripts/Soundtrack.gd index 2bca365..a1b65b7 100644 --- a/project/src/Soundtrack.gd +++ b/project/scripts/Soundtrack.gd @@ -39,4 +39,4 @@ func play_random_song(): # play() print_debug(playlist[rand_song]) else: - print_debug("Music not found") \ No newline at end of file + print_debug("Music not found") diff --git a/project/src/TitleScn.gd b/project/scripts/TitleScn.gd similarity index 96% rename from project/src/TitleScn.gd rename to project/scripts/TitleScn.gd index 1148357..b6b07b2 100644 --- a/project/src/TitleScn.gd +++ b/project/scripts/TitleScn.gd @@ -1,6 +1,6 @@ # Anthony Wilcox licenses this file to you under the MPL license. # See the LICENSE file in the project root for more information. -extends Node +extends Control func _ready(): $Version.text = GameKit.version diff --git a/project/src/UserSettings.gd b/project/scripts/UserSettings.gd similarity index 100% rename from project/src/UserSettings.gd rename to project/scripts/UserSettings.gd diff --git a/project/sprites/atomic_shirt.png b/project/sprites/clothes/atomic_shirt.png similarity index 100% rename from project/sprites/atomic_shirt.png rename to project/sprites/clothes/atomic_shirt.png diff --git a/project/sprites/clothes/atomic_shirt.png.import b/project/sprites/clothes/atomic_shirt.png.import new file mode 100644 index 0000000..5b2aab9 --- /dev/null +++ b/project/sprites/clothes/atomic_shirt.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/atomic_shirt.png-e1562af2eed6677399909eaf790f9e4c.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/clothes/atomic_shirt.png" +dest_files=[ "res://.import/atomic_shirt.png-e1562af2eed6677399909eaf790f9e4c.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/project/sprites/atomic_shirt.svg b/project/sprites/clothes/atomic_shirt.svg similarity index 100% rename from project/sprites/atomic_shirt.svg rename to project/sprites/clothes/atomic_shirt.svg diff --git a/project/sprites/clothes/atomic_shirt.svg.import b/project/sprites/clothes/atomic_shirt.svg.import new file mode 100644 index 0000000..adaf299 --- /dev/null +++ b/project/sprites/clothes/atomic_shirt.svg.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/atomic_shirt.svg-0abd936b36ee89f91b5ca213ed21b452.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/clothes/atomic_shirt.svg" +dest_files=[ "res://.import/atomic_shirt.svg-0abd936b36ee89f91b5ca213ed21b452.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/project/sprites/background.svg b/project/sprites/clothes/background.svg similarity index 100% rename from project/sprites/background.svg rename to project/sprites/clothes/background.svg diff --git a/project/sprites/beat_up_jeans.png.import b/project/sprites/clothes/background.svg.import similarity index 63% rename from project/sprites/beat_up_jeans.png.import rename to project/sprites/clothes/background.svg.import index e681aa2..9a35431 100644 --- a/project/sprites/beat_up_jeans.png.import +++ b/project/sprites/clothes/background.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/beat_up_jeans.png-c00ecc4d7449d47b449eff5199fe859d.stex" +path="res://.import/background.svg-53a5ac36b87b243d4a54ca15a9574f97.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/beat_up_jeans.png" -dest_files=[ "res://.import/beat_up_jeans.png-c00ecc4d7449d47b449eff5199fe859d.stex" ] +source_file="res://sprites/clothes/background.svg" +dest_files=[ "res://.import/background.svg-53a5ac36b87b243d4a54ca15a9574f97.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/beat_up_jeans.png b/project/sprites/clothes/beat_up_jeans.png similarity index 100% rename from project/sprites/beat_up_jeans.png rename to project/sprites/clothes/beat_up_jeans.png diff --git a/project/sprites/clothes/beat_up_jeans.png.import b/project/sprites/clothes/beat_up_jeans.png.import new file mode 100644 index 0000000..91eb022 --- /dev/null +++ b/project/sprites/clothes/beat_up_jeans.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/beat_up_jeans.png-563d36a45fd402c2c8bee9ed9bcd86ff.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/clothes/beat_up_jeans.png" +dest_files=[ "res://.import/beat_up_jeans.png-563d36a45fd402c2c8bee9ed9bcd86ff.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/project/sprites/beat_up_jeans.svg b/project/sprites/clothes/beat_up_jeans.svg similarity index 100% rename from project/sprites/beat_up_jeans.svg rename to project/sprites/clothes/beat_up_jeans.svg diff --git a/project/sprites/beat_up_jeans.svg.import b/project/sprites/clothes/beat_up_jeans.svg.import similarity index 63% rename from project/sprites/beat_up_jeans.svg.import rename to project/sprites/clothes/beat_up_jeans.svg.import index b16cf9a..b33fd20 100644 --- a/project/sprites/beat_up_jeans.svg.import +++ b/project/sprites/clothes/beat_up_jeans.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/beat_up_jeans.svg-03d15b89036beb9eef0ad5d0514187f7.stex" +path="res://.import/beat_up_jeans.svg-014890781ff23da48ec0da4327398d08.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/beat_up_jeans.svg" -dest_files=[ "res://.import/beat_up_jeans.svg-03d15b89036beb9eef0ad5d0514187f7.stex" ] +source_file="res://sprites/clothes/beat_up_jeans.svg" +dest_files=[ "res://.import/beat_up_jeans.svg-014890781ff23da48ec0da4327398d08.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/biker_jacket.png b/project/sprites/clothes/biker_jacket.png similarity index 100% rename from project/sprites/biker_jacket.png rename to project/sprites/clothes/biker_jacket.png diff --git a/project/sprites/clothes/biker_jacket.png.import b/project/sprites/clothes/biker_jacket.png.import new file mode 100644 index 0000000..3a14972 --- /dev/null +++ b/project/sprites/clothes/biker_jacket.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/biker_jacket.png-49a94ec6ef89c92948186608cc0de2ea.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/clothes/biker_jacket.png" +dest_files=[ "res://.import/biker_jacket.png-49a94ec6ef89c92948186608cc0de2ea.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/project/sprites/biker_jacket.svg b/project/sprites/clothes/biker_jacket.svg similarity index 100% rename from project/sprites/biker_jacket.svg rename to project/sprites/clothes/biker_jacket.svg diff --git a/project/sprites/biker_jacket.svg.import b/project/sprites/clothes/biker_jacket.svg.import similarity index 63% rename from project/sprites/biker_jacket.svg.import rename to project/sprites/clothes/biker_jacket.svg.import index c391efe..424c82c 100644 --- a/project/sprites/biker_jacket.svg.import +++ b/project/sprites/clothes/biker_jacket.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/biker_jacket.svg-e4eb87ceed9266fe4354ce7432371bfb.stex" +path="res://.import/biker_jacket.svg-59d3a2ffb145e6487867d4dac1f72ea2.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/biker_jacket.svg" -dest_files=[ "res://.import/biker_jacket.svg-e4eb87ceed9266fe4354ce7432371bfb.stex" ] +source_file="res://sprites/clothes/biker_jacket.svg" +dest_files=[ "res://.import/biker_jacket.svg-59d3a2ffb145e6487867d4dac1f72ea2.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/blue_camo_jeans.png b/project/sprites/clothes/blue_camo_jeans.png similarity index 100% rename from project/sprites/blue_camo_jeans.png rename to project/sprites/clothes/blue_camo_jeans.png diff --git a/project/sprites/blue_camo_jeans.png.import b/project/sprites/clothes/blue_camo_jeans.png.import similarity index 62% rename from project/sprites/blue_camo_jeans.png.import rename to project/sprites/clothes/blue_camo_jeans.png.import index c694eca..71206a9 100644 --- a/project/sprites/blue_camo_jeans.png.import +++ b/project/sprites/clothes/blue_camo_jeans.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/blue_camo_jeans.png-afabffa48cf609dcc71548ef43544306.stex" +path="res://.import/blue_camo_jeans.png-5ecdedc43f67022a5b8fca3601587a75.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/blue_camo_jeans.png" -dest_files=[ "res://.import/blue_camo_jeans.png-afabffa48cf609dcc71548ef43544306.stex" ] +source_file="res://sprites/clothes/blue_camo_jeans.png" +dest_files=[ "res://.import/blue_camo_jeans.png-5ecdedc43f67022a5b8fca3601587a75.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/blue_camo_jeans.svg b/project/sprites/clothes/blue_camo_jeans.svg similarity index 100% rename from project/sprites/blue_camo_jeans.svg rename to project/sprites/clothes/blue_camo_jeans.svg diff --git a/project/sprites/blue_camo_jeans.svg.import b/project/sprites/clothes/blue_camo_jeans.svg.import similarity index 62% rename from project/sprites/blue_camo_jeans.svg.import rename to project/sprites/clothes/blue_camo_jeans.svg.import index 9e987f6..6e8769d 100644 --- a/project/sprites/blue_camo_jeans.svg.import +++ b/project/sprites/clothes/blue_camo_jeans.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/blue_camo_jeans.svg-41f698e822667bb843272733405fda26.stex" +path="res://.import/blue_camo_jeans.svg-cd16f3b76d3e1ddbb50df0fd6605a5b3.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/blue_camo_jeans.svg" -dest_files=[ "res://.import/blue_camo_jeans.svg-41f698e822667bb843272733405fda26.stex" ] +source_file="res://sprites/clothes/blue_camo_jeans.svg" +dest_files=[ "res://.import/blue_camo_jeans.svg-cd16f3b76d3e1ddbb50df0fd6605a5b3.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/blue_skirt.svg b/project/sprites/clothes/blue_skirt.svg similarity index 100% rename from project/sprites/blue_skirt.svg rename to project/sprites/clothes/blue_skirt.svg diff --git a/project/sprites/clothes/blue_skirt.svg.import b/project/sprites/clothes/blue_skirt.svg.import new file mode 100644 index 0000000..9af81a5 --- /dev/null +++ b/project/sprites/clothes/blue_skirt.svg.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_skirt.svg-957ddd32f4395dea77e370fc230058c0.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/clothes/blue_skirt.svg" +dest_files=[ "res://.import/blue_skirt.svg-957ddd32f4395dea77e370fc230058c0.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/project/sprites/bottoms_placeholder.png b/project/sprites/clothes/bottoms_placeholder.png similarity index 100% rename from project/sprites/bottoms_placeholder.png rename to project/sprites/clothes/bottoms_placeholder.png diff --git a/project/sprites/bottoms_placeholder.png.import b/project/sprites/clothes/bottoms_placeholder.png.import similarity index 61% rename from project/sprites/bottoms_placeholder.png.import rename to project/sprites/clothes/bottoms_placeholder.png.import index 717f61f..93e2cfe 100644 --- a/project/sprites/bottoms_placeholder.png.import +++ b/project/sprites/clothes/bottoms_placeholder.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/bottoms_placeholder.png-62c912a1bed4bf5afa5837db5713e2ad.stex" +path="res://.import/bottoms_placeholder.png-57674ec9f26757b6fa01589150ad74c7.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/bottoms_placeholder.png" -dest_files=[ "res://.import/bottoms_placeholder.png-62c912a1bed4bf5afa5837db5713e2ad.stex" ] +source_file="res://sprites/clothes/bottoms_placeholder.png" +dest_files=[ "res://.import/bottoms_placeholder.png-57674ec9f26757b6fa01589150ad74c7.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/briefs.png b/project/sprites/clothes/briefs.png similarity index 100% rename from project/sprites/briefs.png rename to project/sprites/clothes/briefs.png diff --git a/project/sprites/briefs.png.import b/project/sprites/clothes/briefs.png.import similarity index 65% rename from project/sprites/briefs.png.import rename to project/sprites/clothes/briefs.png.import index 155df8b..8e8d687 100644 --- a/project/sprites/briefs.png.import +++ b/project/sprites/clothes/briefs.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/briefs.png-6f928372b63062f4dbc7d1657c27f18d.stex" +path="res://.import/briefs.png-f2fba0226797db266d542131d9f44a11.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/briefs.png" -dest_files=[ "res://.import/briefs.png-6f928372b63062f4dbc7d1657c27f18d.stex" ] +source_file="res://sprites/clothes/briefs.png" +dest_files=[ "res://.import/briefs.png-f2fba0226797db266d542131d9f44a11.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/briefs.svg b/project/sprites/clothes/briefs.svg similarity index 100% rename from project/sprites/briefs.svg rename to project/sprites/clothes/briefs.svg diff --git a/project/sprites/briefs.svg.import b/project/sprites/clothes/briefs.svg.import similarity index 65% rename from project/sprites/briefs.svg.import rename to project/sprites/clothes/briefs.svg.import index 4cbb35e..e963654 100644 --- a/project/sprites/briefs.svg.import +++ b/project/sprites/clothes/briefs.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/briefs.svg-9a7fc83a2615d5060d598e416767b736.stex" +path="res://.import/briefs.svg-596ed87a13dea058d1ae32aecf4a2573.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/briefs.svg" -dest_files=[ "res://.import/briefs.svg-9a7fc83a2615d5060d598e416767b736.stex" ] +source_file="res://sprites/clothes/briefs.svg" +dest_files=[ "res://.import/briefs.svg-596ed87a13dea058d1ae32aecf4a2573.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/camera.png b/project/sprites/clothes/camera.png similarity index 100% rename from project/sprites/camera.png rename to project/sprites/clothes/camera.png diff --git a/project/sprites/camera.png.import b/project/sprites/clothes/camera.png.import similarity index 65% rename from project/sprites/camera.png.import rename to project/sprites/clothes/camera.png.import index 1d6c853..c2f0a42 100644 --- a/project/sprites/camera.png.import +++ b/project/sprites/clothes/camera.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/camera.png-0467f8492fb5daf0ef966d94d21bc81c.stex" +path="res://.import/camera.png-d91cda782f5cfd9276099749bc42049f.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/camera.png" -dest_files=[ "res://.import/camera.png-0467f8492fb5daf0ef966d94d21bc81c.stex" ] +source_file="res://sprites/clothes/camera.png" +dest_files=[ "res://.import/camera.png-d91cda782f5cfd9276099749bc42049f.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/camera.svg b/project/sprites/clothes/camera.svg similarity index 100% rename from project/sprites/camera.svg rename to project/sprites/clothes/camera.svg diff --git a/project/sprites/camera.svg.import b/project/sprites/clothes/camera.svg.import similarity index 65% rename from project/sprites/camera.svg.import rename to project/sprites/clothes/camera.svg.import index bc513d3..a439fe2 100644 --- a/project/sprites/camera.svg.import +++ b/project/sprites/clothes/camera.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/camera.svg-9305287ba29f8c72100325a8b8ece10a.stex" +path="res://.import/camera.svg-38c1d6b15a580b15ae328609c4975981.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/camera.svg" -dest_files=[ "res://.import/camera.svg-9305287ba29f8c72100325a8b8ece10a.stex" ] +source_file="res://sprites/clothes/camera.svg" +dest_files=[ "res://.import/camera.svg-38c1d6b15a580b15ae328609c4975981.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/character_base.png b/project/sprites/clothes/character_base.png similarity index 100% rename from project/sprites/character_base.png rename to project/sprites/clothes/character_base.png diff --git a/project/sprites/character_base.png.import b/project/sprites/clothes/character_base.png.import similarity index 62% rename from project/sprites/character_base.png.import rename to project/sprites/clothes/character_base.png.import index 1f8d264..2401657 100644 --- a/project/sprites/character_base.png.import +++ b/project/sprites/clothes/character_base.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/character_base.png-5792404fa83b4fad07f738418ce65c16.stex" +path="res://.import/character_base.png-240b103219887692bbf047c7786ade98.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/character_base.png" -dest_files=[ "res://.import/character_base.png-5792404fa83b4fad07f738418ce65c16.stex" ] +source_file="res://sprites/clothes/character_base.png" +dest_files=[ "res://.import/character_base.png-240b103219887692bbf047c7786ade98.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/character_base.svg b/project/sprites/clothes/character_base.svg similarity index 100% rename from project/sprites/character_base.svg rename to project/sprites/clothes/character_base.svg diff --git a/project/sprites/character_base.svg.import b/project/sprites/clothes/character_base.svg.import similarity index 62% rename from project/sprites/character_base.svg.import rename to project/sprites/clothes/character_base.svg.import index cbf71f6..3f928f3 100644 --- a/project/sprites/character_base.svg.import +++ b/project/sprites/clothes/character_base.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/character_base.svg-5ea6954c66ca6e666096a6a63d2174dc.stex" +path="res://.import/character_base.svg-2a3498e2077081015c7a2d1f387a2594.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/character_base.svg" -dest_files=[ "res://.import/character_base.svg-5ea6954c66ca6e666096a6a63d2174dc.stex" ] +source_file="res://sprites/clothes/character_base.svg" +dest_files=[ "res://.import/character_base.svg-2a3498e2077081015c7a2d1f387a2594.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/classic/briefs_classic.png b/project/sprites/clothes/classic/briefs_classic.png similarity index 100% rename from project/sprites/classic/briefs_classic.png rename to project/sprites/clothes/classic/briefs_classic.png diff --git a/project/sprites/classic/briefs_classic.png.import b/project/sprites/clothes/classic/briefs_classic.png.import similarity index 62% rename from project/sprites/classic/briefs_classic.png.import rename to project/sprites/clothes/classic/briefs_classic.png.import index 9867c80..7121c87 100644 --- a/project/sprites/classic/briefs_classic.png.import +++ b/project/sprites/clothes/classic/briefs_classic.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/briefs_classic.png-72f5c50789d008d18419f2ddc543be01.stex" +path="res://.import/briefs_classic.png-2ce669e823e59b371b99b2a937ab4263.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/classic/briefs_classic.png" -dest_files=[ "res://.import/briefs_classic.png-72f5c50789d008d18419f2ddc543be01.stex" ] +source_file="res://sprites/clothes/classic/briefs_classic.png" +dest_files=[ "res://.import/briefs_classic.png-2ce669e823e59b371b99b2a937ab4263.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/classic/camera_classic.png b/project/sprites/clothes/classic/camera_classic.png similarity index 100% rename from project/sprites/classic/camera_classic.png rename to project/sprites/clothes/classic/camera_classic.png diff --git a/project/sprites/classic/camera_classic.png.import b/project/sprites/clothes/classic/camera_classic.png.import similarity index 62% rename from project/sprites/classic/camera_classic.png.import rename to project/sprites/clothes/classic/camera_classic.png.import index 12bccdf..64c5f40 100644 --- a/project/sprites/classic/camera_classic.png.import +++ b/project/sprites/clothes/classic/camera_classic.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/camera_classic.png-af832bc2a977e569d65ef92b696b08ab.stex" +path="res://.import/camera_classic.png-390efe87cd947affce3f4778f00b583b.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/classic/camera_classic.png" -dest_files=[ "res://.import/camera_classic.png-af832bc2a977e569d65ef92b696b08ab.stex" ] +source_file="res://sprites/clothes/classic/camera_classic.png" +dest_files=[ "res://.import/camera_classic.png-390efe87cd947affce3f4778f00b583b.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/classic/fundosi_classic.png b/project/sprites/clothes/classic/fundosi_classic.png similarity index 100% rename from project/sprites/classic/fundosi_classic.png rename to project/sprites/clothes/classic/fundosi_classic.png diff --git a/project/sprites/classic/fundosi_classic.png.import b/project/sprites/clothes/classic/fundosi_classic.png.import similarity index 61% rename from project/sprites/classic/fundosi_classic.png.import rename to project/sprites/clothes/classic/fundosi_classic.png.import index f278453..5d8405d 100644 --- a/project/sprites/classic/fundosi_classic.png.import +++ b/project/sprites/clothes/classic/fundosi_classic.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/fundosi_classic.png-d1e37ddcca659b1e8bbdf034bd5deb1e.stex" +path="res://.import/fundosi_classic.png-2471228693a783e3dc3309151fc92092.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/classic/fundosi_classic.png" -dest_files=[ "res://.import/fundosi_classic.png-d1e37ddcca659b1e8bbdf034bd5deb1e.stex" ] +source_file="res://sprites/clothes/classic/fundosi_classic.png" +dest_files=[ "res://.import/fundosi_classic.png-2471228693a783e3dc3309151fc92092.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/classic/owo_censor_classic.png b/project/sprites/clothes/classic/owo_censor_classic.png similarity index 100% rename from project/sprites/classic/owo_censor_classic.png rename to project/sprites/clothes/classic/owo_censor_classic.png diff --git a/project/sprites/clothes/classic/owo_censor_classic.png.import b/project/sprites/clothes/classic/owo_censor_classic.png.import new file mode 100644 index 0000000..8f897d4 --- /dev/null +++ b/project/sprites/clothes/classic/owo_censor_classic.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/owo_censor_classic.png-1e98f07ed783bcc8b8f9ab01b6c21ef8.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/clothes/classic/owo_censor_classic.png" +dest_files=[ "res://.import/owo_censor_classic.png-1e98f07ed783bcc8b8f9ab01b6c21ef8.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/project/sprites/classic/z_briefs_classic.png b/project/sprites/clothes/classic/z_briefs_classic.png similarity index 100% rename from project/sprites/classic/z_briefs_classic.png rename to project/sprites/clothes/classic/z_briefs_classic.png diff --git a/project/sprites/classic/z_briefs_classic.png.import b/project/sprites/clothes/classic/z_briefs_classic.png.import similarity index 61% rename from project/sprites/classic/z_briefs_classic.png.import rename to project/sprites/clothes/classic/z_briefs_classic.png.import index 01717c5..ac2e1c0 100644 --- a/project/sprites/classic/z_briefs_classic.png.import +++ b/project/sprites/clothes/classic/z_briefs_classic.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/z_briefs_classic.png-c11fbedc052fc3e5550d9a1a43d10e7c.stex" +path="res://.import/z_briefs_classic.png-10d3d58b4454e62be8efb64c0a2e448e.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/classic/z_briefs_classic.png" -dest_files=[ "res://.import/z_briefs_classic.png-c11fbedc052fc3e5550d9a1a43d10e7c.stex" ] +source_file="res://sprites/clothes/classic/z_briefs_classic.png" +dest_files=[ "res://.import/z_briefs_classic.png-10d3d58b4454e62be8efb64c0a2e448e.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/classic_dress_up_bg.png b/project/sprites/clothes/classic_dress_up_bg.png similarity index 100% rename from project/sprites/classic_dress_up_bg.png rename to project/sprites/clothes/classic_dress_up_bg.png diff --git a/project/sprites/classic_dress_up_bg.png.import b/project/sprites/clothes/classic_dress_up_bg.png.import similarity index 61% rename from project/sprites/classic_dress_up_bg.png.import rename to project/sprites/clothes/classic_dress_up_bg.png.import index 66386ac..8bb3c85 100644 --- a/project/sprites/classic_dress_up_bg.png.import +++ b/project/sprites/clothes/classic_dress_up_bg.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/classic_dress_up_bg.png-c34c9f779b47ab5a3dee0408e5a85e6c.stex" +path="res://.import/classic_dress_up_bg.png-594c00eaf14ad58cdedc1824d8f59a5c.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/classic_dress_up_bg.png" -dest_files=[ "res://.import/classic_dress_up_bg.png-c34c9f779b47ab5a3dee0408e5a85e6c.stex" ] +source_file="res://sprites/clothes/classic_dress_up_bg.png" +dest_files=[ "res://.import/classic_dress_up_bg.png-594c00eaf14ad58cdedc1824d8f59a5c.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/classic_dress_up_blurred_bg.png b/project/sprites/clothes/classic_dress_up_blurred_bg.png similarity index 100% rename from project/sprites/classic_dress_up_blurred_bg.png rename to project/sprites/clothes/classic_dress_up_blurred_bg.png diff --git a/project/sprites/classic_dress_up_blurred_bg.png.import b/project/sprites/clothes/classic_dress_up_blurred_bg.png.import similarity index 59% rename from project/sprites/classic_dress_up_blurred_bg.png.import rename to project/sprites/clothes/classic_dress_up_blurred_bg.png.import index cdf8d27..dab810b 100644 --- a/project/sprites/classic_dress_up_blurred_bg.png.import +++ b/project/sprites/clothes/classic_dress_up_blurred_bg.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/classic_dress_up_blurred_bg.png-6aa7996e6a898bc00341242c3e06b222.stex" +path="res://.import/classic_dress_up_blurred_bg.png-21899d83f42ae1cd02cd106046f74e05.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/classic_dress_up_blurred_bg.png" -dest_files=[ "res://.import/classic_dress_up_blurred_bg.png-6aa7996e6a898bc00341242c3e06b222.stex" ] +source_file="res://sprites/clothes/classic_dress_up_blurred_bg.png" +dest_files=[ "res://.import/classic_dress_up_blurred_bg.png-21899d83f42ae1cd02cd106046f74e05.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/cursor.png b/project/sprites/clothes/cursor.png similarity index 100% rename from project/sprites/cursor.png rename to project/sprites/clothes/cursor.png diff --git a/project/sprites/cursor.png.import b/project/sprites/clothes/cursor.png.import similarity index 65% rename from project/sprites/cursor.png.import rename to project/sprites/clothes/cursor.png.import index 805d967..1075b33 100644 --- a/project/sprites/cursor.png.import +++ b/project/sprites/clothes/cursor.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/cursor.png-ab659432fe95e81e8963a978cc7193a5.stex" +path="res://.import/cursor.png-510ed8f4707337aeaa4855fa575b5224.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/cursor.png" -dest_files=[ "res://.import/cursor.png-ab659432fe95e81e8963a978cc7193a5.stex" ] +source_file="res://sprites/clothes/cursor.png" +dest_files=[ "res://.import/cursor.png-510ed8f4707337aeaa4855fa575b5224.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/dj_shirt.png b/project/sprites/clothes/dj_shirt.png similarity index 100% rename from project/sprites/dj_shirt.png rename to project/sprites/clothes/dj_shirt.png diff --git a/project/sprites/dj_shirt.png.import b/project/sprites/clothes/dj_shirt.png.import similarity index 64% rename from project/sprites/dj_shirt.png.import rename to project/sprites/clothes/dj_shirt.png.import index f0a00ed..f2efbaa 100644 --- a/project/sprites/dj_shirt.png.import +++ b/project/sprites/clothes/dj_shirt.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/dj_shirt.png-80161899564a34a06ed4639725e155fc.stex" +path="res://.import/dj_shirt.png-9ec42996bc92d150dd64520203187962.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/dj_shirt.png" -dest_files=[ "res://.import/dj_shirt.png-80161899564a34a06ed4639725e155fc.stex" ] +source_file="res://sprites/clothes/dj_shirt.png" +dest_files=[ "res://.import/dj_shirt.png-9ec42996bc92d150dd64520203187962.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/dj_shirt.svg b/project/sprites/clothes/dj_shirt.svg similarity index 100% rename from project/sprites/dj_shirt.svg rename to project/sprites/clothes/dj_shirt.svg diff --git a/project/sprites/dj_shirt.svg.import b/project/sprites/clothes/dj_shirt.svg.import similarity index 64% rename from project/sprites/dj_shirt.svg.import rename to project/sprites/clothes/dj_shirt.svg.import index 7149e71..52ea958 100644 --- a/project/sprites/dj_shirt.svg.import +++ b/project/sprites/clothes/dj_shirt.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/dj_shirt.svg-5d74e0cb2b3928aecd132f88a5420703.stex" +path="res://.import/dj_shirt.svg-ea5d0d7495aebdde5fea68ced6abd0c6.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/dj_shirt.svg" -dest_files=[ "res://.import/dj_shirt.svg-5d74e0cb2b3928aecd132f88a5420703.stex" ] +source_file="res://sprites/clothes/dj_shirt.svg" +dest_files=[ "res://.import/dj_shirt.svg-ea5d0d7495aebdde5fea68ced6abd0c6.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/dj_shorts.png b/project/sprites/clothes/dj_shorts.png similarity index 100% rename from project/sprites/dj_shorts.png rename to project/sprites/clothes/dj_shorts.png diff --git a/project/sprites/dj_shorts.png.import b/project/sprites/clothes/dj_shorts.png.import similarity index 65% rename from project/sprites/dj_shorts.png.import rename to project/sprites/clothes/dj_shorts.png.import index 1c3f32a..6cdc150 100644 --- a/project/sprites/dj_shorts.png.import +++ b/project/sprites/clothes/dj_shorts.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/dj_shorts.png-3ac46fb6e6c0a3469e2828f5eeac1d3a.stex" +path="res://.import/dj_shorts.png-577f070e856586307ddbbd955ca04f3a.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/dj_shorts.png" -dest_files=[ "res://.import/dj_shorts.png-3ac46fb6e6c0a3469e2828f5eeac1d3a.stex" ] +source_file="res://sprites/clothes/dj_shorts.png" +dest_files=[ "res://.import/dj_shorts.png-577f070e856586307ddbbd955ca04f3a.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/dj_shorts.svg b/project/sprites/clothes/dj_shorts.svg similarity index 100% rename from project/sprites/dj_shorts.svg rename to project/sprites/clothes/dj_shorts.svg diff --git a/project/sprites/dj_shorts.svg.import b/project/sprites/clothes/dj_shorts.svg.import similarity index 64% rename from project/sprites/dj_shorts.svg.import rename to project/sprites/clothes/dj_shorts.svg.import index f7461d6..fd15832 100644 --- a/project/sprites/dj_shorts.svg.import +++ b/project/sprites/clothes/dj_shorts.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/dj_shorts.svg-e17b87622cd4d462498c5bb9deda7dbb.stex" +path="res://.import/dj_shorts.svg-a37366f40625ad486382b984e7c0008d.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/dj_shorts.svg" -dest_files=[ "res://.import/dj_shorts.svg-e17b87622cd4d462498c5bb9deda7dbb.stex" ] +source_file="res://sprites/clothes/dj_shorts.svg" +dest_files=[ "res://.import/dj_shorts.svg-a37366f40625ad486382b984e7c0008d.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/dressup_blurred_wardrobe.png b/project/sprites/clothes/dressup_blurred_wardrobe.png similarity index 100% rename from project/sprites/dressup_blurred_wardrobe.png rename to project/sprites/clothes/dressup_blurred_wardrobe.png diff --git a/project/sprites/dressup_blurred_wardrobe.png.import b/project/sprites/clothes/dressup_blurred_wardrobe.png.import similarity index 60% rename from project/sprites/dressup_blurred_wardrobe.png.import rename to project/sprites/clothes/dressup_blurred_wardrobe.png.import index 5ab809d..faa0a1c 100644 --- a/project/sprites/dressup_blurred_wardrobe.png.import +++ b/project/sprites/clothes/dressup_blurred_wardrobe.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/dressup_blurred_wardrobe.png-3c6212e9f307447cf770b5c2c36955e8.stex" +path="res://.import/dressup_blurred_wardrobe.png-8d6b33052b265436c0bddfa109913146.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/dressup_blurred_wardrobe.png" -dest_files=[ "res://.import/dressup_blurred_wardrobe.png-3c6212e9f307447cf770b5c2c36955e8.stex" ] +source_file="res://sprites/clothes/dressup_blurred_wardrobe.png" +dest_files=[ "res://.import/dressup_blurred_wardrobe.png-8d6b33052b265436c0bddfa109913146.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/dressup_panel.svg b/project/sprites/clothes/dressup_panel.svg similarity index 100% rename from project/sprites/dressup_panel.svg rename to project/sprites/clothes/dressup_panel.svg diff --git a/project/sprites/dressup_panel.svg.import b/project/sprites/clothes/dressup_panel.svg.import similarity index 63% rename from project/sprites/dressup_panel.svg.import rename to project/sprites/clothes/dressup_panel.svg.import index 1426226..bb8d4b0 100644 --- a/project/sprites/dressup_panel.svg.import +++ b/project/sprites/clothes/dressup_panel.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/dressup_panel.svg-32ea153065247fc0395a2e1e29e6c510.stex" +path="res://.import/dressup_panel.svg-10ad40ebf590034174b6f525bb791368.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/dressup_panel.svg" -dest_files=[ "res://.import/dressup_panel.svg-32ea153065247fc0395a2e1e29e6c510.stex" ] +source_file="res://sprites/clothes/dressup_panel.svg" +dest_files=[ "res://.import/dressup_panel.svg-10ad40ebf590034174b6f525bb791368.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/dressup_wardrobe.png b/project/sprites/clothes/dressup_wardrobe.png similarity index 100% rename from project/sprites/dressup_wardrobe.png rename to project/sprites/clothes/dressup_wardrobe.png diff --git a/project/sprites/dressup_wardrobe.png.import b/project/sprites/clothes/dressup_wardrobe.png.import similarity index 62% rename from project/sprites/dressup_wardrobe.png.import rename to project/sprites/clothes/dressup_wardrobe.png.import index 1254751..fcb87ff 100644 --- a/project/sprites/dressup_wardrobe.png.import +++ b/project/sprites/clothes/dressup_wardrobe.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/dressup_wardrobe.png-e515da90332cecc9bffe7a2203d49b25.stex" +path="res://.import/dressup_wardrobe.png-c4a59bdd169c023e961e92917f5fd969.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/dressup_wardrobe.png" -dest_files=[ "res://.import/dressup_wardrobe.png-e515da90332cecc9bffe7a2203d49b25.stex" ] +source_file="res://sprites/clothes/dressup_wardrobe.png" +dest_files=[ "res://.import/dressup_wardrobe.png-c4a59bdd169c023e961e92917f5fd969.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/dressup_wardrobe.svg b/project/sprites/clothes/dressup_wardrobe.svg similarity index 100% rename from project/sprites/dressup_wardrobe.svg rename to project/sprites/clothes/dressup_wardrobe.svg diff --git a/project/sprites/dressup_wardrobe.svg.import b/project/sprites/clothes/dressup_wardrobe.svg.import similarity index 62% rename from project/sprites/dressup_wardrobe.svg.import rename to project/sprites/clothes/dressup_wardrobe.svg.import index adbd775..e033072 100644 --- a/project/sprites/dressup_wardrobe.svg.import +++ b/project/sprites/clothes/dressup_wardrobe.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/dressup_wardrobe.svg-045acf6c9249ae39f39347a2897230a1.stex" +path="res://.import/dressup_wardrobe.svg-469d705b19d4010c02c75ae841bf12a7.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/dressup_wardrobe.svg" -dest_files=[ "res://.import/dressup_wardrobe.svg-045acf6c9249ae39f39347a2897230a1.stex" ] +source_file="res://sprites/clothes/dressup_wardrobe.svg" +dest_files=[ "res://.import/dressup_wardrobe.svg-469d705b19d4010c02c75ae841bf12a7.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/exit_symbol.svg b/project/sprites/clothes/exit_symbol.svg similarity index 100% rename from project/sprites/exit_symbol.svg rename to project/sprites/clothes/exit_symbol.svg diff --git a/project/sprites/shirt_icon.svg.import b/project/sprites/clothes/exit_symbol.svg.import similarity index 69% rename from project/sprites/shirt_icon.svg.import rename to project/sprites/clothes/exit_symbol.svg.import index 736dff8..397a650 100644 --- a/project/sprites/shirt_icon.svg.import +++ b/project/sprites/clothes/exit_symbol.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/shirt_icon.svg-7b696f9c6cc160cdbf6b29c4ffa97174.stex" +path="res://.import/exit_symbol.svg-3108fb0b8e3787d891eea722f1e829f5.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/shirt_icon.svg" -dest_files=[ "res://.import/shirt_icon.svg-7b696f9c6cc160cdbf6b29c4ffa97174.stex" ] +source_file="res://sprites/clothes/exit_symbol.svg" +dest_files=[ "res://.import/exit_symbol.svg-3108fb0b8e3787d891eea722f1e829f5.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/formal_skirt.svg b/project/sprites/clothes/formal_skirt.svg similarity index 100% rename from project/sprites/formal_skirt.svg rename to project/sprites/clothes/formal_skirt.svg diff --git a/project/sprites/formal_skirt.svg.import b/project/sprites/clothes/formal_skirt.svg.import similarity index 63% rename from project/sprites/formal_skirt.svg.import rename to project/sprites/clothes/formal_skirt.svg.import index dfd13ad..1eeff75 100644 --- a/project/sprites/formal_skirt.svg.import +++ b/project/sprites/clothes/formal_skirt.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/formal_skirt.svg-1606a85a3c8f7268a0dd807c2d345893.stex" +path="res://.import/formal_skirt.svg-5364ab387d303866a55bd065f1196db6.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/formal_skirt.svg" -dest_files=[ "res://.import/formal_skirt.svg-1606a85a3c8f7268a0dd807c2d345893.stex" ] +source_file="res://sprites/clothes/formal_skirt.svg" +dest_files=[ "res://.import/formal_skirt.svg-5364ab387d303866a55bd065f1196db6.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/fundosi.png b/project/sprites/clothes/fundosi.png similarity index 100% rename from project/sprites/fundosi.png rename to project/sprites/clothes/fundosi.png diff --git a/project/sprites/fundosi.png.import b/project/sprites/clothes/fundosi.png.import similarity index 65% rename from project/sprites/fundosi.png.import rename to project/sprites/clothes/fundosi.png.import index d4443b9..9cc7aab 100644 --- a/project/sprites/fundosi.png.import +++ b/project/sprites/clothes/fundosi.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/fundosi.png-64674ffdd4a2365e4c8d3aa3c45c2850.stex" +path="res://.import/fundosi.png-d90a95087bb6d0b75606acf5d41632c9.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/fundosi.png" -dest_files=[ "res://.import/fundosi.png-64674ffdd4a2365e4c8d3aa3c45c2850.stex" ] +source_file="res://sprites/clothes/fundosi.png" +dest_files=[ "res://.import/fundosi.png-d90a95087bb6d0b75606acf5d41632c9.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/fundosi.svg b/project/sprites/clothes/fundosi.svg similarity index 100% rename from project/sprites/fundosi.svg rename to project/sprites/clothes/fundosi.svg diff --git a/project/sprites/fundosi.svg.import b/project/sprites/clothes/fundosi.svg.import similarity index 65% rename from project/sprites/fundosi.svg.import rename to project/sprites/clothes/fundosi.svg.import index 61e012b..cbd17ec 100644 --- a/project/sprites/fundosi.svg.import +++ b/project/sprites/clothes/fundosi.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/fundosi.svg-faa9e69901a505e92e5b3e529aca7f92.stex" +path="res://.import/fundosi.svg-3e06a2a2235c6bc5f836c17caffdf31e.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/fundosi.svg" -dest_files=[ "res://.import/fundosi.svg-faa9e69901a505e92e5b3e529aca7f92.stex" ] +source_file="res://sprites/clothes/fundosi.svg" +dest_files=[ "res://.import/fundosi.svg-3e06a2a2235c6bc5f836c17caffdf31e.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/icrazy_frame.png b/project/sprites/clothes/icrazy_frame.png similarity index 100% rename from project/sprites/icrazy_frame.png rename to project/sprites/clothes/icrazy_frame.png diff --git a/project/sprites/icrazy_frame.png.import b/project/sprites/clothes/icrazy_frame.png.import similarity index 63% rename from project/sprites/icrazy_frame.png.import rename to project/sprites/clothes/icrazy_frame.png.import index adff052..bdce86f 100644 --- a/project/sprites/icrazy_frame.png.import +++ b/project/sprites/clothes/icrazy_frame.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/icrazy_frame.png-af55dcb31394696f3290be6e829ab937.stex" +path="res://.import/icrazy_frame.png-b5e146a49c044ebe70b5af8f2c06006d.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/icrazy_frame.png" -dest_files=[ "res://.import/icrazy_frame.png-af55dcb31394696f3290be6e829ab937.stex" ] +source_file="res://sprites/clothes/icrazy_frame.png" +dest_files=[ "res://.import/icrazy_frame.png-b5e146a49c044ebe70b5af8f2c06006d.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/icrazy_frame.svg b/project/sprites/clothes/icrazy_frame.svg similarity index 100% rename from project/sprites/icrazy_frame.svg rename to project/sprites/clothes/icrazy_frame.svg diff --git a/project/sprites/icrazy_frame.svg.import b/project/sprites/clothes/icrazy_frame.svg.import similarity index 63% rename from project/sprites/icrazy_frame.svg.import rename to project/sprites/clothes/icrazy_frame.svg.import index 5f54b48..808dd6f 100644 --- a/project/sprites/icrazy_frame.svg.import +++ b/project/sprites/clothes/icrazy_frame.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/icrazy_frame.svg-5b50831a46f310682a70f3d23d28a5f9.stex" +path="res://.import/icrazy_frame.svg-032c353b0b85ae71d6c5843b8929a60c.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/icrazy_frame.svg" -dest_files=[ "res://.import/icrazy_frame.svg-5b50831a46f310682a70f3d23d28a5f9.stex" ] +source_file="res://sprites/clothes/icrazy_frame.svg" +dest_files=[ "res://.import/icrazy_frame.svg-032c353b0b85ae71d6c5843b8929a60c.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/jeans.png b/project/sprites/clothes/jeans.png similarity index 100% rename from project/sprites/jeans.png rename to project/sprites/clothes/jeans.png diff --git a/project/sprites/jeans.png.import b/project/sprites/clothes/jeans.png.import similarity index 66% rename from project/sprites/jeans.png.import rename to project/sprites/clothes/jeans.png.import index f0a3529..d05ba53 100644 --- a/project/sprites/jeans.png.import +++ b/project/sprites/clothes/jeans.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/jeans.png-4eb49baf486faa435c8ef6bffe46d021.stex" +path="res://.import/jeans.png-cb872dec1c87d219bb56d373215c361d.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/jeans.png" -dest_files=[ "res://.import/jeans.png-4eb49baf486faa435c8ef6bffe46d021.stex" ] +source_file="res://sprites/clothes/jeans.png" +dest_files=[ "res://.import/jeans.png-cb872dec1c87d219bb56d373215c361d.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/jeans.svg b/project/sprites/clothes/jeans.svg similarity index 100% rename from project/sprites/jeans.svg rename to project/sprites/clothes/jeans.svg diff --git a/project/sprites/jeans.svg.import b/project/sprites/clothes/jeans.svg.import similarity index 66% rename from project/sprites/jeans.svg.import rename to project/sprites/clothes/jeans.svg.import index e4617bb..6fa55a3 100644 --- a/project/sprites/jeans.svg.import +++ b/project/sprites/clothes/jeans.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/jeans.svg-7d67c27e9800a7e7f837e3f29c2dd43f.stex" +path="res://.import/jeans.svg-7575323cfcbd540047bd04422a2c1441.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/jeans.svg" -dest_files=[ "res://.import/jeans.svg-7d67c27e9800a7e7f837e3f29c2dd43f.stex" ] +source_file="res://sprites/clothes/jeans.svg" +dest_files=[ "res://.import/jeans.svg-7575323cfcbd540047bd04422a2c1441.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/korm_shirt.png b/project/sprites/clothes/korm_shirt.png similarity index 100% rename from project/sprites/korm_shirt.png rename to project/sprites/clothes/korm_shirt.png diff --git a/project/sprites/korm_shirt.png.import b/project/sprites/clothes/korm_shirt.png.import similarity index 63% rename from project/sprites/korm_shirt.png.import rename to project/sprites/clothes/korm_shirt.png.import index 6d3e7f4..3b2c57f 100644 --- a/project/sprites/korm_shirt.png.import +++ b/project/sprites/clothes/korm_shirt.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/korm_shirt.png-f07f09ed6075d16aa1508a744065f7da.stex" +path="res://.import/korm_shirt.png-a5f5a650c72d1ed2c79eac52194dc754.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/korm_shirt.png" -dest_files=[ "res://.import/korm_shirt.png-f07f09ed6075d16aa1508a744065f7da.stex" ] +source_file="res://sprites/clothes/korm_shirt.png" +dest_files=[ "res://.import/korm_shirt.png-a5f5a650c72d1ed2c79eac52194dc754.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/lights.png b/project/sprites/clothes/lights.png similarity index 100% rename from project/sprites/lights.png rename to project/sprites/clothes/lights.png diff --git a/project/sprites/lights.png.import b/project/sprites/clothes/lights.png.import similarity index 65% rename from project/sprites/lights.png.import rename to project/sprites/clothes/lights.png.import index 2db02a4..c0c8ff7 100644 --- a/project/sprites/lights.png.import +++ b/project/sprites/clothes/lights.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/lights.png-5c43e5818b991ee4f86a53556f44fee3.stex" +path="res://.import/lights.png-1c6ed66a35ce8733fd40b8a8f45436db.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/lights.png" -dest_files=[ "res://.import/lights.png-5c43e5818b991ee4f86a53556f44fee3.stex" ] +source_file="res://sprites/clothes/lights.png" +dest_files=[ "res://.import/lights.png-1c6ed66a35ce8733fd40b8a8f45436db.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/modern_dress_up_bg.png b/project/sprites/clothes/modern_dress_up_bg.png similarity index 100% rename from project/sprites/modern_dress_up_bg.png rename to project/sprites/clothes/modern_dress_up_bg.png diff --git a/project/sprites/modern_dress_up_bg.png.import b/project/sprites/clothes/modern_dress_up_bg.png.import similarity index 61% rename from project/sprites/modern_dress_up_bg.png.import rename to project/sprites/clothes/modern_dress_up_bg.png.import index 1ce0571..8a54db2 100644 --- a/project/sprites/modern_dress_up_bg.png.import +++ b/project/sprites/clothes/modern_dress_up_bg.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/modern_dress_up_bg.png-b6257bee0c22f0c02b365ec8541a4ce1.stex" +path="res://.import/modern_dress_up_bg.png-2ec62cdd8ee1c5f60b5faa53f704458f.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/modern_dress_up_bg.png" -dest_files=[ "res://.import/modern_dress_up_bg.png-b6257bee0c22f0c02b365ec8541a4ce1.stex" ] +source_file="res://sprites/clothes/modern_dress_up_bg.png" +dest_files=[ "res://.import/modern_dress_up_bg.png-2ec62cdd8ee1c5f60b5faa53f704458f.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/modern_dress_up_blurred_bg.png b/project/sprites/clothes/modern_dress_up_blurred_bg.png similarity index 100% rename from project/sprites/modern_dress_up_blurred_bg.png rename to project/sprites/clothes/modern_dress_up_blurred_bg.png diff --git a/project/sprites/modern_dress_up_blurred_bg.png.import b/project/sprites/clothes/modern_dress_up_blurred_bg.png.import similarity index 59% rename from project/sprites/modern_dress_up_blurred_bg.png.import rename to project/sprites/clothes/modern_dress_up_blurred_bg.png.import index 5d4e837..efdc40d 100644 --- a/project/sprites/modern_dress_up_blurred_bg.png.import +++ b/project/sprites/clothes/modern_dress_up_blurred_bg.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/modern_dress_up_blurred_bg.png-575ece3d83f8eadf4c8105070c6a16bb.stex" +path="res://.import/modern_dress_up_blurred_bg.png-75dc54176153d3b2378312626047f013.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/modern_dress_up_blurred_bg.png" -dest_files=[ "res://.import/modern_dress_up_blurred_bg.png-575ece3d83f8eadf4c8105070c6a16bb.stex" ] +source_file="res://sprites/clothes/modern_dress_up_blurred_bg.png" +dest_files=[ "res://.import/modern_dress_up_blurred_bg.png-75dc54176153d3b2378312626047f013.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/nl_jacket.png b/project/sprites/clothes/nl_jacket.png similarity index 100% rename from project/sprites/nl_jacket.png rename to project/sprites/clothes/nl_jacket.png diff --git a/project/sprites/nl_jacket.png.import b/project/sprites/clothes/nl_jacket.png.import similarity index 64% rename from project/sprites/nl_jacket.png.import rename to project/sprites/clothes/nl_jacket.png.import index c2a631d..22f8b3e 100644 --- a/project/sprites/nl_jacket.png.import +++ b/project/sprites/clothes/nl_jacket.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/nl_jacket.png-aff6e21481922bc8fce8781e92a0e1f1.stex" +path="res://.import/nl_jacket.png-fce4f778b8b554957773cdfe0b58ab26.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/nl_jacket.png" -dest_files=[ "res://.import/nl_jacket.png-aff6e21481922bc8fce8781e92a0e1f1.stex" ] +source_file="res://sprites/clothes/nl_jacket.png" +dest_files=[ "res://.import/nl_jacket.png-fce4f778b8b554957773cdfe0b58ab26.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/old_sweatshirt.png b/project/sprites/clothes/old_sweatshirt.png similarity index 100% rename from project/sprites/old_sweatshirt.png rename to project/sprites/clothes/old_sweatshirt.png diff --git a/project/sprites/old_sweatshirt.png.import b/project/sprites/clothes/old_sweatshirt.png.import similarity index 62% rename from project/sprites/old_sweatshirt.png.import rename to project/sprites/clothes/old_sweatshirt.png.import index edf0ff4..46dcf83 100644 --- a/project/sprites/old_sweatshirt.png.import +++ b/project/sprites/clothes/old_sweatshirt.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/old_sweatshirt.png-8ff3782de11b321a27ebf4a4a39eb45b.stex" +path="res://.import/old_sweatshirt.png-dbf47e037ee1cc1a851f14c93ca3e55b.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/old_sweatshirt.png" -dest_files=[ "res://.import/old_sweatshirt.png-8ff3782de11b321a27ebf4a4a39eb45b.stex" ] +source_file="res://sprites/clothes/old_sweatshirt.png" +dest_files=[ "res://.import/old_sweatshirt.png-dbf47e037ee1cc1a851f14c93ca3e55b.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/old_sweatshirt.svg b/project/sprites/clothes/old_sweatshirt.svg similarity index 100% rename from project/sprites/old_sweatshirt.svg rename to project/sprites/clothes/old_sweatshirt.svg diff --git a/project/sprites/old_sweatshirt.svg.import b/project/sprites/clothes/old_sweatshirt.svg.import similarity index 62% rename from project/sprites/old_sweatshirt.svg.import rename to project/sprites/clothes/old_sweatshirt.svg.import index def2449..46655c8 100644 --- a/project/sprites/old_sweatshirt.svg.import +++ b/project/sprites/clothes/old_sweatshirt.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/old_sweatshirt.svg-30079f7163aabdff1203e8d8d45de87f.stex" +path="res://.import/old_sweatshirt.svg-251475bba969ae25f4a16f96f0ae8ba9.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/old_sweatshirt.svg" -dest_files=[ "res://.import/old_sweatshirt.svg-30079f7163aabdff1203e8d8d45de87f.stex" ] +source_file="res://sprites/clothes/old_sweatshirt.svg" +dest_files=[ "res://.import/old_sweatshirt.svg-251475bba969ae25f4a16f96f0ae8ba9.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/owo_censor.png b/project/sprites/clothes/owo_censor.png similarity index 100% rename from project/sprites/owo_censor.png rename to project/sprites/clothes/owo_censor.png diff --git a/project/sprites/owo_censor.png.import b/project/sprites/clothes/owo_censor.png.import similarity index 63% rename from project/sprites/owo_censor.png.import rename to project/sprites/clothes/owo_censor.png.import index 4cf220a..d9380be 100644 --- a/project/sprites/owo_censor.png.import +++ b/project/sprites/clothes/owo_censor.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/owo_censor.png-d1b3c304f5bcc19d7278c3bc62d9e52a.stex" +path="res://.import/owo_censor.png-2a498f144203dc5d2648b236b3ec8a4f.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/owo_censor.png" -dest_files=[ "res://.import/owo_censor.png-d1b3c304f5bcc19d7278c3bc62d9e52a.stex" ] +source_file="res://sprites/clothes/owo_censor.png" +dest_files=[ "res://.import/owo_censor.png-2a498f144203dc5d2648b236b3ec8a4f.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/owo_censor.svg b/project/sprites/clothes/owo_censor.svg similarity index 100% rename from project/sprites/owo_censor.svg rename to project/sprites/clothes/owo_censor.svg diff --git a/project/sprites/owo_censor.svg.import b/project/sprites/clothes/owo_censor.svg.import similarity index 63% rename from project/sprites/owo_censor.svg.import rename to project/sprites/clothes/owo_censor.svg.import index ebb8a25..c284ac7 100644 --- a/project/sprites/owo_censor.svg.import +++ b/project/sprites/clothes/owo_censor.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/owo_censor.svg-c10221601fea246b468116135228d207.stex" +path="res://.import/owo_censor.svg-db0bdef3d0a99bdb701b9d78187c25bb.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/owo_censor.svg" -dest_files=[ "res://.import/owo_censor.svg-c10221601fea246b468116135228d207.stex" ] +source_file="res://sprites/clothes/owo_censor.svg" +dest_files=[ "res://.import/owo_censor.svg-db0bdef3d0a99bdb701b9d78187c25bb.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/pants_icon.svg b/project/sprites/clothes/pants_icon.svg similarity index 100% rename from project/sprites/pants_icon.svg rename to project/sprites/clothes/pants_icon.svg diff --git a/project/sprites/pants_icon.svg.import b/project/sprites/clothes/pants_icon.svg.import similarity index 63% rename from project/sprites/pants_icon.svg.import rename to project/sprites/clothes/pants_icon.svg.import index 26f990d..6d28341 100644 --- a/project/sprites/pants_icon.svg.import +++ b/project/sprites/clothes/pants_icon.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/pants_icon.svg-1504bee50c96f9a58b6f753201be5a91.stex" +path="res://.import/pants_icon.svg-1b70a1b4db0c8229d68cbbafffd7bf3c.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/pants_icon.svg" -dest_files=[ "res://.import/pants_icon.svg-1504bee50c96f9a58b6f753201be5a91.stex" ] +source_file="res://sprites/clothes/pants_icon.svg" +dest_files=[ "res://.import/pants_icon.svg-1b70a1b4db0c8229d68cbbafffd7bf3c.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/raw_shirt.png b/project/sprites/clothes/raw_shirt.png similarity index 100% rename from project/sprites/raw_shirt.png rename to project/sprites/clothes/raw_shirt.png diff --git a/project/sprites/raw_shirt.png.import b/project/sprites/clothes/raw_shirt.png.import similarity index 64% rename from project/sprites/raw_shirt.png.import rename to project/sprites/clothes/raw_shirt.png.import index 916c44f..903751c 100644 --- a/project/sprites/raw_shirt.png.import +++ b/project/sprites/clothes/raw_shirt.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/raw_shirt.png-c4660fc1e1e66ef49d4ee9d5b85ebdaf.stex" +path="res://.import/raw_shirt.png-7da25ac67de42dedb246944fe382a09a.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/raw_shirt.png" -dest_files=[ "res://.import/raw_shirt.png-c4660fc1e1e66ef49d4ee9d5b85ebdaf.stex" ] +source_file="res://sprites/clothes/raw_shirt.png" +dest_files=[ "res://.import/raw_shirt.png-7da25ac67de42dedb246944fe382a09a.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/raw_shirt.svg b/project/sprites/clothes/raw_shirt.svg similarity index 100% rename from project/sprites/raw_shirt.svg rename to project/sprites/clothes/raw_shirt.svg diff --git a/project/sprites/raw_shirt.svg.import b/project/sprites/clothes/raw_shirt.svg.import similarity index 64% rename from project/sprites/raw_shirt.svg.import rename to project/sprites/clothes/raw_shirt.svg.import index c3f4a89..9f55f93 100644 --- a/project/sprites/raw_shirt.svg.import +++ b/project/sprites/clothes/raw_shirt.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/raw_shirt.svg-1202cc08aee5b0934f83fe7787bf5d7c.stex" +path="res://.import/raw_shirt.svg-5b4f4775b459a41371a301c8fefa7bfd.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/raw_shirt.svg" -dest_files=[ "res://.import/raw_shirt.svg-1202cc08aee5b0934f83fe7787bf5d7c.stex" ] +source_file="res://sprites/clothes/raw_shirt.svg" +dest_files=[ "res://.import/raw_shirt.svg-5b4f4775b459a41371a301c8fefa7bfd.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/retro_shirt.svg b/project/sprites/clothes/retro_shirt.svg similarity index 100% rename from project/sprites/retro_shirt.svg rename to project/sprites/clothes/retro_shirt.svg diff --git a/project/sprites/retro_shirt.svg.import b/project/sprites/clothes/retro_shirt.svg.import similarity index 63% rename from project/sprites/retro_shirt.svg.import rename to project/sprites/clothes/retro_shirt.svg.import index 2cbd99e..e25641f 100644 --- a/project/sprites/retro_shirt.svg.import +++ b/project/sprites/clothes/retro_shirt.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/retro_shirt.svg-1b89b68ed71acd10a3999ba0674cbf2c.stex" +path="res://.import/retro_shirt.svg-ad65f3cc5ef550b2f1b7d92e751bcd9f.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/retro_shirt.svg" -dest_files=[ "res://.import/retro_shirt.svg-1b89b68ed71acd10a3999ba0674cbf2c.stex" ] +source_file="res://sprites/clothes/retro_shirt.svg" +dest_files=[ "res://.import/retro_shirt.svg-ad65f3cc5ef550b2f1b7d92e751bcd9f.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/shirt_icon.svg b/project/sprites/clothes/shirt_icon.svg similarity index 100% rename from project/sprites/shirt_icon.svg rename to project/sprites/clothes/shirt_icon.svg diff --git a/project/sprites/clothes/shirt_icon.svg.import b/project/sprites/clothes/shirt_icon.svg.import new file mode 100644 index 0000000..3253799 --- /dev/null +++ b/project/sprites/clothes/shirt_icon.svg.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/shirt_icon.svg-96421effc10bfb14afa97232b2ab5d13.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/clothes/shirt_icon.svg" +dest_files=[ "res://.import/shirt_icon.svg-96421effc10bfb14afa97232b2ab5d13.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/project/sprites/sixam_wordmark.svg b/project/sprites/clothes/sixam_wordmark.svg similarity index 100% rename from project/sprites/sixam_wordmark.svg rename to project/sprites/clothes/sixam_wordmark.svg diff --git a/project/sprites/sixam_wordmark.svg.import b/project/sprites/clothes/sixam_wordmark.svg.import similarity index 62% rename from project/sprites/sixam_wordmark.svg.import rename to project/sprites/clothes/sixam_wordmark.svg.import index e667915..60d35fa 100644 --- a/project/sprites/sixam_wordmark.svg.import +++ b/project/sprites/clothes/sixam_wordmark.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/sixam_wordmark.svg-b71d21b034a1362d87ee40fbd49bcca6.stex" +path="res://.import/sixam_wordmark.svg-1b4a7fac4387207343523a24f310f147.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/sixam_wordmark.svg" -dest_files=[ "res://.import/sixam_wordmark.svg-b71d21b034a1362d87ee40fbd49bcca6.stex" ] +source_file="res://sprites/clothes/sixam_wordmark.svg" +dest_files=[ "res://.import/sixam_wordmark.svg-1b4a7fac4387207343523a24f310f147.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/sweat_pants.png b/project/sprites/clothes/sweat_pants.png similarity index 100% rename from project/sprites/sweat_pants.png rename to project/sprites/clothes/sweat_pants.png diff --git a/project/sprites/sweat_pants.png.import b/project/sprites/clothes/sweat_pants.png.import similarity index 63% rename from project/sprites/sweat_pants.png.import rename to project/sprites/clothes/sweat_pants.png.import index 7149e4d..d1cb99f 100644 --- a/project/sprites/sweat_pants.png.import +++ b/project/sprites/clothes/sweat_pants.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/sweat_pants.png-11e4999a9104f0a78d5c5bec224fafa3.stex" +path="res://.import/sweat_pants.png-d8ccfd16bd13d1a37fa594caf5da185b.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/sweat_pants.png" -dest_files=[ "res://.import/sweat_pants.png-11e4999a9104f0a78d5c5bec224fafa3.stex" ] +source_file="res://sprites/clothes/sweat_pants.png" +dest_files=[ "res://.import/sweat_pants.png-d8ccfd16bd13d1a37fa594caf5da185b.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/sweat_pants.svg b/project/sprites/clothes/sweat_pants.svg similarity index 100% rename from project/sprites/sweat_pants.svg rename to project/sprites/clothes/sweat_pants.svg diff --git a/project/sprites/sweat_pants.svg.import b/project/sprites/clothes/sweat_pants.svg.import similarity index 63% rename from project/sprites/sweat_pants.svg.import rename to project/sprites/clothes/sweat_pants.svg.import index a80a6c7..62e02d0 100644 --- a/project/sprites/sweat_pants.svg.import +++ b/project/sprites/clothes/sweat_pants.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/sweat_pants.svg-1954ece07ca8c041219480fca138c463.stex" +path="res://.import/sweat_pants.svg-dfc605efc826826df7e7b0db566c1afc.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/sweat_pants.svg" -dest_files=[ "res://.import/sweat_pants.svg-1954ece07ca8c041219480fca138c463.stex" ] +source_file="res://sprites/clothes/sweat_pants.svg" +dest_files=[ "res://.import/sweat_pants.svg-dfc605efc826826df7e7b0db566c1afc.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/title.svg b/project/sprites/clothes/title.svg similarity index 100% rename from project/sprites/title.svg rename to project/sprites/clothes/title.svg diff --git a/project/sprites/title.svg.import b/project/sprites/clothes/title.svg.import similarity index 66% rename from project/sprites/title.svg.import rename to project/sprites/clothes/title.svg.import index d74772a..30a16be 100644 --- a/project/sprites/title.svg.import +++ b/project/sprites/clothes/title.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/title.svg-3c8d8bd98059256ec9d35a2d3db74033.stex" +path="res://.import/title.svg-fedd8a76fa80d30aaf7bbe3abed9eb0c.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/title.svg" -dest_files=[ "res://.import/title.svg-3c8d8bd98059256ec9d35a2d3db74033.stex" ] +source_file="res://sprites/clothes/title.svg" +dest_files=[ "res://.import/title.svg-fedd8a76fa80d30aaf7bbe3abed9eb0c.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/tops_placeholder.png b/project/sprites/clothes/tops_placeholder.png similarity index 100% rename from project/sprites/tops_placeholder.png rename to project/sprites/clothes/tops_placeholder.png diff --git a/project/sprites/tops_placeholder.png.import b/project/sprites/clothes/tops_placeholder.png.import similarity index 62% rename from project/sprites/tops_placeholder.png.import rename to project/sprites/clothes/tops_placeholder.png.import index f256ad7..ebd27d1 100644 --- a/project/sprites/tops_placeholder.png.import +++ b/project/sprites/clothes/tops_placeholder.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/tops_placeholder.png-54c2904f65635ff49326b2a4d49ee156.stex" +path="res://.import/tops_placeholder.png-f5a04655f1fc6c8a24a963628d2d193a.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/tops_placeholder.png" -dest_files=[ "res://.import/tops_placeholder.png-54c2904f65635ff49326b2a4d49ee156.stex" ] +source_file="res://sprites/clothes/tops_placeholder.png" +dest_files=[ "res://.import/tops_placeholder.png-f5a04655f1fc6c8a24a963628d2d193a.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/train_hoodie.png b/project/sprites/clothes/train_hoodie.png similarity index 100% rename from project/sprites/train_hoodie.png rename to project/sprites/clothes/train_hoodie.png diff --git a/project/sprites/train_hoodie.png.import b/project/sprites/clothes/train_hoodie.png.import similarity index 63% rename from project/sprites/train_hoodie.png.import rename to project/sprites/clothes/train_hoodie.png.import index 9e1dc97..ee97aca 100644 --- a/project/sprites/train_hoodie.png.import +++ b/project/sprites/clothes/train_hoodie.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/train_hoodie.png-247a5ff43a42e77162fd88060572e83c.stex" +path="res://.import/train_hoodie.png-ef75f26eae784b263936f7a14cf90b00.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/train_hoodie.png" -dest_files=[ "res://.import/train_hoodie.png-247a5ff43a42e77162fd88060572e83c.stex" ] +source_file="res://sprites/clothes/train_hoodie.png" +dest_files=[ "res://.import/train_hoodie.png-ef75f26eae784b263936f7a14cf90b00.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/train_hoodie.svg b/project/sprites/clothes/train_hoodie.svg similarity index 100% rename from project/sprites/train_hoodie.svg rename to project/sprites/clothes/train_hoodie.svg diff --git a/project/sprites/train_hoodie.svg.import b/project/sprites/clothes/train_hoodie.svg.import similarity index 63% rename from project/sprites/train_hoodie.svg.import rename to project/sprites/clothes/train_hoodie.svg.import index 408dce7..c298f87 100644 --- a/project/sprites/train_hoodie.svg.import +++ b/project/sprites/clothes/train_hoodie.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/train_hoodie.svg-437ba1a0f0dc90d83164909d14ede895.stex" +path="res://.import/train_hoodie.svg-2cb1428b295bcd1ac1834e33929210de.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/train_hoodie.svg" -dest_files=[ "res://.import/train_hoodie.svg-437ba1a0f0dc90d83164909d14ede895.stex" ] +source_file="res://sprites/clothes/train_hoodie.svg" +dest_files=[ "res://.import/train_hoodie.svg-2cb1428b295bcd1ac1834e33929210de.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/whatsnew_shirt.png b/project/sprites/clothes/whatsnew_shirt.png similarity index 100% rename from project/sprites/whatsnew_shirt.png rename to project/sprites/clothes/whatsnew_shirt.png diff --git a/project/sprites/whatsnew_shirt.png.import b/project/sprites/clothes/whatsnew_shirt.png.import similarity index 62% rename from project/sprites/whatsnew_shirt.png.import rename to project/sprites/clothes/whatsnew_shirt.png.import index e2bf767..33c9815 100644 --- a/project/sprites/whatsnew_shirt.png.import +++ b/project/sprites/clothes/whatsnew_shirt.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/whatsnew_shirt.png-0a927e0e8c864ca319119b0b4145de08.stex" +path="res://.import/whatsnew_shirt.png-42b2ca70dd4fab6afb076d118bf9155b.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/whatsnew_shirt.png" -dest_files=[ "res://.import/whatsnew_shirt.png-0a927e0e8c864ca319119b0b4145de08.stex" ] +source_file="res://sprites/clothes/whatsnew_shirt.png" +dest_files=[ "res://.import/whatsnew_shirt.png-42b2ca70dd4fab6afb076d118bf9155b.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/whatsnew_shirt.svg b/project/sprites/clothes/whatsnew_shirt.svg similarity index 100% rename from project/sprites/whatsnew_shirt.svg rename to project/sprites/clothes/whatsnew_shirt.svg diff --git a/project/sprites/whatsnew_shirt.svg.import b/project/sprites/clothes/whatsnew_shirt.svg.import similarity index 62% rename from project/sprites/whatsnew_shirt.svg.import rename to project/sprites/clothes/whatsnew_shirt.svg.import index edca9a1..2ea2161 100644 --- a/project/sprites/whatsnew_shirt.svg.import +++ b/project/sprites/clothes/whatsnew_shirt.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/whatsnew_shirt.svg-3679963ea83eef4aef7bdf8f4503eb3e.stex" +path="res://.import/whatsnew_shirt.svg-be6dc02a6d26830ee09f5119ad4053e5.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/whatsnew_shirt.svg" -dest_files=[ "res://.import/whatsnew_shirt.svg-3679963ea83eef4aef7bdf8f4503eb3e.stex" ] +source_file="res://sprites/clothes/whatsnew_shirt.svg" +dest_files=[ "res://.import/whatsnew_shirt.svg-be6dc02a6d26830ee09f5119ad4053e5.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/x_button.svg b/project/sprites/clothes/x_button.svg similarity index 100% rename from project/sprites/x_button.svg rename to project/sprites/clothes/x_button.svg diff --git a/project/sprites/background.svg.import b/project/sprites/clothes/x_button.svg.import similarity index 64% rename from project/sprites/background.svg.import rename to project/sprites/clothes/x_button.svg.import index 9a88f35..d3063e3 100644 --- a/project/sprites/background.svg.import +++ b/project/sprites/clothes/x_button.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/background.svg-9d44f657a4f6e1d203e5fbbc2f03483f.stex" +path="res://.import/x_button.svg-d4e5d4da46420d983dbb42b3464de51e.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/background.svg" -dest_files=[ "res://.import/background.svg-9d44f657a4f6e1d203e5fbbc2f03483f.stex" ] +source_file="res://sprites/clothes/x_button.svg" +dest_files=[ "res://.import/x_button.svg-d4e5d4da46420d983dbb42b3464de51e.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/z_briefs.png b/project/sprites/clothes/z_briefs.png similarity index 100% rename from project/sprites/z_briefs.png rename to project/sprites/clothes/z_briefs.png diff --git a/project/sprites/z_briefs.png.import b/project/sprites/clothes/z_briefs.png.import similarity index 64% rename from project/sprites/z_briefs.png.import rename to project/sprites/clothes/z_briefs.png.import index 278bb8f..ee6f526 100644 --- a/project/sprites/z_briefs.png.import +++ b/project/sprites/clothes/z_briefs.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/z_briefs.png-ec99294591f072f799854a3336620acf.stex" +path="res://.import/z_briefs.png-201f91b877a5ae4c563dbb9e92796cb0.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/z_briefs.png" -dest_files=[ "res://.import/z_briefs.png-ec99294591f072f799854a3336620acf.stex" ] +source_file="res://sprites/clothes/z_briefs.png" +dest_files=[ "res://.import/z_briefs.png-201f91b877a5ae4c563dbb9e92796cb0.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/z_briefs.svg b/project/sprites/clothes/z_briefs.svg similarity index 100% rename from project/sprites/z_briefs.svg rename to project/sprites/clothes/z_briefs.svg diff --git a/project/sprites/z_briefs.svg.import b/project/sprites/clothes/z_briefs.svg.import similarity index 64% rename from project/sprites/z_briefs.svg.import rename to project/sprites/clothes/z_briefs.svg.import index eb64544..6f588a2 100644 --- a/project/sprites/z_briefs.svg.import +++ b/project/sprites/clothes/z_briefs.svg.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/z_briefs.svg-b2e2e1eb71668c23f61b66914c6388da.stex" +path="res://.import/z_briefs.svg-cbc61dc02d9f663e4242a469916832fb.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/z_briefs.svg" -dest_files=[ "res://.import/z_briefs.svg-b2e2e1eb71668c23f61b66914c6388da.stex" ] +source_file="res://sprites/clothes/z_briefs.svg" +dest_files=[ "res://.import/z_briefs.svg-cbc61dc02d9f663e4242a469916832fb.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/z_shirt.png b/project/sprites/clothes/z_shirt.png similarity index 100% rename from project/sprites/z_shirt.png rename to project/sprites/clothes/z_shirt.png diff --git a/project/sprites/z_shirt.png.import b/project/sprites/clothes/z_shirt.png.import similarity index 65% rename from project/sprites/z_shirt.png.import rename to project/sprites/clothes/z_shirt.png.import index 5abbff7..9aa99e2 100644 --- a/project/sprites/z_shirt.png.import +++ b/project/sprites/clothes/z_shirt.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/z_shirt.png-129cbae98766166c3f659bd29880f885.stex" +path="res://.import/z_shirt.png-bf6b3132de8c37dd8046ad501ad13a0a.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/z_shirt.png" -dest_files=[ "res://.import/z_shirt.png-129cbae98766166c3f659bd29880f885.stex" ] +source_file="res://sprites/clothes/z_shirt.png" +dest_files=[ "res://.import/z_shirt.png-bf6b3132de8c37dd8046ad501ad13a0a.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/exit_symbol.svg.import b/project/sprites/exit_symbol.svg.import deleted file mode 100644 index 572ea79..0000000 --- a/project/sprites/exit_symbol.svg.import +++ /dev/null @@ -1,34 +0,0 @@ -[remap] - -importer="texture" -type="StreamTexture" -path="res://.import/exit_symbol.svg-73dc57ed97dd06b8f096295150b1975b.stex" -metadata={ -"vram_texture": false -} - -[deps] - -source_file="res://sprites/exit_symbol.svg" -dest_files=[ "res://.import/exit_symbol.svg-73dc57ed97dd06b8f096295150b1975b.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 diff --git a/project/sprites/eyes/eyes1.png.import b/project/sprites/eyes/eyes1.png.import index 399f670..3d61651 100644 --- a/project/sprites/eyes/eyes1.png.import +++ b/project/sprites/eyes/eyes1.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/eyes/eyes2.png.import b/project/sprites/eyes/eyes2.png.import index dcf41a4..5485c9b 100644 --- a/project/sprites/eyes/eyes2.png.import +++ b/project/sprites/eyes/eyes2.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/eyes/eyes3.png.import b/project/sprites/eyes/eyes3.png.import index fc77ae2..2a8c454 100644 --- a/project/sprites/eyes/eyes3.png.import +++ b/project/sprites/eyes/eyes3.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/eyes/eyes4.png.import b/project/sprites/eyes/eyes4.png.import index 208cd3c..0c2d68b 100644 --- a/project/sprites/eyes/eyes4.png.import +++ b/project/sprites/eyes/eyes4.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/eyes/eyes5.png.import b/project/sprites/eyes/eyes5.png.import index d7c162d..1e962ba 100644 --- a/project/sprites/eyes/eyes5.png.import +++ b/project/sprites/eyes/eyes5.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/eyes/eyes6.png.import b/project/sprites/eyes/eyes6.png.import index 62c5dbb..e8aedea 100644 --- a/project/sprites/eyes/eyes6.png.import +++ b/project/sprites/eyes/eyes6.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/eyes/eyes7.png.import b/project/sprites/eyes/eyes7.png.import index de6e6b5..84a9f25 100644 --- a/project/sprites/eyes/eyes7.png.import +++ b/project/sprites/eyes/eyes7.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/mouth/mouth.png.import b/project/sprites/mouth/mouth.png.import index 262f1d3..9bd69e5 100644 --- a/project/sprites/mouth/mouth.png.import +++ b/project/sprites/mouth/mouth.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/mouth/mouth10.png.import b/project/sprites/mouth/mouth10.png.import index cd996dd..ca1cdc6 100644 --- a/project/sprites/mouth/mouth10.png.import +++ b/project/sprites/mouth/mouth10.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/mouth/mouth11.png.import b/project/sprites/mouth/mouth11.png.import index 8691271..d79526c 100644 --- a/project/sprites/mouth/mouth11.png.import +++ b/project/sprites/mouth/mouth11.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/mouth/mouth12.png.import b/project/sprites/mouth/mouth12.png.import index 4dba05a..840eb14 100644 --- a/project/sprites/mouth/mouth12.png.import +++ b/project/sprites/mouth/mouth12.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/mouth/mouth2.png.import b/project/sprites/mouth/mouth2.png.import index a1a4967..86083ec 100644 --- a/project/sprites/mouth/mouth2.png.import +++ b/project/sprites/mouth/mouth2.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/mouth/mouth3.png.import b/project/sprites/mouth/mouth3.png.import index d4ff597..2079137 100644 --- a/project/sprites/mouth/mouth3.png.import +++ b/project/sprites/mouth/mouth3.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/mouth/mouth4.png.import b/project/sprites/mouth/mouth4.png.import index 9cf6f1d..8853661 100644 --- a/project/sprites/mouth/mouth4.png.import +++ b/project/sprites/mouth/mouth4.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/mouth/mouth5.png.import b/project/sprites/mouth/mouth5.png.import index 2dbf2d9..9b53e1f 100644 --- a/project/sprites/mouth/mouth5.png.import +++ b/project/sprites/mouth/mouth5.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/mouth/mouth6.png.import b/project/sprites/mouth/mouth6.png.import index 24cc1ba..c75dad3 100644 --- a/project/sprites/mouth/mouth6.png.import +++ b/project/sprites/mouth/mouth6.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/mouth/mouth7.png.import b/project/sprites/mouth/mouth7.png.import index c13f57e..aa28a32 100644 --- a/project/sprites/mouth/mouth7.png.import +++ b/project/sprites/mouth/mouth7.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/mouth/mouth8.png.import b/project/sprites/mouth/mouth8.png.import index 25d4e62..3f89120 100644 --- a/project/sprites/mouth/mouth8.png.import +++ b/project/sprites/mouth/mouth8.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/mouth/mouth9.png.import b/project/sprites/mouth/mouth9.png.import index c26df7d..450f276 100644 --- a/project/sprites/mouth/mouth9.png.import +++ b/project/sprites/mouth/mouth9.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/tail/tail0.png.import b/project/sprites/tail/tail0.png.import index c47ed15..f47b55b 100644 --- a/project/sprites/tail/tail0.png.import +++ b/project/sprites/tail/tail0.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/tail/tail0.svg.import b/project/sprites/tail/tail0.svg.import index cc1d626..cfee6e9 100644 --- a/project/sprites/tail/tail0.svg.import +++ b/project/sprites/tail/tail0.svg.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/tail/tail1.png.import b/project/sprites/tail/tail1.png.import index 99d4cf2..67f2f28 100644 --- a/project/sprites/tail/tail1.png.import +++ b/project/sprites/tail/tail1.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/tail/tail1.svg.import b/project/sprites/tail/tail1.svg.import index 7a82d7a..3793fc9 100644 --- a/project/sprites/tail/tail1.svg.import +++ b/project/sprites/tail/tail1.svg.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/tail/tail2.png.import b/project/sprites/tail/tail2.png.import index 4d2aab8..63c3e97 100644 --- a/project/sprites/tail/tail2.png.import +++ b/project/sprites/tail/tail2.png.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/tail/tail2.svg.import b/project/sprites/tail/tail2.svg.import index 86a6693..99116c2 100644 --- a/project/sprites/tail/tail2.svg.import +++ b/project/sprites/tail/tail2.svg.import @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/ui/blue_boxCheckmark.png b/project/sprites/ui/blue_boxCheckmark.png new file mode 100644 index 0000000..2654d0b Binary files /dev/null and b/project/sprites/ui/blue_boxCheckmark.png differ diff --git a/project/sprites/ui/blue_boxCheckmark.png.import b/project/sprites/ui/blue_boxCheckmark.png.import new file mode 100644 index 0000000..8d8b547 --- /dev/null +++ b/project/sprites/ui/blue_boxCheckmark.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_boxCheckmark.png-0f6f6262330fb86d6d41dc0b00482da7.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_boxCheckmark.png" +dest_files=[ "res://.import/blue_boxCheckmark.png-0f6f6262330fb86d6d41dc0b00482da7.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/project/sprites/ui/blue_boxCross.png b/project/sprites/ui/blue_boxCross.png new file mode 100644 index 0000000..a1150db Binary files /dev/null and b/project/sprites/ui/blue_boxCross.png differ diff --git a/project/sprites/ui/blue_boxCross.png.import b/project/sprites/ui/blue_boxCross.png.import new file mode 100644 index 0000000..de3adb8 --- /dev/null +++ b/project/sprites/ui/blue_boxCross.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_boxCross.png-2cfbff3e2589ce3007a599b374d87154.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_boxCross.png" +dest_files=[ "res://.import/blue_boxCross.png-2cfbff3e2589ce3007a599b374d87154.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/project/sprites/ui/blue_boxTick.png b/project/sprites/ui/blue_boxTick.png new file mode 100644 index 0000000..2a92942 Binary files /dev/null and b/project/sprites/ui/blue_boxTick.png differ diff --git a/project/sprites/ui/blue_boxTick.png.import b/project/sprites/ui/blue_boxTick.png.import new file mode 100644 index 0000000..839d466 --- /dev/null +++ b/project/sprites/ui/blue_boxTick.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_boxTick.png-9247dfd118b35154ceba6725f04b9f97.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_boxTick.png" +dest_files=[ "res://.import/blue_boxTick.png-9247dfd118b35154ceba6725f04b9f97.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/project/sprites/ui/blue_button00.png b/project/sprites/ui/blue_button00.png new file mode 100644 index 0000000..bffbf16 Binary files /dev/null and b/project/sprites/ui/blue_button00.png differ diff --git a/project/sprites/ui/blue_button00.png.import b/project/sprites/ui/blue_button00.png.import new file mode 100644 index 0000000..7f75506 --- /dev/null +++ b/project/sprites/ui/blue_button00.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_button00.png-aabb2a1c44ef99503e602d767bb1a1f2.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_button00.png" +dest_files=[ "res://.import/blue_button00.png-aabb2a1c44ef99503e602d767bb1a1f2.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/project/sprites/ui/blue_button01.png b/project/sprites/ui/blue_button01.png new file mode 100644 index 0000000..10ed714 Binary files /dev/null and b/project/sprites/ui/blue_button01.png differ diff --git a/project/sprites/ui/blue_button01.png.import b/project/sprites/ui/blue_button01.png.import new file mode 100644 index 0000000..04926d5 --- /dev/null +++ b/project/sprites/ui/blue_button01.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_button01.png-3b82f964378678347ab7bbe38f847a81.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_button01.png" +dest_files=[ "res://.import/blue_button01.png-3b82f964378678347ab7bbe38f847a81.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/project/sprites/ui/blue_button02.png b/project/sprites/ui/blue_button02.png new file mode 100644 index 0000000..2d1ee13 Binary files /dev/null and b/project/sprites/ui/blue_button02.png differ diff --git a/project/sprites/ui/blue_button02.png.import b/project/sprites/ui/blue_button02.png.import new file mode 100644 index 0000000..ee28c25 --- /dev/null +++ b/project/sprites/ui/blue_button02.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_button02.png-d47dc574b7a23a814b2f77e7c7a53dbe.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_button02.png" +dest_files=[ "res://.import/blue_button02.png-d47dc574b7a23a814b2f77e7c7a53dbe.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/project/sprites/ui/blue_button03.png b/project/sprites/ui/blue_button03.png new file mode 100644 index 0000000..9709601 Binary files /dev/null and b/project/sprites/ui/blue_button03.png differ diff --git a/project/sprites/ui/blue_button03.png.import b/project/sprites/ui/blue_button03.png.import new file mode 100644 index 0000000..00e31c2 --- /dev/null +++ b/project/sprites/ui/blue_button03.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_button03.png-b13d0316c4aa439e33f2ca7a8a08b021.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_button03.png" +dest_files=[ "res://.import/blue_button03.png-b13d0316c4aa439e33f2ca7a8a08b021.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/project/sprites/ui/blue_button04.png b/project/sprites/ui/blue_button04.png new file mode 100644 index 0000000..8697bd1 Binary files /dev/null and b/project/sprites/ui/blue_button04.png differ diff --git a/project/sprites/ui/blue_button04.png.import b/project/sprites/ui/blue_button04.png.import new file mode 100644 index 0000000..f64022b --- /dev/null +++ b/project/sprites/ui/blue_button04.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_button04.png-89687134c12fdcb236dbe7cdd70f6939.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_button04.png" +dest_files=[ "res://.import/blue_button04.png-89687134c12fdcb236dbe7cdd70f6939.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/project/sprites/ui/blue_button05.png b/project/sprites/ui/blue_button05.png new file mode 100644 index 0000000..eb25780 Binary files /dev/null and b/project/sprites/ui/blue_button05.png differ diff --git a/project/sprites/ui/blue_button05.png.import b/project/sprites/ui/blue_button05.png.import new file mode 100644 index 0000000..5ab3c10 --- /dev/null +++ b/project/sprites/ui/blue_button05.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_button05.png-bf4ee04705dc2c4923c71fc454e3388b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_button05.png" +dest_files=[ "res://.import/blue_button05.png-bf4ee04705dc2c4923c71fc454e3388b.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/project/sprites/ui/blue_button06.png b/project/sprites/ui/blue_button06.png new file mode 100644 index 0000000..e099986 Binary files /dev/null and b/project/sprites/ui/blue_button06.png differ diff --git a/project/sprites/ui/blue_button06.png.import b/project/sprites/ui/blue_button06.png.import new file mode 100644 index 0000000..5de1e1a --- /dev/null +++ b/project/sprites/ui/blue_button06.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_button06.png-a28bc9bc245c1e338ffdb604f2bc7c67.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_button06.png" +dest_files=[ "res://.import/blue_button06.png-a28bc9bc245c1e338ffdb604f2bc7c67.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/project/sprites/ui/blue_button07.png b/project/sprites/ui/blue_button07.png new file mode 100644 index 0000000..7420e84 Binary files /dev/null and b/project/sprites/ui/blue_button07.png differ diff --git a/project/sprites/ui/blue_button07.png.import b/project/sprites/ui/blue_button07.png.import new file mode 100644 index 0000000..ca3744f --- /dev/null +++ b/project/sprites/ui/blue_button07.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_button07.png-250088e5db71fa42dd34381ddf3edffa.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_button07.png" +dest_files=[ "res://.import/blue_button07.png-250088e5db71fa42dd34381ddf3edffa.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/project/sprites/ui/blue_button08.png b/project/sprites/ui/blue_button08.png new file mode 100644 index 0000000..c75f7cb Binary files /dev/null and b/project/sprites/ui/blue_button08.png differ diff --git a/project/sprites/ui/blue_button08.png.import b/project/sprites/ui/blue_button08.png.import new file mode 100644 index 0000000..fd4fdd6 --- /dev/null +++ b/project/sprites/ui/blue_button08.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_button08.png-91b125840d5788c521f8313a9aed2e3f.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_button08.png" +dest_files=[ "res://.import/blue_button08.png-91b125840d5788c521f8313a9aed2e3f.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/project/sprites/ui/blue_button09.png b/project/sprites/ui/blue_button09.png new file mode 100644 index 0000000..fd73794 Binary files /dev/null and b/project/sprites/ui/blue_button09.png differ diff --git a/project/sprites/ui/blue_button09.png.import b/project/sprites/ui/blue_button09.png.import new file mode 100644 index 0000000..5f9329b --- /dev/null +++ b/project/sprites/ui/blue_button09.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_button09.png-c06334f7b5bad9645b04797b9bcd3931.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_button09.png" +dest_files=[ "res://.import/blue_button09.png-c06334f7b5bad9645b04797b9bcd3931.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/project/sprites/ui/blue_button10.png b/project/sprites/ui/blue_button10.png new file mode 100644 index 0000000..e7c6e11 Binary files /dev/null and b/project/sprites/ui/blue_button10.png differ diff --git a/project/sprites/ui/blue_button10.png.import b/project/sprites/ui/blue_button10.png.import new file mode 100644 index 0000000..d7dbd08 --- /dev/null +++ b/project/sprites/ui/blue_button10.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_button10.png-3fa5471d48db99b68712cc002a33d3b5.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_button10.png" +dest_files=[ "res://.import/blue_button10.png-3fa5471d48db99b68712cc002a33d3b5.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/project/sprites/ui/blue_button11.png b/project/sprites/ui/blue_button11.png new file mode 100644 index 0000000..6c8f537 Binary files /dev/null and b/project/sprites/ui/blue_button11.png differ diff --git a/project/sprites/ui/blue_button11.png.import b/project/sprites/ui/blue_button11.png.import new file mode 100644 index 0000000..fab3f87 --- /dev/null +++ b/project/sprites/ui/blue_button11.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_button11.png-fd949ddeb789b2f1c77dce8cbfe023fe.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_button11.png" +dest_files=[ "res://.import/blue_button11.png-fd949ddeb789b2f1c77dce8cbfe023fe.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/project/sprites/ui/blue_button12.png b/project/sprites/ui/blue_button12.png new file mode 100644 index 0000000..6868f27 Binary files /dev/null and b/project/sprites/ui/blue_button12.png differ diff --git a/project/sprites/classic/owo_censor_classic.png.import b/project/sprites/ui/blue_button12.png.import similarity index 65% rename from project/sprites/classic/owo_censor_classic.png.import rename to project/sprites/ui/blue_button12.png.import index 019eaaa..3178304 100644 --- a/project/sprites/classic/owo_censor_classic.png.import +++ b/project/sprites/ui/blue_button12.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/owo_censor_classic.png-fe789b2eea2a06b74f12cd3148299a48.stex" +path="res://.import/blue_button12.png-7ffa0726c4e172acb6022bc086ba5659.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/classic/owo_censor_classic.png" -dest_files=[ "res://.import/owo_censor_classic.png-fe789b2eea2a06b74f12cd3148299a48.stex" ] +source_file="res://sprites/ui/blue_button12.png" +dest_files=[ "res://.import/blue_button12.png-7ffa0726c4e172acb6022bc086ba5659.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/ui/blue_button13.png b/project/sprites/ui/blue_button13.png new file mode 100644 index 0000000..73a5a5f Binary files /dev/null and b/project/sprites/ui/blue_button13.png differ diff --git a/project/sprites/ui/blue_button13.png.import b/project/sprites/ui/blue_button13.png.import new file mode 100644 index 0000000..e980c13 --- /dev/null +++ b/project/sprites/ui/blue_button13.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_button13.png-74889a8a8d278f3eaee6152768f5e347.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_button13.png" +dest_files=[ "res://.import/blue_button13.png-74889a8a8d278f3eaee6152768f5e347.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/project/sprites/ui/blue_checkmark.png b/project/sprites/ui/blue_checkmark.png new file mode 100644 index 0000000..6c32cdc Binary files /dev/null and b/project/sprites/ui/blue_checkmark.png differ diff --git a/project/sprites/ui/blue_checkmark.png.import b/project/sprites/ui/blue_checkmark.png.import new file mode 100644 index 0000000..9700500 --- /dev/null +++ b/project/sprites/ui/blue_checkmark.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_checkmark.png-7c732788139cf8f234105b2ae8085194.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_checkmark.png" +dest_files=[ "res://.import/blue_checkmark.png-7c732788139cf8f234105b2ae8085194.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/project/sprites/ui/blue_circle.png b/project/sprites/ui/blue_circle.png new file mode 100644 index 0000000..d0e508e Binary files /dev/null and b/project/sprites/ui/blue_circle.png differ diff --git a/project/sprites/biker_jacket.png.import b/project/sprites/ui/blue_circle.png.import similarity index 64% rename from project/sprites/biker_jacket.png.import rename to project/sprites/ui/blue_circle.png.import index f3fc787..81694d9 100644 --- a/project/sprites/biker_jacket.png.import +++ b/project/sprites/ui/blue_circle.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/biker_jacket.png-0e4a3c03a6371b870b12246acd956d85.stex" +path="res://.import/blue_circle.png-669f58046a0ee23d0ae0d76e0841af4e.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/biker_jacket.png" -dest_files=[ "res://.import/biker_jacket.png-0e4a3c03a6371b870b12246acd956d85.stex" ] +source_file="res://sprites/ui/blue_circle.png" +dest_files=[ "res://.import/blue_circle.png-669f58046a0ee23d0ae0d76e0841af4e.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/ui/blue_cross.png b/project/sprites/ui/blue_cross.png new file mode 100644 index 0000000..1927f84 Binary files /dev/null and b/project/sprites/ui/blue_cross.png differ diff --git a/project/sprites/ui/blue_cross.png.import b/project/sprites/ui/blue_cross.png.import new file mode 100644 index 0000000..1a3696f --- /dev/null +++ b/project/sprites/ui/blue_cross.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_cross.png-b1e723796e8aa6a0ea2cb10787bfcd53.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_cross.png" +dest_files=[ "res://.import/blue_cross.png-b1e723796e8aa6a0ea2cb10787bfcd53.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/project/sprites/ui/blue_panel.png b/project/sprites/ui/blue_panel.png new file mode 100644 index 0000000..5782f6b Binary files /dev/null and b/project/sprites/ui/blue_panel.png differ diff --git a/project/sprites/ui/blue_panel.png.import b/project/sprites/ui/blue_panel.png.import new file mode 100644 index 0000000..c1a036a --- /dev/null +++ b/project/sprites/ui/blue_panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_panel.png-008b493c5d08bfeb3c52b64d49ff6f68.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_panel.png" +dest_files=[ "res://.import/blue_panel.png-008b493c5d08bfeb3c52b64d49ff6f68.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/project/sprites/ui/blue_sliderDown.png b/project/sprites/ui/blue_sliderDown.png new file mode 100644 index 0000000..2ea5efc Binary files /dev/null and b/project/sprites/ui/blue_sliderDown.png differ diff --git a/project/sprites/ui/blue_sliderDown.png.import b/project/sprites/ui/blue_sliderDown.png.import new file mode 100644 index 0000000..73ba036 --- /dev/null +++ b/project/sprites/ui/blue_sliderDown.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_sliderDown.png-3cf7eb8540e4ce2f98362b447cf6a2dd.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_sliderDown.png" +dest_files=[ "res://.import/blue_sliderDown.png-3cf7eb8540e4ce2f98362b447cf6a2dd.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/project/sprites/ui/blue_sliderLeft.png b/project/sprites/ui/blue_sliderLeft.png new file mode 100644 index 0000000..4102db2 Binary files /dev/null and b/project/sprites/ui/blue_sliderLeft.png differ diff --git a/project/sprites/ui/blue_sliderLeft.png.import b/project/sprites/ui/blue_sliderLeft.png.import new file mode 100644 index 0000000..5230f85 --- /dev/null +++ b/project/sprites/ui/blue_sliderLeft.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_sliderLeft.png-a02b5f9e44fbbc0de925ecb5d3dacc72.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_sliderLeft.png" +dest_files=[ "res://.import/blue_sliderLeft.png-a02b5f9e44fbbc0de925ecb5d3dacc72.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/project/sprites/ui/blue_sliderRight.png b/project/sprites/ui/blue_sliderRight.png new file mode 100644 index 0000000..1720035 Binary files /dev/null and b/project/sprites/ui/blue_sliderRight.png differ diff --git a/project/sprites/ui/blue_sliderRight.png.import b/project/sprites/ui/blue_sliderRight.png.import new file mode 100644 index 0000000..ca6ad96 --- /dev/null +++ b/project/sprites/ui/blue_sliderRight.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_sliderRight.png-7f57bbadf81a9d3f958fe77ddccde3a4.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_sliderRight.png" +dest_files=[ "res://.import/blue_sliderRight.png-7f57bbadf81a9d3f958fe77ddccde3a4.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/project/sprites/ui/blue_sliderUp.png b/project/sprites/ui/blue_sliderUp.png new file mode 100644 index 0000000..60d2c41 Binary files /dev/null and b/project/sprites/ui/blue_sliderUp.png differ diff --git a/project/sprites/ui/blue_sliderUp.png.import b/project/sprites/ui/blue_sliderUp.png.import new file mode 100644 index 0000000..19ba001 --- /dev/null +++ b/project/sprites/ui/blue_sliderUp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/blue_sliderUp.png-2790c384784b16f50a0dbc1c5e5adb14.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/blue_sliderUp.png" +dest_files=[ "res://.import/blue_sliderUp.png-2790c384784b16f50a0dbc1c5e5adb14.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/project/sprites/ui/blue_tick.png b/project/sprites/ui/blue_tick.png new file mode 100644 index 0000000..5452167 Binary files /dev/null and b/project/sprites/ui/blue_tick.png differ diff --git a/project/sprites/blue_skirt.svg.import b/project/sprites/ui/blue_tick.png.import similarity index 64% rename from project/sprites/blue_skirt.svg.import rename to project/sprites/ui/blue_tick.png.import index dce7eee..6495e27 100644 --- a/project/sprites/blue_skirt.svg.import +++ b/project/sprites/ui/blue_tick.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/blue_skirt.svg-32ac008a32aedd4fac805218f3fbe902.stex" +path="res://.import/blue_tick.png-b4624e2dd2ce1c5431d46e38bfdb8877.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/blue_skirt.svg" -dest_files=[ "res://.import/blue_skirt.svg-32ac008a32aedd4fac805218f3fbe902.stex" ] +source_file="res://sprites/ui/blue_tick.png" +dest_files=[ "res://.import/blue_tick.png-b4624e2dd2ce1c5431d46e38bfdb8877.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/ui/dropdownBottom.png b/project/sprites/ui/dropdownBottom.png new file mode 100644 index 0000000..1f4e726 Binary files /dev/null and b/project/sprites/ui/dropdownBottom.png differ diff --git a/project/sprites/ui/dropdownBottom.png.import b/project/sprites/ui/dropdownBottom.png.import new file mode 100644 index 0000000..86c0362 --- /dev/null +++ b/project/sprites/ui/dropdownBottom.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/dropdownBottom.png-f1e1f3a9fa69f5b22cbaf13b052a6e34.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/dropdownBottom.png" +dest_files=[ "res://.import/dropdownBottom.png-f1e1f3a9fa69f5b22cbaf13b052a6e34.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/project/sprites/ui/dropdownMid.png b/project/sprites/ui/dropdownMid.png new file mode 100644 index 0000000..6b0c9a5 Binary files /dev/null and b/project/sprites/ui/dropdownMid.png differ diff --git a/project/sprites/atomic_shirt.png.import b/project/sprites/ui/dropdownMid.png.import similarity index 64% rename from project/sprites/atomic_shirt.png.import rename to project/sprites/ui/dropdownMid.png.import index c91e9d8..8651ccf 100644 --- a/project/sprites/atomic_shirt.png.import +++ b/project/sprites/ui/dropdownMid.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/atomic_shirt.png-002c355351591fbe2342ca9367df3104.stex" +path="res://.import/dropdownMid.png-75814951d29d84c67158bb2da35ef4c5.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/atomic_shirt.png" -dest_files=[ "res://.import/atomic_shirt.png-002c355351591fbe2342ca9367df3104.stex" ] +source_file="res://sprites/ui/dropdownMid.png" +dest_files=[ "res://.import/dropdownMid.png-75814951d29d84c67158bb2da35ef4c5.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/ui/dropdownTop.png b/project/sprites/ui/dropdownTop.png new file mode 100644 index 0000000..54e45cd Binary files /dev/null and b/project/sprites/ui/dropdownTop.png differ diff --git a/project/sprites/atomic_shirt.svg.import b/project/sprites/ui/dropdownTop.png.import similarity index 64% rename from project/sprites/atomic_shirt.svg.import rename to project/sprites/ui/dropdownTop.png.import index d983676..c94a970 100644 --- a/project/sprites/atomic_shirt.svg.import +++ b/project/sprites/ui/dropdownTop.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/atomic_shirt.svg-b3ba00542391d52e77d38154f516ba81.stex" +path="res://.import/dropdownTop.png-14386657bc64813af35977840be1d031.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/atomic_shirt.svg" -dest_files=[ "res://.import/atomic_shirt.svg-b3ba00542391d52e77d38154f516ba81.stex" ] +source_file="res://sprites/ui/dropdownTop.png" +dest_files=[ "res://.import/dropdownTop.png-14386657bc64813af35977840be1d031.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/ui/grey_arrowDownGrey.png b/project/sprites/ui/grey_arrowDownGrey.png new file mode 100644 index 0000000..d6c5b2d Binary files /dev/null and b/project/sprites/ui/grey_arrowDownGrey.png differ diff --git a/project/sprites/ui/grey_arrowDownGrey.png.import b/project/sprites/ui/grey_arrowDownGrey.png.import new file mode 100644 index 0000000..61ed1a2 --- /dev/null +++ b/project/sprites/ui/grey_arrowDownGrey.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_arrowDownGrey.png-92b81528494ec64eac34f1fd55c9c65e.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_arrowDownGrey.png" +dest_files=[ "res://.import/grey_arrowDownGrey.png-92b81528494ec64eac34f1fd55c9c65e.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/project/sprites/ui/grey_arrowDownWhite.png b/project/sprites/ui/grey_arrowDownWhite.png new file mode 100644 index 0000000..dace3d3 Binary files /dev/null and b/project/sprites/ui/grey_arrowDownWhite.png differ diff --git a/project/sprites/ui/grey_arrowDownWhite.png.import b/project/sprites/ui/grey_arrowDownWhite.png.import new file mode 100644 index 0000000..c995b5e --- /dev/null +++ b/project/sprites/ui/grey_arrowDownWhite.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_arrowDownWhite.png-d02acce0eb695b12439e7be7fe3a5a7b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_arrowDownWhite.png" +dest_files=[ "res://.import/grey_arrowDownWhite.png-d02acce0eb695b12439e7be7fe3a5a7b.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/project/sprites/ui/grey_arrowUpGrey.png b/project/sprites/ui/grey_arrowUpGrey.png new file mode 100644 index 0000000..5045d54 Binary files /dev/null and b/project/sprites/ui/grey_arrowUpGrey.png differ diff --git a/project/sprites/ui/grey_arrowUpGrey.png.import b/project/sprites/ui/grey_arrowUpGrey.png.import new file mode 100644 index 0000000..da43d89 --- /dev/null +++ b/project/sprites/ui/grey_arrowUpGrey.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_arrowUpGrey.png-778e16134b1c92193afdbae9012bfe0c.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_arrowUpGrey.png" +dest_files=[ "res://.import/grey_arrowUpGrey.png-778e16134b1c92193afdbae9012bfe0c.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/project/sprites/ui/grey_arrowUpWhite.png b/project/sprites/ui/grey_arrowUpWhite.png new file mode 100644 index 0000000..070c202 Binary files /dev/null and b/project/sprites/ui/grey_arrowUpWhite.png differ diff --git a/project/sprites/ui/grey_arrowUpWhite.png.import b/project/sprites/ui/grey_arrowUpWhite.png.import new file mode 100644 index 0000000..18f55e6 --- /dev/null +++ b/project/sprites/ui/grey_arrowUpWhite.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_arrowUpWhite.png-b7fd7c2e353972d0d650717a509414f9.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_arrowUpWhite.png" +dest_files=[ "res://.import/grey_arrowUpWhite.png-b7fd7c2e353972d0d650717a509414f9.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/project/sprites/ui/grey_box.png b/project/sprites/ui/grey_box.png new file mode 100644 index 0000000..6fe821a Binary files /dev/null and b/project/sprites/ui/grey_box.png differ diff --git a/project/sprites/x_button.svg.import b/project/sprites/ui/grey_box.png.import similarity index 66% rename from project/sprites/x_button.svg.import rename to project/sprites/ui/grey_box.png.import index 953c1d0..afbb230 100644 --- a/project/sprites/x_button.svg.import +++ b/project/sprites/ui/grey_box.png.import @@ -2,15 +2,15 @@ importer="texture" type="StreamTexture" -path="res://.import/x_button.svg-6cf395375517e4cea385a7bade20ecb1.stex" +path="res://.import/grey_box.png-668c7490b056221186918b699ead0501.stex" metadata={ "vram_texture": false } [deps] -source_file="res://sprites/x_button.svg" -dest_files=[ "res://.import/x_button.svg-6cf395375517e4cea385a7bade20ecb1.stex" ] +source_file="res://sprites/ui/grey_box.png" +dest_files=[ "res://.import/grey_box.png-668c7490b056221186918b699ead0501.stex" ] [params] @@ -20,7 +20,7 @@ compress/hdr_mode=0 compress/bptc_ldr=0 compress/normal_map=0 flags/repeat=0 -flags/filter=true +flags/filter=false flags/mipmaps=false flags/anisotropic=false flags/srgb=2 @@ -30,5 +30,5 @@ process/HDR_as_SRGB=false process/invert_color=false stream=false size_limit=0 -detect_3d=true +detect_3d=false svg/scale=1.0 diff --git a/project/sprites/ui/grey_boxCheckmark.png b/project/sprites/ui/grey_boxCheckmark.png new file mode 100644 index 0000000..abb281e Binary files /dev/null and b/project/sprites/ui/grey_boxCheckmark.png differ diff --git a/project/sprites/ui/grey_boxCheckmark.png.import b/project/sprites/ui/grey_boxCheckmark.png.import new file mode 100644 index 0000000..b0b83fe --- /dev/null +++ b/project/sprites/ui/grey_boxCheckmark.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_boxCheckmark.png-1fa8021a4971f370b2dbb151cce73cb6.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_boxCheckmark.png" +dest_files=[ "res://.import/grey_boxCheckmark.png-1fa8021a4971f370b2dbb151cce73cb6.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/project/sprites/ui/grey_boxCross.png b/project/sprites/ui/grey_boxCross.png new file mode 100644 index 0000000..f80fd83 Binary files /dev/null and b/project/sprites/ui/grey_boxCross.png differ diff --git a/project/sprites/ui/grey_boxCross.png.import b/project/sprites/ui/grey_boxCross.png.import new file mode 100644 index 0000000..00e0afd --- /dev/null +++ b/project/sprites/ui/grey_boxCross.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_boxCross.png-3e6f6fdaed56337af42d7a4a59272f2b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_boxCross.png" +dest_files=[ "res://.import/grey_boxCross.png-3e6f6fdaed56337af42d7a4a59272f2b.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/project/sprites/ui/grey_boxTick.png b/project/sprites/ui/grey_boxTick.png new file mode 100644 index 0000000..4249f9e Binary files /dev/null and b/project/sprites/ui/grey_boxTick.png differ diff --git a/project/sprites/ui/grey_boxTick.png.import b/project/sprites/ui/grey_boxTick.png.import new file mode 100644 index 0000000..cd09d08 --- /dev/null +++ b/project/sprites/ui/grey_boxTick.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_boxTick.png-c6dd561392e2b989c40adb5e3ef76531.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_boxTick.png" +dest_files=[ "res://.import/grey_boxTick.png-c6dd561392e2b989c40adb5e3ef76531.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/project/sprites/ui/grey_button00.png b/project/sprites/ui/grey_button00.png new file mode 100644 index 0000000..3580f47 Binary files /dev/null and b/project/sprites/ui/grey_button00.png differ diff --git a/project/sprites/ui/grey_button00.png.import b/project/sprites/ui/grey_button00.png.import new file mode 100644 index 0000000..f4881d6 --- /dev/null +++ b/project/sprites/ui/grey_button00.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button00.png-ca2112fcc02f3c47920b3aa0d48ec9a8.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button00.png" +dest_files=[ "res://.import/grey_button00.png-ca2112fcc02f3c47920b3aa0d48ec9a8.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/project/sprites/ui/grey_button01.png b/project/sprites/ui/grey_button01.png new file mode 100644 index 0000000..735bf96 Binary files /dev/null and b/project/sprites/ui/grey_button01.png differ diff --git a/project/sprites/ui/grey_button01.png.import b/project/sprites/ui/grey_button01.png.import new file mode 100644 index 0000000..8ba3771 --- /dev/null +++ b/project/sprites/ui/grey_button01.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button01.png-a6c5c7b8c2b1af1d028f7e97a61a835b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button01.png" +dest_files=[ "res://.import/grey_button01.png-a6c5c7b8c2b1af1d028f7e97a61a835b.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/project/sprites/ui/grey_button02.png b/project/sprites/ui/grey_button02.png new file mode 100644 index 0000000..9e0c4f2 Binary files /dev/null and b/project/sprites/ui/grey_button02.png differ diff --git a/project/sprites/ui/grey_button02.png.import b/project/sprites/ui/grey_button02.png.import new file mode 100644 index 0000000..91f3386 --- /dev/null +++ b/project/sprites/ui/grey_button02.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button02.png-96de9dbb11c69e90c0247b8ac63a0b0b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button02.png" +dest_files=[ "res://.import/grey_button02.png-96de9dbb11c69e90c0247b8ac63a0b0b.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/project/sprites/ui/grey_button03.png b/project/sprites/ui/grey_button03.png new file mode 100644 index 0000000..8af84fb Binary files /dev/null and b/project/sprites/ui/grey_button03.png differ diff --git a/project/sprites/ui/grey_button03.png.import b/project/sprites/ui/grey_button03.png.import new file mode 100644 index 0000000..e9813cf --- /dev/null +++ b/project/sprites/ui/grey_button03.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button03.png-8075ef665bf813f70da252746fec90e5.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button03.png" +dest_files=[ "res://.import/grey_button03.png-8075ef665bf813f70da252746fec90e5.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/project/sprites/ui/grey_button04.png b/project/sprites/ui/grey_button04.png new file mode 100644 index 0000000..6ac202f Binary files /dev/null and b/project/sprites/ui/grey_button04.png differ diff --git a/project/sprites/ui/grey_button04.png.import b/project/sprites/ui/grey_button04.png.import new file mode 100644 index 0000000..b9eed24 --- /dev/null +++ b/project/sprites/ui/grey_button04.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button04.png-d2fdc6c12d48a25040d97bb8d7e84af7.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button04.png" +dest_files=[ "res://.import/grey_button04.png-d2fdc6c12d48a25040d97bb8d7e84af7.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/project/sprites/ui/grey_button05.png b/project/sprites/ui/grey_button05.png new file mode 100644 index 0000000..70964af Binary files /dev/null and b/project/sprites/ui/grey_button05.png differ diff --git a/project/sprites/ui/grey_button05.png.import b/project/sprites/ui/grey_button05.png.import new file mode 100644 index 0000000..b3db92c --- /dev/null +++ b/project/sprites/ui/grey_button05.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button05.png-420747ea7c897d19313997940acd8bc3.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button05.png" +dest_files=[ "res://.import/grey_button05.png-420747ea7c897d19313997940acd8bc3.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/project/sprites/ui/grey_button06.png b/project/sprites/ui/grey_button06.png new file mode 100644 index 0000000..1db1fd2 Binary files /dev/null and b/project/sprites/ui/grey_button06.png differ diff --git a/project/sprites/ui/grey_button06.png.import b/project/sprites/ui/grey_button06.png.import new file mode 100644 index 0000000..03abab1 --- /dev/null +++ b/project/sprites/ui/grey_button06.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button06.png-423ad9fb82f31f26368d4af596ef07c9.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button06.png" +dest_files=[ "res://.import/grey_button06.png-423ad9fb82f31f26368d4af596ef07c9.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/project/sprites/ui/grey_button07.png b/project/sprites/ui/grey_button07.png new file mode 100644 index 0000000..10ed324 Binary files /dev/null and b/project/sprites/ui/grey_button07.png differ diff --git a/project/sprites/ui/grey_button07.png.import b/project/sprites/ui/grey_button07.png.import new file mode 100644 index 0000000..15a5071 --- /dev/null +++ b/project/sprites/ui/grey_button07.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button07.png-5e9bf322f6e43e7c74e9a4a5f6c501ca.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button07.png" +dest_files=[ "res://.import/grey_button07.png-5e9bf322f6e43e7c74e9a4a5f6c501ca.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/project/sprites/ui/grey_button08.png b/project/sprites/ui/grey_button08.png new file mode 100644 index 0000000..9b4aac9 Binary files /dev/null and b/project/sprites/ui/grey_button08.png differ diff --git a/project/sprites/ui/grey_button08.png.import b/project/sprites/ui/grey_button08.png.import new file mode 100644 index 0000000..4837f01 --- /dev/null +++ b/project/sprites/ui/grey_button08.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button08.png-e237981e8ebfa530ffba63a01e75925d.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button08.png" +dest_files=[ "res://.import/grey_button08.png-e237981e8ebfa530ffba63a01e75925d.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/project/sprites/ui/grey_button09.png b/project/sprites/ui/grey_button09.png new file mode 100644 index 0000000..e887e00 Binary files /dev/null and b/project/sprites/ui/grey_button09.png differ diff --git a/project/sprites/ui/grey_button09.png.import b/project/sprites/ui/grey_button09.png.import new file mode 100644 index 0000000..d468a39 --- /dev/null +++ b/project/sprites/ui/grey_button09.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button09.png-765079404624eefa167cc8cd85aa5e08.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button09.png" +dest_files=[ "res://.import/grey_button09.png-765079404624eefa167cc8cd85aa5e08.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/project/sprites/ui/grey_button10.png b/project/sprites/ui/grey_button10.png new file mode 100644 index 0000000..67b631f Binary files /dev/null and b/project/sprites/ui/grey_button10.png differ diff --git a/project/sprites/ui/grey_button10.png.import b/project/sprites/ui/grey_button10.png.import new file mode 100644 index 0000000..afadbec --- /dev/null +++ b/project/sprites/ui/grey_button10.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button10.png-cf3fcd3a5e472189de6a6b3cf7c3380b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button10.png" +dest_files=[ "res://.import/grey_button10.png-cf3fcd3a5e472189de6a6b3cf7c3380b.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/project/sprites/ui/grey_button11.png b/project/sprites/ui/grey_button11.png new file mode 100644 index 0000000..d02f15a Binary files /dev/null and b/project/sprites/ui/grey_button11.png differ diff --git a/project/sprites/ui/grey_button11.png.import b/project/sprites/ui/grey_button11.png.import new file mode 100644 index 0000000..492fcb6 --- /dev/null +++ b/project/sprites/ui/grey_button11.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button11.png-99015295e564f04da627ba88df77a577.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button11.png" +dest_files=[ "res://.import/grey_button11.png-99015295e564f04da627ba88df77a577.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/project/sprites/ui/grey_button12.png b/project/sprites/ui/grey_button12.png new file mode 100644 index 0000000..b590115 Binary files /dev/null and b/project/sprites/ui/grey_button12.png differ diff --git a/project/sprites/ui/grey_button12.png.import b/project/sprites/ui/grey_button12.png.import new file mode 100644 index 0000000..f3d00e6 --- /dev/null +++ b/project/sprites/ui/grey_button12.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button12.png-88a20430d7f977f4619afd1eccb2ffd4.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button12.png" +dest_files=[ "res://.import/grey_button12.png-88a20430d7f977f4619afd1eccb2ffd4.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/project/sprites/ui/grey_button13.png b/project/sprites/ui/grey_button13.png new file mode 100644 index 0000000..7795f03 Binary files /dev/null and b/project/sprites/ui/grey_button13.png differ diff --git a/project/sprites/ui/grey_button13.png.import b/project/sprites/ui/grey_button13.png.import new file mode 100644 index 0000000..3aa4fa4 --- /dev/null +++ b/project/sprites/ui/grey_button13.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button13.png-63fa8f581df829b1e47517608e4a51b4.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button13.png" +dest_files=[ "res://.import/grey_button13.png-63fa8f581df829b1e47517608e4a51b4.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/project/sprites/ui/grey_button14.png b/project/sprites/ui/grey_button14.png new file mode 100644 index 0000000..b2fc39a Binary files /dev/null and b/project/sprites/ui/grey_button14.png differ diff --git a/project/sprites/ui/grey_button14.png.import b/project/sprites/ui/grey_button14.png.import new file mode 100644 index 0000000..208a1ad --- /dev/null +++ b/project/sprites/ui/grey_button14.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button14.png-8a7fb425bbbe81eba00ef733bcc1ab2f.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button14.png" +dest_files=[ "res://.import/grey_button14.png-8a7fb425bbbe81eba00ef733bcc1ab2f.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/project/sprites/ui/grey_button15.png b/project/sprites/ui/grey_button15.png new file mode 100644 index 0000000..5a591ca Binary files /dev/null and b/project/sprites/ui/grey_button15.png differ diff --git a/project/sprites/ui/grey_button15.png.import b/project/sprites/ui/grey_button15.png.import new file mode 100644 index 0000000..252b4a7 --- /dev/null +++ b/project/sprites/ui/grey_button15.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_button15.png-43a06f83d6814510e6c2b5625fe62d43.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_button15.png" +dest_files=[ "res://.import/grey_button15.png-43a06f83d6814510e6c2b5625fe62d43.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/project/sprites/ui/grey_checkmarkGrey.png b/project/sprites/ui/grey_checkmarkGrey.png new file mode 100644 index 0000000..844dbd9 Binary files /dev/null and b/project/sprites/ui/grey_checkmarkGrey.png differ diff --git a/project/sprites/ui/grey_checkmarkGrey.png.import b/project/sprites/ui/grey_checkmarkGrey.png.import new file mode 100644 index 0000000..d0d8b7d --- /dev/null +++ b/project/sprites/ui/grey_checkmarkGrey.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_checkmarkGrey.png-0903180f415bb5c3d4aaa0d3c88640ad.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_checkmarkGrey.png" +dest_files=[ "res://.import/grey_checkmarkGrey.png-0903180f415bb5c3d4aaa0d3c88640ad.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/project/sprites/ui/grey_checkmarkWhite.png b/project/sprites/ui/grey_checkmarkWhite.png new file mode 100644 index 0000000..dd30ff7 Binary files /dev/null and b/project/sprites/ui/grey_checkmarkWhite.png differ diff --git a/project/sprites/ui/grey_checkmarkWhite.png.import b/project/sprites/ui/grey_checkmarkWhite.png.import new file mode 100644 index 0000000..ca9599c --- /dev/null +++ b/project/sprites/ui/grey_checkmarkWhite.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_checkmarkWhite.png-3ea55a21e1882e0d915215e4085cf170.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_checkmarkWhite.png" +dest_files=[ "res://.import/grey_checkmarkWhite.png-3ea55a21e1882e0d915215e4085cf170.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/project/sprites/ui/grey_circle.png b/project/sprites/ui/grey_circle.png new file mode 100644 index 0000000..98bac8f Binary files /dev/null and b/project/sprites/ui/grey_circle.png differ diff --git a/project/sprites/ui/grey_circle.png.import b/project/sprites/ui/grey_circle.png.import new file mode 100644 index 0000000..229e98b --- /dev/null +++ b/project/sprites/ui/grey_circle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_circle.png-1bb87f043cc45b24799d42d32ea61a47.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_circle.png" +dest_files=[ "res://.import/grey_circle.png-1bb87f043cc45b24799d42d32ea61a47.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/project/sprites/ui/grey_crossGrey.png b/project/sprites/ui/grey_crossGrey.png new file mode 100644 index 0000000..f063260 Binary files /dev/null and b/project/sprites/ui/grey_crossGrey.png differ diff --git a/project/sprites/ui/grey_crossGrey.png.import b/project/sprites/ui/grey_crossGrey.png.import new file mode 100644 index 0000000..27759c6 --- /dev/null +++ b/project/sprites/ui/grey_crossGrey.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_crossGrey.png-72dfff87d2babb24e117fcc15db93874.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_crossGrey.png" +dest_files=[ "res://.import/grey_crossGrey.png-72dfff87d2babb24e117fcc15db93874.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/project/sprites/ui/grey_crossWhite.png b/project/sprites/ui/grey_crossWhite.png new file mode 100644 index 0000000..5e8be40 Binary files /dev/null and b/project/sprites/ui/grey_crossWhite.png differ diff --git a/project/sprites/ui/grey_crossWhite.png.import b/project/sprites/ui/grey_crossWhite.png.import new file mode 100644 index 0000000..338cfff --- /dev/null +++ b/project/sprites/ui/grey_crossWhite.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_crossWhite.png-64d3904bd4f5e95a3d41fcb19396247d.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_crossWhite.png" +dest_files=[ "res://.import/grey_crossWhite.png-64d3904bd4f5e95a3d41fcb19396247d.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/project/sprites/ui/grey_panel.png b/project/sprites/ui/grey_panel.png new file mode 100644 index 0000000..fab325e Binary files /dev/null and b/project/sprites/ui/grey_panel.png differ diff --git a/project/sprites/ui/grey_panel.png.import b/project/sprites/ui/grey_panel.png.import new file mode 100644 index 0000000..754d4cf --- /dev/null +++ b/project/sprites/ui/grey_panel.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_panel.png-2a4a4c0d900eb73b3313a55b30f758bd.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_panel.png" +dest_files=[ "res://.import/grey_panel.png-2a4a4c0d900eb73b3313a55b30f758bd.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/project/sprites/ui/grey_sliderDown.png b/project/sprites/ui/grey_sliderDown.png new file mode 100644 index 0000000..8a169f3 Binary files /dev/null and b/project/sprites/ui/grey_sliderDown.png differ diff --git a/project/sprites/ui/grey_sliderDown.png.import b/project/sprites/ui/grey_sliderDown.png.import new file mode 100644 index 0000000..7666bdf --- /dev/null +++ b/project/sprites/ui/grey_sliderDown.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_sliderDown.png-cb0181ae6a53379babd5f5e96492c7ed.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_sliderDown.png" +dest_files=[ "res://.import/grey_sliderDown.png-cb0181ae6a53379babd5f5e96492c7ed.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/project/sprites/ui/grey_sliderEnd.png b/project/sprites/ui/grey_sliderEnd.png new file mode 100644 index 0000000..6cafa50 Binary files /dev/null and b/project/sprites/ui/grey_sliderEnd.png differ diff --git a/project/sprites/ui/grey_sliderEnd.png.import b/project/sprites/ui/grey_sliderEnd.png.import new file mode 100644 index 0000000..d9a2df6 --- /dev/null +++ b/project/sprites/ui/grey_sliderEnd.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_sliderEnd.png-1544628da3e67efa6e800dd0556651f1.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_sliderEnd.png" +dest_files=[ "res://.import/grey_sliderEnd.png-1544628da3e67efa6e800dd0556651f1.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/project/sprites/ui/grey_sliderHorizontal.png b/project/sprites/ui/grey_sliderHorizontal.png new file mode 100644 index 0000000..08b013a Binary files /dev/null and b/project/sprites/ui/grey_sliderHorizontal.png differ diff --git a/project/sprites/ui/grey_sliderHorizontal.png.import b/project/sprites/ui/grey_sliderHorizontal.png.import new file mode 100644 index 0000000..543a162 --- /dev/null +++ b/project/sprites/ui/grey_sliderHorizontal.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_sliderHorizontal.png-bd6b852bdd83226f705c651a1bf5992f.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_sliderHorizontal.png" +dest_files=[ "res://.import/grey_sliderHorizontal.png-bd6b852bdd83226f705c651a1bf5992f.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/project/sprites/ui/grey_sliderLeft.png b/project/sprites/ui/grey_sliderLeft.png new file mode 100644 index 0000000..41f508c Binary files /dev/null and b/project/sprites/ui/grey_sliderLeft.png differ diff --git a/project/sprites/ui/grey_sliderLeft.png.import b/project/sprites/ui/grey_sliderLeft.png.import new file mode 100644 index 0000000..776e466 --- /dev/null +++ b/project/sprites/ui/grey_sliderLeft.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_sliderLeft.png-e4c54f5722791e50f23f5fd57d0edc4a.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_sliderLeft.png" +dest_files=[ "res://.import/grey_sliderLeft.png-e4c54f5722791e50f23f5fd57d0edc4a.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/project/sprites/ui/grey_sliderRight.png b/project/sprites/ui/grey_sliderRight.png new file mode 100644 index 0000000..e238447 Binary files /dev/null and b/project/sprites/ui/grey_sliderRight.png differ diff --git a/project/sprites/ui/grey_sliderRight.png.import b/project/sprites/ui/grey_sliderRight.png.import new file mode 100644 index 0000000..ffa0a02 --- /dev/null +++ b/project/sprites/ui/grey_sliderRight.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_sliderRight.png-6ca4aa38d745cfd739963ff31cbe6131.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_sliderRight.png" +dest_files=[ "res://.import/grey_sliderRight.png-6ca4aa38d745cfd739963ff31cbe6131.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/project/sprites/ui/grey_sliderUp.png b/project/sprites/ui/grey_sliderUp.png new file mode 100644 index 0000000..d958299 Binary files /dev/null and b/project/sprites/ui/grey_sliderUp.png differ diff --git a/project/sprites/ui/grey_sliderUp.png.import b/project/sprites/ui/grey_sliderUp.png.import new file mode 100644 index 0000000..4aea631 --- /dev/null +++ b/project/sprites/ui/grey_sliderUp.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_sliderUp.png-fa90f6c675b975c178bfc7280f6e001b.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_sliderUp.png" +dest_files=[ "res://.import/grey_sliderUp.png-fa90f6c675b975c178bfc7280f6e001b.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/project/sprites/ui/grey_sliderVertical.png b/project/sprites/ui/grey_sliderVertical.png new file mode 100644 index 0000000..59637b2 Binary files /dev/null and b/project/sprites/ui/grey_sliderVertical.png differ diff --git a/project/sprites/ui/grey_sliderVertical.png.import b/project/sprites/ui/grey_sliderVertical.png.import new file mode 100644 index 0000000..0d104a6 --- /dev/null +++ b/project/sprites/ui/grey_sliderVertical.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_sliderVertical.png-b865e7def5c9d2ec0a9b565c5c4ba098.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_sliderVertical.png" +dest_files=[ "res://.import/grey_sliderVertical.png-b865e7def5c9d2ec0a9b565c5c4ba098.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/project/sprites/ui/grey_tickGrey.png b/project/sprites/ui/grey_tickGrey.png new file mode 100644 index 0000000..44736a4 Binary files /dev/null and b/project/sprites/ui/grey_tickGrey.png differ diff --git a/project/sprites/ui/grey_tickGrey.png.import b/project/sprites/ui/grey_tickGrey.png.import new file mode 100644 index 0000000..454c7e4 --- /dev/null +++ b/project/sprites/ui/grey_tickGrey.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_tickGrey.png-159229a992896f1242855b813375eba6.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_tickGrey.png" +dest_files=[ "res://.import/grey_tickGrey.png-159229a992896f1242855b813375eba6.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/project/sprites/ui/grey_tickWhite.png b/project/sprites/ui/grey_tickWhite.png new file mode 100644 index 0000000..e169957 Binary files /dev/null and b/project/sprites/ui/grey_tickWhite.png differ diff --git a/project/sprites/ui/grey_tickWhite.png.import b/project/sprites/ui/grey_tickWhite.png.import new file mode 100644 index 0000000..a91591e --- /dev/null +++ b/project/sprites/ui/grey_tickWhite.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="StreamTexture" +path="res://.import/grey_tickWhite.png-8c8f7a2ed20671e510deaba950d9666f.stex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/ui/grey_tickWhite.png" +dest_files=[ "res://.import/grey_tickWhite.png-8c8f7a2ed20671e510deaba950d9666f.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/project/sprites/widgets/btn_color.stylebox b/project/sprites/widgets/btn_color.stylebox deleted file mode 100644 index 45b218d..0000000 Binary files a/project/sprites/widgets/btn_color.stylebox and /dev/null differ diff --git a/project/src/CreditsScn.gd b/project/src/CreditsScn.gd deleted file mode 100644 index ab88031..0000000 --- a/project/src/CreditsScn.gd +++ /dev/null @@ -1,13 +0,0 @@ -# Anthony Wilcox licenses this file to you under the MPL license. -# See the LICENSE file in the project root for more information. -extends Node - -func _ready(): - $Version.text = GameKit.version - -func _process(delta): - $Character/Undies.texture = UserSettings.Underwear - $Character/Bottom.texture = UserSettings.Bottoms - $Character/Top.texture = UserSettings.Tops - $Character/Accessory.texture = UserSettings.Accessory - \ No newline at end of file diff --git a/project/src/GameScn.gd b/project/src/GameScn.gd deleted file mode 100644 index 98bb284..0000000 --- a/project/src/GameScn.gd +++ /dev/null @@ -1,151 +0,0 @@ -# Anthony Wilcox licenses this file to you under the MPL license. -# See the LICENSE file in the project root for more information. -extends Node - -enum ClothingLayer { - TOPS, - BOTTOMS, - UNDIES, - ACCESSORY, -} - -# Default clothing -onready var bottoms = load("res://sprites/bottoms_placeholder.png") -onready var tops = load("res://sprites/tops_placeholder.png") -onready var accessory = load("res://sprites/tops_placeholder.png") - -var UndiesBtn = load("res://scn/Clothing.tscn") - -func _init(): - init_underwear() - -func change_bottoms(new_bottom): - bottoms = new_bottom - - if new_bottom == null: - $Character/Bottom.texture = bottoms - UserSettings.Bottoms = bottoms - -# if undies == load("res://sprites/owo_censor.svg"): -# change_undies(null) - - $Character/Bottom.texture = bottoms - UserSettings.Bottoms = bottoms - -func change_undies(new_undies): - $Character/Undies.texture = new_undies - UserSettings.Underwear = new_undies - -func change_tops(new_top): - tops = new_top - - if new_top == null: - $Character/Top.texture = tops - UserSettings.Tops = tops - - $Character/Top.texture = tops - UserSettings.Tops = tops - -func change_accessoires(new_accessory): - accessory = new_accessory - - if new_accessory == null: - $Character/Accessory.texture = accessory - UserSettings.Accessory = accessory - - $Character/Accessory.texture = accessory - UserSettings.Accessory = accessory - -func init_underwear(): - var undiesFile = File.new() - undiesFile.open("res://undies.json", undiesFile.READ) - var undiesJson = parse_json(undiesFile.get_as_text()) - - for object in undiesJson: - var underwear = UndiesBtn.instance() - - underwear.texture = load(object.sprite) - - -# warning-ignore:unused_argument -func _process(delta): - - # Change clothes - # =========================================================== - - if $Wordrobe/Accessoires/AccsScroll/AccsGrid/CanonCam.is_pressed(): - change_accessoires(load("res://sprites/camera.png")) - - if $Wordrobe/Pants/PantsScroll/PantsGrid/Jeans.is_pressed(): - change_bottoms(load("res://sprites/jeans.svg")) - - if $Wordrobe/Pants/PantsScroll/PantsGrid/Sweats.is_pressed(): - change_bottoms(load("res://sprites/sweat_pants.svg")) - - if $Wordrobe/Pants/PantsScroll/PantsGrid/BlueSkirt.is_pressed(): - change_bottoms(load("res://sprites/blue_skirt.svg")) - - if $Wordrobe/Pants/PantsScroll/PantsGrid/FormalSkirt.is_pressed(): - change_bottoms(load("res://sprites/formal_skirt.svg")) - - if $Wordrobe/Pants/PantsScroll/PantsGrid/BeatUpJeans.is_pressed(): - change_bottoms(load("res://sprites/beat_up_jeans.svg")) - - if $Wordrobe/Underwear/UndiesScroll/UndiesGrid/Briefs.is_pressed(): - change_undies(load("res://sprites/briefs.svg")) - - if $Wordrobe/Underwear/UndiesScroll/UndiesGrid/ZBriefs.is_pressed(): - change_undies(load("res://sprites/z_briefs.svg")) - - if $Wordrobe/Underwear/UndiesScroll/UndiesGrid/Fundosi.is_pressed(): - change_undies(load("res://sprites/fundosi.svg")) - - if $Wordrobe/Underwear/UndiesScroll/UndiesGrid/OwOCensor.is_pressed(): - change_bottoms(null) - change_undies(load("res://sprites/owo_censor.svg")) - - - if $Wordrobe/Pants/PantsScroll/PantsGrid/BlueCamoJeans.is_pressed(): - change_bottoms(load("res://sprites/blue_camo_jeans.svg")) - - if $Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/TrainHoodie.is_pressed(): - change_tops(load("res://sprites/train_hoodie.svg")) - - if $Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/Sweatshirt.is_pressed(): - change_tops(load("res://sprites/old_sweatshirt.svg")) - - if $Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/Raw.is_pressed(): - change_tops(load("res://sprites/raw_shirt.svg")) - - if $Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/ZShirt.is_pressed(): - change_tops(load("res://sprites/z_shirt.png")) - - if $Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/WhatsNewShirt.is_pressed(): - change_tops(load("res://sprites/whatsnew_shirt.svg")) - - if $Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/Retro.is_pressed(): - change_tops(load("res://sprites/retro_shirt.svg")) - - if $Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/KormShirt.is_pressed(): - change_tops(load("res://sprites/korm_shirt.png")) - - if $Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/BikerJacket.is_pressed(): - change_tops(load("res://sprites/biker_jacket.svg")) - - if $Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/Atomic.is_pressed(): - change_tops(load("res://sprites/atomic_shirt.svg")) - - if $Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/NLJacket.is_pressed(): - change_tops(load("res://sprites/nl_jacket.png")) - - # Remove clothes - # =========================================================== - - if $Wordrobe/Accessoires/AccsScroll/AccsGrid/RemoveAccessory.is_pressed(): - change_accessoires(null) - - if $Wordrobe/Shirts/ShirtsScroll/ShirtsGrid/RemoveShirt.is_pressed(): - change_tops(null) - - if $Wordrobe/Pants/PantsScroll/PantsGrid/RemovePants.is_pressed(): - change_bottoms(null) \ No newline at end of file diff --git a/project/styles/DressUpTheme.res b/project/styles/DressUpTheme.res index d7db511..2eec753 100644 Binary files a/project/styles/DressUpTheme.res and b/project/styles/DressUpTheme.res differ diff --git a/project/styles/Game.theme b/project/styles/Game.theme new file mode 100644 index 0000000..c5144b4 Binary files /dev/null and b/project/styles/Game.theme differ diff --git a/project/styles/KBlueBtnNormal.tres b/project/styles/KBlueBtnNormal.tres new file mode 100644 index 0000000..b2bc587 --- /dev/null +++ b/project/styles/KBlueBtnNormal.tres @@ -0,0 +1,11 @@ +[gd_resource type="StyleBoxTexture" load_steps=2 format=2] + +[ext_resource path="res://sprites/ui/blue_button03.png" type="Texture" id=1] + +[resource] +texture = ExtResource( 1 ) +region_rect = Rect2( 0, 0, 190, 45 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 10.0 diff --git a/project/styles/KBlueBtnPressed.tres b/project/styles/KBlueBtnPressed.tres new file mode 100644 index 0000000..2804f31 --- /dev/null +++ b/project/styles/KBlueBtnPressed.tres @@ -0,0 +1,11 @@ +[gd_resource type="StyleBoxTexture" load_steps=2 format=2] + +[ext_resource path="res://sprites/ui/blue_button00.png" type="Texture" id=1] + +[resource] +texture = ExtResource( 1 ) +region_rect = Rect2( 0, 0, 190, 49 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 10.0 diff --git a/project/styles/KGreyPanel.tres b/project/styles/KGreyPanel.tres new file mode 100644 index 0000000..e4d15bb --- /dev/null +++ b/project/styles/KGreyPanel.tres @@ -0,0 +1,11 @@ +[gd_resource type="StyleBoxTexture" load_steps=2 format=2] + +[ext_resource path="res://sprites/ui/grey_panel.png" type="Texture" id=1] + +[resource] +texture = ExtResource( 1 ) +region_rect = Rect2( 0, 0, 100, 100 ) +margin_left = 5.0 +margin_right = 5.0 +margin_top = 5.0 +margin_bottom = 10.0 diff --git a/project/styles/button.stylebox b/project/styles/button.stylebox deleted file mode 100644 index 4df4c44..0000000 Binary files a/project/styles/button.stylebox and /dev/null differ diff --git a/project/styles/button_hover.stylebox b/project/styles/button_hover.stylebox deleted file mode 100644 index d77aa81..0000000 Binary files a/project/styles/button_hover.stylebox and /dev/null differ diff --git a/project/styles/button_press.stylebox b/project/styles/button_press.stylebox deleted file mode 100644 index dfee421..0000000 Binary files a/project/styles/button_press.stylebox and /dev/null differ diff --git a/project/styles/global_menu.stylebox b/project/styles/global_menu.stylebox deleted file mode 100644 index f754018..0000000 Binary files a/project/styles/global_menu.stylebox and /dev/null differ diff --git a/project/styles/tab.stylebox b/project/styles/tab.stylebox deleted file mode 100644 index 545beb7..0000000 Binary files a/project/styles/tab.stylebox and /dev/null differ diff --git a/project/styles/tabbg.stylebox b/project/styles/tabbg.stylebox deleted file mode 100644 index 78fe295..0000000 Binary files a/project/styles/tabbg.stylebox and /dev/null differ diff --git a/project/styles/wordrobe_panel.stylebox b/project/styles/wordrobe_panel.stylebox deleted file mode 100644 index 6d851af..0000000 Binary files a/project/styles/wordrobe_panel.stylebox and /dev/null differ