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

Massive reorganization

- New UI from Kenny's
- Sprites are no longer filtered
This commit is contained in:
Anthony Foxclaw 2020-06-21 09:13:23 -04:00
parent 0e3bb682bb
commit 4b37f6be3b
337 changed files with 3219 additions and 767 deletions

Binary file not shown.

Binary file not shown.

View file

@ -16,7 +16,7 @@ _global_script_class_icons={
[application] [application]
config/name="Tony's Dress Up" 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 config/use_custom_user_dir=true
boot_splash/image="res://icon.png" boot_splash/image="res://icon.png"
boot_splash/bg_color=Color( 0.8, 0.8, 0.4, 1 ) boot_splash/bg_color=Color( 0.8, 0.8, 0.4, 1 )
@ -25,9 +25,9 @@ name_sv="Tonys klä upp"
[autoload] [autoload]
GameKit="*res://src/GameKit.gd" GameKit="*res://scripts/GameKit.gd"
UserSettings="*res://src/UserSettings.gd" UserSettings="*res://scripts/UserSettings.gd"
Soundtrack="*res://src/Soundtrack.gd" Soundtrack="*res://scripts/Soundtrack.gd"
[debug] [debug]
@ -37,10 +37,38 @@ gdscript/completion/autocomplete_setters_and_getters=true
window/size/width=800 window/size/width=800
window/dpi/allow_hidpi=true 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/mode="viewport"
window/stretch/aspect="keep" 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] [input]
ui_pause={ ui_pause={
@ -55,6 +83,10 @@ ui_pause={
locale_filter=[ 1, [ "en", "sv" ] ] locale_filter=[ 1, [ "en", "sv" ] ]
translations=PoolStringArray( "res://lang/local.en.translation", "res://lang/local.sv.translation" ) translations=PoolStringArray( "res://lang/local.en.translation", "res://lang/local.sv.translation" )
[node]
name_casing=1
[rendering] [rendering]
quality/intended_usage/framebuffer_allocation=0 quality/intended_usage/framebuffer_allocation=0

View file

@ -1,10 +1,10 @@
[gd_scene load_steps=30 format=2] [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/tail0.svg" type="Texture" id=2]
[ext_resource path="res://sprites/tail/tail1.svg" type="Texture" id=3] [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/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/eyes1.png" type="Texture" id=6]
[ext_resource path="res://sprites/eyes/eyes2.png" type="Texture" id=7] [ext_resource path="res://sprites/eyes/eyes2.png" type="Texture" id=7]
[ext_resource path="res://sprites/eyes/eyes3.png" type="Texture" id=8] [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/mouth9.png" type="Texture" id=21]
[ext_resource path="res://sprites/mouth/mouth10.png" type="Texture" id=22] [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/mouth/mouth12.png" type="Texture" id=23]
[ext_resource path="res://sprites/briefs.svg" type="Texture" id=24] [ext_resource path="res://sprites/clothes/briefs.svg" type="Texture" id=24]
[ext_resource path="res://sprites/bottoms_placeholder.png" type="Texture" id=25] [ext_resource path="res://sprites/clothes/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/tops_placeholder.png" type="Texture" id=26]
[sub_resource type="SpriteFrames" id=1] [sub_resource type="SpriteFrames" id=1]
animations = [ { animations = [ {

View file

@ -3,7 +3,7 @@
[ext_resource path="res://sprites/tail/tail0.png" type="Texture" id=1] [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/tail1.png" type="Texture" id=2]
[ext_resource path="res://sprites/tail/tail2.png" type="Texture" id=3] [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/eyes1.png" type="Texture" id=5]
[ext_resource path="res://sprites/eyes/eyes2.png" type="Texture" id=6] [ext_resource path="res://sprites/eyes/eyes2.png" type="Texture" id=6]
[ext_resource path="res://sprites/eyes/eyes3.png" type="Texture" id=7] [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/mouth9.png" type="Texture" id=20]
[ext_resource path="res://sprites/mouth/mouth10.png" type="Texture" id=21] [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/mouth/mouth12.png" type="Texture" id=22]
[ext_resource path="res://sprites/classic/briefs_classic.png" type="Texture" id=23] [ext_resource path="res://sprites/clothes/classic/briefs_classic.png" type="Texture" id=23]
[ext_resource path="res://src/ItemDrag.gd" type="Script" id=24] [ext_resource path="res://scripts/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/clothes/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/clothes/classic/fundosi_classic.png" type="Texture" id=26]
[ext_resource path="res://sprites/jeans.svg" type="Texture" id=27] [ext_resource path="res://sprites/clothes/jeans.svg" type="Texture" id=27]
[ext_resource path="res://sprites/dj_shorts.svg" type="Texture" id=28] [ext_resource path="res://sprites/clothes/dj_shorts.svg" type="Texture" id=28]
[ext_resource path="res://sprites/sweat_pants.svg" type="Texture" id=29] [ext_resource path="res://sprites/clothes/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/clothes/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/clothes/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/clothes/old_sweatshirt.png" type="Texture" id=32]
[ext_resource path="res://sprites/dj_shirt.png" type="Texture" id=33] [ext_resource path="res://sprites/clothes/dj_shirt.png" type="Texture" id=33]
[ext_resource path="res://sprites/raw_shirt.svg" type="Texture" id=34] [ext_resource path="res://sprites/clothes/raw_shirt.svg" type="Texture" id=34]
[ext_resource path="res://sprites/atomic_shirt.svg" type="Texture" id=35] [ext_resource path="res://sprites/clothes/atomic_shirt.svg" type="Texture" id=35]
[ext_resource path="res://sprites/z_shirt.png" type="Texture" id=36] [ext_resource path="res://sprites/clothes/z_shirt.png" type="Texture" id=36]
[ext_resource path="res://sprites/biker_jacket.png" type="Texture" id=37] [ext_resource path="res://sprites/clothes/biker_jacket.png" type="Texture" id=37]
[ext_resource path="res://sprites/whatsnew_shirt.png" type="Texture" id=38] [ext_resource path="res://sprites/clothes/whatsnew_shirt.png" type="Texture" id=38]
[ext_resource path="res://sprites/train_hoodie.png" type="Texture" id=39] [ext_resource path="res://sprites/clothes/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/clothes/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/owo_censor_classic.png" type="Texture" id=41]
[sub_resource type="SpriteFrames" id=1] [sub_resource type="SpriteFrames" id=1]
animations = [ { animations = [ {

View file

@ -1,8 +1,10 @@
[gd_scene load_steps=4 format=2] [gd_scene load_steps=4 format=2]
[ext_resource path="res://src/ClassicScn.gd" type="Script" id=1] [ext_resource path="res://scripts/ClassicScn.gd" type="Script" id=1]
[ext_resource path="res://scn/ClassicClothes.tscn" type="PackedScene" id=2] [ext_resource path="res://scenes/ClassicClothes.tscn" type="PackedScene" id=2]
[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=3] [ext_resource path="res://scenes/PauseScn.tscn" type="PackedScene" id=3]
[node name="GameScreen" type="Node"] [node name="GameScreen" type="Node"]
script = ExtResource( 1 ) script = ExtResource( 1 )

View file

@ -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://sprites/clothes/jeans.svg" type="Texture" id=3]
[ext_resource path="res://styles/wordrobe_panel.stylebox" type="StyleBox" id=2] [ext_resource path="res://sprites/clothes/blue_skirt.svg" type="Texture" id=4]
[ext_resource path="res://sprites/jeans.svg" type="Texture" id=3] [ext_resource path="res://sprites/clothes/sweat_pants.svg" type="Texture" id=5]
[ext_resource path="res://sprites/blue_skirt.svg" type="Texture" id=4] [ext_resource path="res://sprites/clothes/blue_camo_jeans.svg" type="Texture" id=6]
[ext_resource path="res://sprites/sweat_pants.svg" type="Texture" id=5] [ext_resource path="res://sprites/clothes/beat_up_jeans.svg" type="Texture" id=7]
[ext_resource path="res://sprites/blue_camo_jeans.svg" type="Texture" id=6] [ext_resource path="res://sprites/clothes/formal_skirt.svg" type="Texture" id=8]
[ext_resource path="res://sprites/beat_up_jeans.svg" type="Texture" id=7] [ext_resource path="res://sprites/clothes/x_button.svg" type="Texture" id=9]
[ext_resource path="res://sprites/formal_skirt.svg" type="Texture" id=8] [ext_resource path="res://sprites/clothes/old_sweatshirt.svg" type="Texture" id=10]
[ext_resource path="res://sprites/x_button.svg" type="Texture" id=9] [ext_resource path="res://sprites/clothes/raw_shirt.svg" type="Texture" id=11]
[ext_resource path="res://sprites/old_sweatshirt.svg" type="Texture" id=10] [ext_resource path="res://sprites/clothes/retro_shirt.svg" type="Texture" id=12]
[ext_resource path="res://sprites/raw_shirt.svg" type="Texture" id=11] [ext_resource path="res://sprites/clothes/atomic_shirt.svg" type="Texture" id=13]
[ext_resource path="res://sprites/retro_shirt.svg" type="Texture" id=12] [ext_resource path="res://sprites/clothes/z_shirt.png" type="Texture" id=14]
[ext_resource path="res://sprites/atomic_shirt.svg" type="Texture" id=13] [ext_resource path="res://sprites/clothes/biker_jacket.svg" type="Texture" id=15]
[ext_resource path="res://sprites/z_shirt.png" type="Texture" id=14] [ext_resource path="res://sprites/clothes/nl_jacket.png" type="Texture" id=16]
[ext_resource path="res://sprites/biker_jacket.svg" type="Texture" id=15] [ext_resource path="res://sprites/clothes/train_hoodie.svg" type="Texture" id=17]
[ext_resource path="res://sprites/nl_jacket.png" type="Texture" id=16] [ext_resource path="res://sprites/clothes/korm_shirt.png" type="Texture" id=18]
[ext_resource path="res://sprites/train_hoodie.svg" type="Texture" id=17] [ext_resource path="res://sprites/clothes/whatsnew_shirt.svg" type="Texture" id=19]
[ext_resource path="res://sprites/korm_shirt.png" type="Texture" id=18] [ext_resource path="res://sprites/clothes/owo_censor.svg" type="Texture" id=20]
[ext_resource path="res://sprites/whatsnew_shirt.svg" type="Texture" id=19] [ext_resource path="res://sprites/clothes/briefs.svg" type="Texture" id=21]
[ext_resource path="res://sprites/owo_censor.svg" type="Texture" id=20] [ext_resource path="res://sprites/clothes/z_briefs.svg" type="Texture" id=22]
[ext_resource path="res://sprites/briefs.svg" type="Texture" id=21] [ext_resource path="res://sprites/clothes/fundosi.svg" type="Texture" id=23]
[ext_resource path="res://sprites/z_briefs.svg" type="Texture" id=22] [ext_resource path="res://sprites/clothes/camera.png" type="Texture" id=24]
[ext_resource path="res://sprites/fundosi.svg" type="Texture" id=23]
[ext_resource path="res://sprites/camera.png" type="Texture" id=24]
[node name="Wordrobe" type="TabContainer"] [node name="Wordrobe" type="TabContainer"]
anchor_left = 1.0
anchor_right = 1.0 anchor_right = 1.0
anchor_bottom = 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_disabled = Color( 0, 0, 0, 1 )
custom_colors/font_color_bg = Color( 0.921569, 0.921569, 0.921569, 1 ) custom_colors/font_color_bg = Color( 0.921569, 0.921569, 0.921569, 1 )
custom_colors/font_color_fg = Color( 1, 1, 1, 1 ) custom_colors/font_color_fg = Color( 1, 1, 1, 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Pants" type="Tabs" parent="."] [node name="Pants" type="Tabs" parent="."]
anchor_right = 1.0 anchor_right = 1.0
anchor_bottom = 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 custom_constants/hseparation = 0
[node name="PantsScroll" type="ScrollContainer" parent="Pants"] [node name="PantsScroll" type="ScrollContainer" parent="Pants"]
margin_left = 13.0 anchor_right = 1.0
margin_top = 21.0 anchor_bottom = 1.0
margin_right = 376.0 __meta__ = {
margin_bottom = 498.0 "_edit_use_anchors_": false
}
[node name="PantsGrid" type="GridContainer" parent="Pants/PantsScroll"] [node name="PantsGrid" type="GridContainer" parent="Pants/PantsScroll"]
margin_right = 326.0 margin_right = 448.0
margin_bottom = 344.0 margin_bottom = 549.0
columns = 3 size_flags_horizontal = 0
size_flags_vertical = 3
columns = 4
[node name="Jeans" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"] [node name="Jeans" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
margin_right = 106.0 margin_right = 106.0
@ -69,34 +69,34 @@ texture_normal = ExtResource( 4 )
[node name="Sweats" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"] [node name="Sweats" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
margin_left = 220.0 margin_left = 220.0
margin_right = 326.0 margin_right = 338.0
margin_bottom = 112.0 margin_bottom = 112.0
texture_normal = ExtResource( 5 ) texture_normal = ExtResource( 5 )
[node name="BlueCamoJeans" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"] [node name="BlueCamoJeans" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
margin_top = 116.0 margin_left = 342.0
margin_right = 106.0 margin_right = 448.0
margin_bottom = 228.0 margin_bottom = 112.0
texture_normal = ExtResource( 6 ) texture_normal = ExtResource( 6 )
[node name="BeatUpJeans" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"] [node name="BeatUpJeans" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
margin_left = 110.0
margin_top = 116.0 margin_top = 116.0
margin_right = 216.0 margin_right = 106.0
margin_bottom = 228.0 margin_bottom = 236.0
texture_normal = ExtResource( 7 ) texture_normal = ExtResource( 7 )
[node name="FormalSkirt" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"] [node name="FormalSkirt" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
margin_left = 220.0 margin_left = 110.0
margin_top = 116.0 margin_top = 116.0
margin_right = 326.0 margin_right = 216.0
margin_bottom = 228.0 margin_bottom = 236.0
texture_normal = ExtResource( 8 ) texture_normal = ExtResource( 8 )
[node name="RemovePants" type="Button" parent="Pants/PantsScroll/PantsGrid"] [node name="RemovePants" type="Button" parent="Pants/PantsScroll/PantsGrid"]
margin_top = 232.0 margin_left = 220.0
margin_right = 106.0 margin_top = 116.0
margin_bottom = 344.0 margin_right = 338.0
margin_bottom = 236.0
rect_min_size = Vector2( 0, 112 ) rect_min_size = Vector2( 0, 112 )
custom_colors/font_color_disabled = Color( 0, 0, 0, 1 ) custom_colors/font_color_disabled = Color( 0, 0, 0, 1 )
custom_colors/font_color = Color( 0, 0, 0, 1 ) custom_colors/font_color = Color( 0, 0, 0, 1 )
@ -106,20 +106,24 @@ icon = ExtResource( 9 )
flat = true flat = true
[node name="Shirts" type="Tabs" parent="."] [node name="Shirts" type="Tabs" parent="."]
editor/display_folded = true
visible = false visible = false
anchor_right = 1.0 anchor_right = 1.0
anchor_bottom = 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"] [node name="ShirtsScroll" type="ScrollContainer" parent="Shirts"]
margin_left = 16.0 anchor_right = 1.0
margin_top = 19.0 anchor_bottom = 1.0
margin_right = 368.0 margin_left = 10.0
margin_bottom = 500.0 margin_top = 10.0
[node name="ShirtsGrid" type="GridContainer" parent="Shirts/ShirtsScroll"] [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"] [node name="Sweatshirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
margin_right = 85.0 margin_right = 85.0
@ -128,13 +132,13 @@ texture_normal = ExtResource( 10 )
[node name="Raw" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] [node name="Raw" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
margin_left = 89.0 margin_left = 89.0
margin_right = 195.0 margin_right = 207.0
margin_bottom = 115.0 margin_bottom = 115.0
texture_normal = ExtResource( 11 ) texture_normal = ExtResource( 11 )
[node name="Retro" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] [node name="Retro" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
margin_left = 199.0 margin_left = 211.0
margin_right = 284.0 margin_right = 296.0
margin_bottom = 115.0 margin_bottom = 115.0
texture_normal = ExtResource( 12 ) texture_normal = ExtResource( 12 )
@ -147,14 +151,14 @@ texture_normal = ExtResource( 13 )
[node name="ZShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] [node name="ZShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
margin_left = 89.0 margin_left = 89.0
margin_top = 119.0 margin_top = 119.0
margin_right = 195.0 margin_right = 207.0
margin_bottom = 234.0 margin_bottom = 234.0
texture_normal = ExtResource( 14 ) texture_normal = ExtResource( 14 )
[node name="BikerJacket" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] [node name="BikerJacket" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
margin_left = 199.0 margin_left = 211.0
margin_top = 119.0 margin_top = 119.0
margin_right = 284.0 margin_right = 296.0
margin_bottom = 234.0 margin_bottom = 234.0
texture_normal = ExtResource( 15 ) texture_normal = ExtResource( 15 )
@ -167,28 +171,28 @@ texture_normal = ExtResource( 16 )
[node name="TrainHoodie" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] [node name="TrainHoodie" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
margin_left = 89.0 margin_left = 89.0
margin_top = 238.0 margin_top = 238.0
margin_right = 195.0 margin_right = 207.0
margin_bottom = 353.0 margin_bottom = 353.0
texture_normal = ExtResource( 17 ) texture_normal = ExtResource( 17 )
[node name="KormShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] [node name="KormShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
margin_left = 199.0 margin_left = 211.0
margin_top = 238.0 margin_top = 238.0
margin_right = 284.0 margin_right = 296.0
margin_bottom = 353.0 margin_bottom = 353.0
texture_normal = ExtResource( 18 ) texture_normal = ExtResource( 18 )
[node name="WhatsNewShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"] [node name="WhatsNewShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
margin_top = 357.0 margin_top = 357.0
margin_right = 85.0 margin_right = 85.0
margin_bottom = 472.0 margin_bottom = 475.0
texture_normal = ExtResource( 19 ) texture_normal = ExtResource( 19 )
[node name="RemoveShirt" type="Button" parent="Shirts/ShirtsScroll/ShirtsGrid"] [node name="RemoveShirt" type="Button" parent="Shirts/ShirtsScroll/ShirtsGrid"]
margin_left = 89.0 margin_left = 89.0
margin_top = 357.0 margin_top = 357.0
margin_right = 195.0 margin_right = 207.0
margin_bottom = 472.0 margin_bottom = 475.0
rect_min_size = Vector2( 0, 112 ) rect_min_size = Vector2( 0, 112 )
custom_colors/font_color_disabled = Color( 0, 0, 0, 1 ) custom_colors/font_color_disabled = Color( 0, 0, 0, 1 )
custom_colors/font_color = Color( 0, 0, 0, 1 ) custom_colors/font_color = Color( 0, 0, 0, 1 )
@ -201,15 +205,18 @@ flat = true
visible = false visible = false
anchor_right = 1.0 anchor_right = 1.0
anchor_bottom = 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"] [node name="UndiesScroll" type="ScrollContainer" parent="Underwear"]
margin_left = 10.0 anchor_right = 1.0
margin_top = 26.0 anchor_bottom = 1.0
margin_right = 370.0
margin_bottom = 491.0
[node name="UndiesGrid" type="GridContainer" parent="Underwear/UndiesScroll"] [node name="UndiesGrid" type="GridContainer" parent="Underwear/UndiesScroll"]
margin_right = 326.0
margin_bottom = 228.0
columns = 3 columns = 3
[node name="OwOCensor" type="TextureButton" parent="Underwear/UndiesScroll/UndiesGrid"] [node name="OwOCensor" type="TextureButton" parent="Underwear/UndiesScroll/UndiesGrid"]
@ -239,7 +246,10 @@ texture_normal = ExtResource( 23 )
visible = false visible = false
anchor_right = 1.0 anchor_right = 1.0
anchor_bottom = 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"] [node name="AccsScroll" type="ScrollContainer" parent="Accessoires"]
margin_left = 19.0 margin_left = 19.0
@ -248,6 +258,8 @@ margin_right = 369.0
margin_bottom = 494.0 margin_bottom = 494.0
[node name="AccsGrid" type="GridContainer" parent="Accessoires/AccsScroll"] [node name="AccsGrid" type="GridContainer" parent="Accessoires/AccsScroll"]
margin_right = 207.0
margin_bottom = 120.0
columns = 3 columns = 3
[node name="CanonCam" type="TextureButton" parent="Accessoires/AccsScroll/AccsGrid"] [node name="CanonCam" type="TextureButton" parent="Accessoires/AccsScroll/AccsGrid"]

View file

@ -1,12 +1,16 @@
[gd_scene load_steps=5 format=2] [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://styles/DressUpTheme.res" type="Theme" id=2]
[ext_resource path="res://scn/Character.tscn" type="PackedScene" id=3] [ext_resource path="res://scenes/Character.tscn" type="PackedScene" id=3]
[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=4] [ext_resource path="res://scenes/PauseScn.tscn" type="PackedScene" id=4]
[node name="Credits" type="Node"] [node name="Credits" type="Control"]
script = ExtResource( 1 ) anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="Credits" type="RichTextLabel" parent="."] [node name="Credits" type="RichTextLabel" parent="."]
anchor_left = 0.5 anchor_left = 0.5
@ -48,15 +52,26 @@ Raier
Made with Made with
Godot Engine Godot Engine
" "
__meta__ = {
[node name="Character" parent="." instance=ExtResource( 3 )] "_edit_use_anchors_": false
position = Vector2( 76.1938, 267.895 ) }
[node name="WinDialogs" parent="." instance=ExtResource( 4 )] [node name="WinDialogs" parent="." instance=ExtResource( 4 )]
[node name="Version" type="Label" parent="."] [node name="version" type="Label" parent="."]
margin_left = 727.908 margin_left = 727.908
margin_top = 568.64 margin_top = 568.64
margin_right = 775.908 margin_right = 775.908
margin_bottom = 582.64 margin_bottom = 582.64
text = "Version" 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 )

View file

@ -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

View file

@ -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://scripts/PauseScn.gd" type="Script" id=2]
[ext_resource path="res://src/PauseScn.gd" type="Script" id=2]
[node name="WinDialogs" type="Control"] [node name="WinDialogs" type="Control"]
anchor_left = 0.5 anchor_right = 1.0
anchor_top = 0.5 anchor_bottom = 1.0
anchor_right = 0.5 margin_left = 400.0
anchor_bottom = 0.5 margin_top = 300.0
theme = ExtResource( 1 ) margin_right = -400.0
margin_bottom = -300.0
script = ExtResource( 2 ) script = ExtResource( 2 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="PauseWin" type="PopupDialog" parent="."] [node name="PauseWin" type="PopupDialog" parent="."]
pause_mode = 2 pause_mode = 2
@ -20,7 +23,7 @@ anchor_bottom = 0.5
margin_left = -88.0 margin_left = -88.0
margin_top = -57.0 margin_top = -57.0
margin_right = 88.0 margin_right = 88.0
margin_bottom = 57.0 margin_bottom = 94.0
[node name="PauseVbox" type="VBoxContainer" parent="PauseWin"] [node name="PauseVbox" type="VBoxContainer" parent="PauseWin"]
anchor_right = 1.0 anchor_right = 1.0
@ -32,26 +35,26 @@ margin_bottom = -10.0
[node name="PauseLbl" type="Label" parent="PauseWin/PauseVbox"] [node name="PauseLbl" type="Label" parent="PauseWin/PauseVbox"]
margin_right = 156.0 margin_right = 156.0
margin_bottom = 21.0 margin_bottom = 29.0
text = "KPUS" text = "KPUS"
align = 1 align = 1
[node name="SettingsBtn" type="Button" parent="PauseWin/PauseVbox"] [node name="SettingsBtn" type="Button" parent="PauseWin/PauseVbox"]
margin_top = 25.0 margin_top = 33.0
margin_right = 156.0 margin_right = 156.0
margin_bottom = 46.0 margin_bottom = 62.0
text = "KSET" text = "KSET"
[node name="ResumeBtn" type="Button" parent="PauseWin/PauseVbox"] [node name="ResumeBtn" type="Button" parent="PauseWin/PauseVbox"]
margin_top = 50.0 margin_top = 66.0
margin_right = 156.0 margin_right = 156.0
margin_bottom = 71.0 margin_bottom = 95.0
text = "KRUS" text = "KRUS"
[node name="ExitBtn" type="Button" parent="PauseWin/PauseVbox"] [node name="ExitBtn" type="Button" parent="PauseWin/PauseVbox"]
margin_top = 75.0 margin_top = 99.0
margin_right = 156.0 margin_right = 156.0
margin_bottom = 96.0 margin_bottom = 128.0
text = "KEXT" text = "KEXT"
[node name="SettingsWin" type="AcceptDialog" parent="."] [node name="SettingsWin" type="AcceptDialog" parent="."]
@ -72,9 +75,9 @@ anchor_top = 0.5
anchor_right = 0.5 anchor_right = 0.5
anchor_bottom = 0.5 anchor_bottom = 0.5
margin_left = -68.0 margin_left = -68.0
margin_top = -26.0 margin_top = -33.0
margin_right = 68.0 margin_right = 68.0
margin_bottom = -3.0 margin_bottom = -4.0
columns = 3 columns = 3
[node name="Languages" type="MenuButton" parent="SettingsWin/Grid"] [node name="Languages" type="MenuButton" parent="SettingsWin/Grid"]
@ -110,7 +113,7 @@ anchor_right = 0.5
margin_left = -207.5 margin_left = -207.5
margin_top = 8.0 margin_top = 8.0
margin_right = 207.5 margin_right = 207.5
margin_bottom = 238.0 margin_bottom = 230.0
bbcode_enabled = true bbcode_enabled = true
bbcode_text = "This Source Code Form is subject to the terms of the Mozilla Public 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 License, v. 2.0. If a copy of the MPL was not distributed with this

View file

@ -1,12 +1,17 @@
[gd_scene load_steps=5 format=2] [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://styles/DressUpTheme.res" type="Theme" id=2]
[ext_resource path="res://sprites/title.svg" type="Texture" id=3] [ext_resource path="res://sprites/clothes/title.svg" type="Texture" id=3]
[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=4] [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 ) script = ExtResource( 1 )
__meta__ = {
"_edit_use_anchors_": false
}
[node name="MenuRf" type="ReferenceRect" parent="."] [node name="MenuRf" type="ReferenceRect" parent="."]
anchor_left = 0.5 anchor_left = 0.5
@ -35,19 +40,19 @@ margin_bottom = 61.5
[node name="PlayBtn" type="Button" parent="MenuRf/StartVbox"] [node name="PlayBtn" type="Button" parent="MenuRf/StartVbox"]
margin_right = 136.0 margin_right = 136.0
margin_bottom = 21.0 margin_bottom = 29.0
text = "KPLY" text = "KPLY"
[node name="CreditsBtn" type="Button" parent="MenuRf/StartVbox"] [node name="CreditsBtn" type="Button" parent="MenuRf/StartVbox"]
margin_top = 25.0 margin_top = 33.0
margin_right = 136.0 margin_right = 136.0
margin_bottom = 46.0 margin_bottom = 62.0
text = "KCRE" text = "KCRE"
[node name="LicenseBtn" type="Button" parent="MenuRf/StartVbox"] [node name="LicenseBtn" type="Button" parent="MenuRf/StartVbox"]
margin_top = 50.0 margin_top = 66.0
margin_right = 136.0 margin_right = 136.0
margin_bottom = 71.0 margin_bottom = 95.0
text = "KLIC" text = "KLIC"
[node name="ModePanel" type="WindowDialog" parent="MenuRf"] [node name="ModePanel" type="WindowDialog" parent="MenuRf"]

View file

@ -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 )

View file

@ -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

View file

@ -15,15 +15,15 @@ func is_game_paused(is_paused):
func switch_scenes(new_mode): func switch_scenes(new_mode):
if new_mode == "classic": if new_mode == "classic":
get_tree().change_scene("res://scn/ClassicScn.tscn") get_tree().change_scene("res://scenes/ClassicScn.tscn")
elif new_mode == "credits": elif new_mode == "credits":
get_tree().change_scene("res://scn/CreditsScn.tscn") get_tree().change_scene("res://scenes/CreditsScn.tscn")
elif new_mode == "play": elif new_mode == "play":
get_tree().change_scene("res://scn/GameScn.tscn") get_tree().change_scene("res://scenes/GameScn.tscn")
elif new_mode == "title": 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): func if_file_exists(file):
var fileCheck = File.new() var fileCheck = File.new()
var fileExists = fileCheck.file_exists(file) var fileExists = fileCheck.file_exists(file)
fileCheck fileCheck

154
project/scripts/GameScn.gd Normal file
View file

@ -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)

View file

@ -31,4 +31,4 @@ func _on_MusicBtn_toggled(button_pressed):
func _on_ResumeBtn_pressed(): func _on_ResumeBtn_pressed():
$PauseWin.hide() $PauseWin.hide()
GameKit.is_game_paused(false) GameKit.is_game_paused(false)

View file

@ -39,4 +39,4 @@ func play_random_song():
# play() # play()
print_debug(playlist[rand_song]) print_debug(playlist[rand_song])
else: else:
print_debug("Music not found") print_debug("Music not found")

View file

@ -1,6 +1,6 @@
# Anthony Wilcox licenses this file to you under the MPL license. # Anthony Wilcox licenses this file to you under the MPL license.
# See the LICENSE file in the project root for more information. # See the LICENSE file in the project root for more information.
extends Node extends Control
func _ready(): func _ready():
$Version.text = GameKit.version $Version.text = GameKit.version

View file

Before

Width:  |  Height:  |  Size: 9.9 KiB

After

Width:  |  Height:  |  Size: 9.9 KiB

View file

@ -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

View file

Before

Width:  |  Height:  |  Size: 4.7 KiB

After

Width:  |  Height:  |  Size: 4.7 KiB

View file

@ -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

View file

Before

Width:  |  Height:  |  Size: 2.8 KiB

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/beat_up_jeans.png-c00ecc4d7449d47b449eff5199fe859d.stex" path="res://.import/background.svg-53a5ac36b87b243d4a54ca15a9574f97.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/beat_up_jeans.png" source_file="res://sprites/clothes/background.svg"
dest_files=[ "res://.import/beat_up_jeans.png-c00ecc4d7449d47b449eff5199fe859d.stex" ] dest_files=[ "res://.import/background.svg-53a5ac36b87b243d4a54ca15a9574f97.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.7 KiB

View file

@ -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

View file

Before

Width:  |  Height:  |  Size: 5.8 KiB

After

Width:  |  Height:  |  Size: 5.8 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/beat_up_jeans.svg-03d15b89036beb9eef0ad5d0514187f7.stex" path="res://.import/beat_up_jeans.svg-014890781ff23da48ec0da4327398d08.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/beat_up_jeans.svg" source_file="res://sprites/clothes/beat_up_jeans.svg"
dest_files=[ "res://.import/beat_up_jeans.svg-03d15b89036beb9eef0ad5d0514187f7.stex" ] dest_files=[ "res://.import/beat_up_jeans.svg-014890781ff23da48ec0da4327398d08.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 7.9 KiB

After

Width:  |  Height:  |  Size: 7.9 KiB

View file

@ -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

View file

Before

Width:  |  Height:  |  Size: 6.7 KiB

After

Width:  |  Height:  |  Size: 6.7 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/biker_jacket.svg-e4eb87ceed9266fe4354ce7432371bfb.stex" path="res://.import/biker_jacket.svg-59d3a2ffb145e6487867d4dac1f72ea2.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/biker_jacket.svg" source_file="res://sprites/clothes/biker_jacket.svg"
dest_files=[ "res://.import/biker_jacket.svg-e4eb87ceed9266fe4354ce7432371bfb.stex" ] dest_files=[ "res://.import/biker_jacket.svg-59d3a2ffb145e6487867d4dac1f72ea2.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 5.5 KiB

After

Width:  |  Height:  |  Size: 5.5 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/blue_camo_jeans.png-afabffa48cf609dcc71548ef43544306.stex" path="res://.import/blue_camo_jeans.png-5ecdedc43f67022a5b8fca3601587a75.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/blue_camo_jeans.png" source_file="res://sprites/clothes/blue_camo_jeans.png"
dest_files=[ "res://.import/blue_camo_jeans.png-afabffa48cf609dcc71548ef43544306.stex" ] dest_files=[ "res://.import/blue_camo_jeans.png-5ecdedc43f67022a5b8fca3601587a75.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 10 KiB

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/blue_camo_jeans.svg-41f698e822667bb843272733405fda26.stex" path="res://.import/blue_camo_jeans.svg-cd16f3b76d3e1ddbb50df0fd6605a5b3.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/blue_camo_jeans.svg" source_file="res://sprites/clothes/blue_camo_jeans.svg"
dest_files=[ "res://.import/blue_camo_jeans.svg-41f698e822667bb843272733405fda26.stex" ] dest_files=[ "res://.import/blue_camo_jeans.svg-cd16f3b76d3e1ddbb50df0fd6605a5b3.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 4.6 KiB

After

Width:  |  Height:  |  Size: 4.6 KiB

View file

@ -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

View file

Before

Width:  |  Height:  |  Size: 8.5 KiB

After

Width:  |  Height:  |  Size: 8.5 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/bottoms_placeholder.png-62c912a1bed4bf5afa5837db5713e2ad.stex" path="res://.import/bottoms_placeholder.png-57674ec9f26757b6fa01589150ad74c7.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/bottoms_placeholder.png" source_file="res://sprites/clothes/bottoms_placeholder.png"
dest_files=[ "res://.import/bottoms_placeholder.png-62c912a1bed4bf5afa5837db5713e2ad.stex" ] dest_files=[ "res://.import/bottoms_placeholder.png-57674ec9f26757b6fa01589150ad74c7.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 4.4 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/briefs.png-6f928372b63062f4dbc7d1657c27f18d.stex" path="res://.import/briefs.png-f2fba0226797db266d542131d9f44a11.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/briefs.png" source_file="res://sprites/clothes/briefs.png"
dest_files=[ "res://.import/briefs.png-6f928372b63062f4dbc7d1657c27f18d.stex" ] dest_files=[ "res://.import/briefs.png-f2fba0226797db266d542131d9f44a11.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/briefs.svg-9a7fc83a2615d5060d598e416767b736.stex" path="res://.import/briefs.svg-596ed87a13dea058d1ae32aecf4a2573.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/briefs.svg" source_file="res://sprites/clothes/briefs.svg"
dest_files=[ "res://.import/briefs.svg-9a7fc83a2615d5060d598e416767b736.stex" ] dest_files=[ "res://.import/briefs.svg-596ed87a13dea058d1ae32aecf4a2573.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 5.2 KiB

After

Width:  |  Height:  |  Size: 5.2 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/camera.png-0467f8492fb5daf0ef966d94d21bc81c.stex" path="res://.import/camera.png-d91cda782f5cfd9276099749bc42049f.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/camera.png" source_file="res://sprites/clothes/camera.png"
dest_files=[ "res://.import/camera.png-0467f8492fb5daf0ef966d94d21bc81c.stex" ] dest_files=[ "res://.import/camera.png-d91cda782f5cfd9276099749bc42049f.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 3.8 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/camera.svg-9305287ba29f8c72100325a8b8ece10a.stex" path="res://.import/camera.svg-38c1d6b15a580b15ae328609c4975981.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/camera.svg" source_file="res://sprites/clothes/camera.svg"
dest_files=[ "res://.import/camera.svg-9305287ba29f8c72100325a8b8ece10a.stex" ] dest_files=[ "res://.import/camera.svg-38c1d6b15a580b15ae328609c4975981.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/character_base.png-5792404fa83b4fad07f738418ce65c16.stex" path="res://.import/character_base.png-240b103219887692bbf047c7786ade98.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/character_base.png" source_file="res://sprites/clothes/character_base.png"
dest_files=[ "res://.import/character_base.png-5792404fa83b4fad07f738418ce65c16.stex" ] dest_files=[ "res://.import/character_base.png-240b103219887692bbf047c7786ade98.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/character_base.svg-5ea6954c66ca6e666096a6a63d2174dc.stex" path="res://.import/character_base.svg-2a3498e2077081015c7a2d1f387a2594.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/character_base.svg" source_file="res://sprites/clothes/character_base.svg"
dest_files=[ "res://.import/character_base.svg-5ea6954c66ca6e666096a6a63d2174dc.stex" ] dest_files=[ "res://.import/character_base.svg-2a3498e2077081015c7a2d1f387a2594.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 6.2 KiB

After

Width:  |  Height:  |  Size: 6.2 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/briefs_classic.png-72f5c50789d008d18419f2ddc543be01.stex" path="res://.import/briefs_classic.png-2ce669e823e59b371b99b2a937ab4263.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/classic/briefs_classic.png" source_file="res://sprites/clothes/classic/briefs_classic.png"
dest_files=[ "res://.import/briefs_classic.png-72f5c50789d008d18419f2ddc543be01.stex" ] dest_files=[ "res://.import/briefs_classic.png-2ce669e823e59b371b99b2a937ab4263.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/camera_classic.png-af832bc2a977e569d65ef92b696b08ab.stex" path="res://.import/camera_classic.png-390efe87cd947affce3f4778f00b583b.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/classic/camera_classic.png" source_file="res://sprites/clothes/classic/camera_classic.png"
dest_files=[ "res://.import/camera_classic.png-af832bc2a977e569d65ef92b696b08ab.stex" ] dest_files=[ "res://.import/camera_classic.png-390efe87cd947affce3f4778f00b583b.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 3 KiB

After

Width:  |  Height:  |  Size: 3 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/fundosi_classic.png-d1e37ddcca659b1e8bbdf034bd5deb1e.stex" path="res://.import/fundosi_classic.png-2471228693a783e3dc3309151fc92092.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/classic/fundosi_classic.png" source_file="res://sprites/clothes/classic/fundosi_classic.png"
dest_files=[ "res://.import/fundosi_classic.png-d1e37ddcca659b1e8bbdf034bd5deb1e.stex" ] dest_files=[ "res://.import/fundosi_classic.png-2471228693a783e3dc3309151fc92092.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

View file

@ -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

View file

Before

Width:  |  Height:  |  Size: 6 KiB

After

Width:  |  Height:  |  Size: 6 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/z_briefs_classic.png-c11fbedc052fc3e5550d9a1a43d10e7c.stex" path="res://.import/z_briefs_classic.png-10d3d58b4454e62be8efb64c0a2e448e.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/classic/z_briefs_classic.png" source_file="res://sprites/clothes/classic/z_briefs_classic.png"
dest_files=[ "res://.import/z_briefs_classic.png-c11fbedc052fc3e5550d9a1a43d10e7c.stex" ] dest_files=[ "res://.import/z_briefs_classic.png-10d3d58b4454e62be8efb64c0a2e448e.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/classic_dress_up_bg.png-c34c9f779b47ab5a3dee0408e5a85e6c.stex" path="res://.import/classic_dress_up_bg.png-594c00eaf14ad58cdedc1824d8f59a5c.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/classic_dress_up_bg.png" source_file="res://sprites/clothes/classic_dress_up_bg.png"
dest_files=[ "res://.import/classic_dress_up_bg.png-c34c9f779b47ab5a3dee0408e5a85e6c.stex" ] dest_files=[ "res://.import/classic_dress_up_bg.png-594c00eaf14ad58cdedc1824d8f59a5c.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 43 KiB

After

Width:  |  Height:  |  Size: 43 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" 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={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/classic_dress_up_blurred_bg.png" source_file="res://sprites/clothes/classic_dress_up_blurred_bg.png"
dest_files=[ "res://.import/classic_dress_up_blurred_bg.png-6aa7996e6a898bc00341242c3e06b222.stex" ] dest_files=[ "res://.import/classic_dress_up_blurred_bg.png-21899d83f42ae1cd02cd106046f74e05.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 8.8 KiB

After

Width:  |  Height:  |  Size: 8.8 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/cursor.png-ab659432fe95e81e8963a978cc7193a5.stex" path="res://.import/cursor.png-510ed8f4707337aeaa4855fa575b5224.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/cursor.png" source_file="res://sprites/clothes/cursor.png"
dest_files=[ "res://.import/cursor.png-ab659432fe95e81e8963a978cc7193a5.stex" ] dest_files=[ "res://.import/cursor.png-510ed8f4707337aeaa4855fa575b5224.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/dj_shirt.png-80161899564a34a06ed4639725e155fc.stex" path="res://.import/dj_shirt.png-9ec42996bc92d150dd64520203187962.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/dj_shirt.png" source_file="res://sprites/clothes/dj_shirt.png"
dest_files=[ "res://.import/dj_shirt.png-80161899564a34a06ed4639725e155fc.stex" ] dest_files=[ "res://.import/dj_shirt.png-9ec42996bc92d150dd64520203187962.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 7.7 KiB

After

Width:  |  Height:  |  Size: 7.7 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/dj_shirt.svg-5d74e0cb2b3928aecd132f88a5420703.stex" path="res://.import/dj_shirt.svg-ea5d0d7495aebdde5fea68ced6abd0c6.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/dj_shirt.svg" source_file="res://sprites/clothes/dj_shirt.svg"
dest_files=[ "res://.import/dj_shirt.svg-5d74e0cb2b3928aecd132f88a5420703.stex" ] dest_files=[ "res://.import/dj_shirt.svg-ea5d0d7495aebdde5fea68ced6abd0c6.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 13 KiB

After

Width:  |  Height:  |  Size: 13 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/dj_shorts.png-3ac46fb6e6c0a3469e2828f5eeac1d3a.stex" path="res://.import/dj_shorts.png-577f070e856586307ddbbd955ca04f3a.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/dj_shorts.png" source_file="res://sprites/clothes/dj_shorts.png"
dest_files=[ "res://.import/dj_shorts.png-3ac46fb6e6c0a3469e2828f5eeac1d3a.stex" ] dest_files=[ "res://.import/dj_shorts.png-577f070e856586307ddbbd955ca04f3a.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 8.2 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/dj_shorts.svg-e17b87622cd4d462498c5bb9deda7dbb.stex" path="res://.import/dj_shorts.svg-a37366f40625ad486382b984e7c0008d.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/dj_shorts.svg" source_file="res://sprites/clothes/dj_shorts.svg"
dest_files=[ "res://.import/dj_shorts.svg-e17b87622cd4d462498c5bb9deda7dbb.stex" ] dest_files=[ "res://.import/dj_shorts.svg-a37366f40625ad486382b984e7c0008d.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 30 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/dressup_blurred_wardrobe.png-3c6212e9f307447cf770b5c2c36955e8.stex" path="res://.import/dressup_blurred_wardrobe.png-8d6b33052b265436c0bddfa109913146.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/dressup_blurred_wardrobe.png" source_file="res://sprites/clothes/dressup_blurred_wardrobe.png"
dest_files=[ "res://.import/dressup_blurred_wardrobe.png-3c6212e9f307447cf770b5c2c36955e8.stex" ] dest_files=[ "res://.import/dressup_blurred_wardrobe.png-8d6b33052b265436c0bddfa109913146.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/dressup_panel.svg-32ea153065247fc0395a2e1e29e6c510.stex" path="res://.import/dressup_panel.svg-10ad40ebf590034174b6f525bb791368.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/dressup_panel.svg" source_file="res://sprites/clothes/dressup_panel.svg"
dest_files=[ "res://.import/dressup_panel.svg-32ea153065247fc0395a2e1e29e6c510.stex" ] dest_files=[ "res://.import/dressup_panel.svg-10ad40ebf590034174b6f525bb791368.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 8.3 KiB

After

Width:  |  Height:  |  Size: 8.3 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/dressup_wardrobe.png-e515da90332cecc9bffe7a2203d49b25.stex" path="res://.import/dressup_wardrobe.png-c4a59bdd169c023e961e92917f5fd969.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/dressup_wardrobe.png" source_file="res://sprites/clothes/dressup_wardrobe.png"
dest_files=[ "res://.import/dressup_wardrobe.png-e515da90332cecc9bffe7a2203d49b25.stex" ] dest_files=[ "res://.import/dressup_wardrobe.png-c4a59bdd169c023e961e92917f5fd969.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 2.9 KiB

After

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/dressup_wardrobe.svg-045acf6c9249ae39f39347a2897230a1.stex" path="res://.import/dressup_wardrobe.svg-469d705b19d4010c02c75ae841bf12a7.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/dressup_wardrobe.svg" source_file="res://sprites/clothes/dressup_wardrobe.svg"
dest_files=[ "res://.import/dressup_wardrobe.svg-045acf6c9249ae39f39347a2897230a1.stex" ] dest_files=[ "res://.import/dressup_wardrobe.svg-469d705b19d4010c02c75ae841bf12a7.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 4.2 KiB

After

Width:  |  Height:  |  Size: 4.2 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/shirt_icon.svg-7b696f9c6cc160cdbf6b29c4ffa97174.stex" path="res://.import/exit_symbol.svg-3108fb0b8e3787d891eea722f1e829f5.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/shirt_icon.svg" source_file="res://sprites/clothes/exit_symbol.svg"
dest_files=[ "res://.import/shirt_icon.svg-7b696f9c6cc160cdbf6b29c4ffa97174.stex" ] dest_files=[ "res://.import/exit_symbol.svg-3108fb0b8e3787d891eea722f1e829f5.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/formal_skirt.svg-1606a85a3c8f7268a0dd807c2d345893.stex" path="res://.import/formal_skirt.svg-5364ab387d303866a55bd065f1196db6.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/formal_skirt.svg" source_file="res://sprites/clothes/formal_skirt.svg"
dest_files=[ "res://.import/formal_skirt.svg-1606a85a3c8f7268a0dd807c2d345893.stex" ] dest_files=[ "res://.import/formal_skirt.svg-5364ab387d303866a55bd065f1196db6.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/fundosi.png-64674ffdd4a2365e4c8d3aa3c45c2850.stex" path="res://.import/fundosi.png-d90a95087bb6d0b75606acf5d41632c9.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/fundosi.png" source_file="res://sprites/clothes/fundosi.png"
dest_files=[ "res://.import/fundosi.png-64674ffdd4a2365e4c8d3aa3c45c2850.stex" ] dest_files=[ "res://.import/fundosi.png-d90a95087bb6d0b75606acf5d41632c9.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/fundosi.svg-faa9e69901a505e92e5b3e529aca7f92.stex" path="res://.import/fundosi.svg-3e06a2a2235c6bc5f836c17caffdf31e.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/fundosi.svg" source_file="res://sprites/clothes/fundosi.svg"
dest_files=[ "res://.import/fundosi.svg-faa9e69901a505e92e5b3e529aca7f92.stex" ] dest_files=[ "res://.import/fundosi.svg-3e06a2a2235c6bc5f836c17caffdf31e.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 9.1 KiB

After

Width:  |  Height:  |  Size: 9.1 KiB

View file

@ -2,15 +2,15 @@
importer="texture" importer="texture"
type="StreamTexture" type="StreamTexture"
path="res://.import/icrazy_frame.png-af55dcb31394696f3290be6e829ab937.stex" path="res://.import/icrazy_frame.png-b5e146a49c044ebe70b5af8f2c06006d.stex"
metadata={ metadata={
"vram_texture": false "vram_texture": false
} }
[deps] [deps]
source_file="res://sprites/icrazy_frame.png" source_file="res://sprites/clothes/icrazy_frame.png"
dest_files=[ "res://.import/icrazy_frame.png-af55dcb31394696f3290be6e829ab937.stex" ] dest_files=[ "res://.import/icrazy_frame.png-b5e146a49c044ebe70b5af8f2c06006d.stex" ]
[params] [params]
@ -20,7 +20,7 @@ compress/hdr_mode=0
compress/bptc_ldr=0 compress/bptc_ldr=0
compress/normal_map=0 compress/normal_map=0
flags/repeat=0 flags/repeat=0
flags/filter=true flags/filter=false
flags/mipmaps=false flags/mipmaps=false
flags/anisotropic=false flags/anisotropic=false
flags/srgb=2 flags/srgb=2
@ -30,5 +30,5 @@ process/HDR_as_SRGB=false
process/invert_color=false process/invert_color=false
stream=false stream=false
size_limit=0 size_limit=0
detect_3d=true detect_3d=false
svg/scale=1.0 svg/scale=1.0

Some files were not shown because too many files have changed in this diff Show more