SVG remaster, part 1 (#5)
Up until this point, this game still relied heavily on my copy of ZC's Dress Up for editing and creating new sprites so they properly match the look and feel. The only reason why it's not included in the source code is because the format is proprietary and Adobe's editor doesn't work with all platforms that Godot does. That is unfair when the whole goal of this project to remove Flash from the equation. This remaster aims to remove that final need by remaking in an open format, whether it be an open source editor or format. I found that using SVG as is with Inkscape as the editor does the job well because Godot can render it without any extra steps required. I tried testing out Krita and Gimp but they didn't produce the results I wanted.
|
@ -2,7 +2,7 @@
|
|||
|
||||
[](https://ko-fi.com/X8X5LDU7)
|
||||
|
||||
Nathan's Dress Up is a open source dress up game. It's a remake of my original Flash game, ZC's Dress Up, that contains all the original assets with only minor edits. You can download this game for free, with an option to donate, at [Itch.io](https://antonwilc0x.itch.io/zacksdressup) or become a [Patreon](https://www.patreon.com/antonwilc0x) and get your name in the credits.
|
||||
Nathan's Dress Up is a open source dress up game. It's a remake of my original Flash game, ZC's Dress Up.
|
||||
|
||||
## Screenshot
|
||||
|
||||
|
|
0
assets/.gitkeep
Normal file
|
@ -12,4 +12,3 @@ sun_energy = 16.0
|
|||
[resource]
|
||||
background_mode = 2
|
||||
background_sky = SubResource( 1 )
|
||||
|
||||
|
|
|
@ -3,8 +3,6 @@ KENG,English,Engelsk
|
|||
KSWD,Swedish,Svenska
|
||||
KBOT,Pants,Byxor
|
||||
KTOP,Shirts,Skjorta
|
||||
KRTP,Remove Shirt,Ta av skjortan
|
||||
KRBT,Remove Pants,Ta bort byxor
|
||||
KCLS,Classic,Klassisk
|
||||
KUND,Underwear,Underkläder
|
||||
KRUS,Resume,Återuppta
|
||||
|
|
|
BIN
project/music/at_the_lake.ogg
Normal file
15
project/music/at_the_lake.ogg.import
Normal file
|
@ -0,0 +1,15 @@
|
|||
[remap]
|
||||
|
||||
importer="ogg_vorbis"
|
||||
type="AudioStreamOGGVorbis"
|
||||
path="res://.import/at_the_lake.ogg-3c70c4f6fe0d2145ba5ad822bf6ed2f5.oggstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://music/at_the_lake.ogg"
|
||||
dest_files=[ "res://.import/at_the_lake.ogg-3c70c4f6fe0d2145ba5ad822bf6ed2f5.oggstr" ]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0
|
BIN
project/music/reminiscing.ogg
Normal file
15
project/music/reminiscing.ogg.import
Normal file
|
@ -0,0 +1,15 @@
|
|||
[remap]
|
||||
|
||||
importer="ogg_vorbis"
|
||||
type="AudioStreamOGGVorbis"
|
||||
path="res://.import/reminiscing.ogg-6bf8281e49868f20b0ba3bd1070a62ac.oggstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://music/reminiscing.ogg"
|
||||
dest_files=[ "res://.import/reminiscing.ogg-6bf8281e49868f20b0ba3bd1070a62ac.oggstr" ]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0
|
|
@ -1,15 +0,0 @@
|
|||
[remap]
|
||||
|
||||
importer="ogg_vorbis"
|
||||
type="AudioStreamOGGVorbis"
|
||||
path="res://.import/song.ogg-e028209760e5df62f8d96269815a3497.oggstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://music/song.ogg"
|
||||
dest_files=[ "res://.import/song.ogg-e028209760e5df62f8d96269815a3497.oggstr" ]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0
|
BIN
project/music/together_again.ogg
Normal file
15
project/music/together_again.ogg.import
Normal file
|
@ -0,0 +1,15 @@
|
|||
[remap]
|
||||
|
||||
importer="ogg_vorbis"
|
||||
type="AudioStreamOGGVorbis"
|
||||
path="res://.import/together_again.ogg-c77c286a1667edafef4b34790b5d2995.oggstr"
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://music/together_again.ogg"
|
||||
dest_files=[ "res://.import/together_again.ogg-c77c286a1667edafef4b34790b5d2995.oggstr" ]
|
||||
|
||||
[params]
|
||||
|
||||
loop=true
|
||||
loop_offset=0
|
|
@ -28,10 +28,16 @@ name_sv="Nathans klä upp"
|
|||
GameKit="*res://src/GameKit.gd"
|
||||
WinDialogs="*res://scn/WinDialogs.tscn"
|
||||
|
||||
[debug]
|
||||
|
||||
gdscript/completion/autocomplete_setters_and_getters=true
|
||||
gdscript/warnings/unsafe_property_access=true
|
||||
gdscript/warnings/unsafe_method_access=true
|
||||
gdscript/warnings/unsafe_cast=true
|
||||
gdscript/warnings/unsafe_call_argument=true
|
||||
|
||||
[display]
|
||||
|
||||
window/size/width=800
|
||||
window/size/height=554
|
||||
window/size/resizable=false
|
||||
|
||||
[input]
|
||||
|
@ -54,4 +60,5 @@ quality/driver/driver_name="GLES2"
|
|||
quality/intended_usage/framebuffer_allocation=0
|
||||
quality/intended_usage/framebuffer_allocation.mobile=0
|
||||
quality/2d/use_pixel_snap=true
|
||||
vram_compression/import_etc=true
|
||||
environment/default_environment="res://default_env.tres"
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
[ext_resource path="res://sprites/tail/tail0.png" type="Texture" id=1]
|
||||
[ext_resource path="res://sprites/tail/tail1.png" type="Texture" id=2]
|
||||
[ext_resource path="res://sprites/tail/tail2.png" type="Texture" id=3]
|
||||
[ext_resource path="res://sprites/character_base.png" type="Texture" id=4]
|
||||
[ext_resource path="res://sprites/character_base.svg" type="Texture" id=4]
|
||||
[ext_resource path="res://sprites/eyes/eyes1.png" type="Texture" id=5]
|
||||
[ext_resource path="res://sprites/eyes/eyes2.png" type="Texture" id=6]
|
||||
[ext_resource path="res://sprites/eyes/eyes3.png" type="Texture" id=7]
|
||||
|
@ -23,7 +23,6 @@
|
|||
[ext_resource path="res://sprites/mouth/mouth10.png" type="Texture" id=21]
|
||||
[ext_resource path="res://sprites/mouth/mouth12.png" type="Texture" id=22]
|
||||
|
||||
|
||||
[sub_resource type="SpriteFrames" id=1]
|
||||
animations = [ {
|
||||
"frames": [ ExtResource( 1 ), ExtResource( 1 ), ExtResource( 1 ), ExtResource( 2 ), ExtResource( 2 ), ExtResource( 2 ), ExtResource( 3 ), ExtResource( 3 ), ExtResource( 3 ) ],
|
||||
|
@ -53,7 +52,7 @@ animations = [ {
|
|||
[node name="Tail" type="AnimatedSprite" parent="."]
|
||||
position = Vector2( 49.6951, 374.417 )
|
||||
frames = SubResource( 1 )
|
||||
frame = 7
|
||||
frame = 8
|
||||
playing = true
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
|
@ -69,7 +68,7 @@ __meta__ = {
|
|||
[node name="Eyes" type="AnimatedSprite" parent="."]
|
||||
position = Vector2( 109.519, 253.9 )
|
||||
frames = SubResource( 2 )
|
||||
frame = 7
|
||||
frame = 2
|
||||
playing = true
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
|
@ -78,7 +77,7 @@ __meta__ = {
|
|||
[node name="Mouth" type="AnimatedSprite" parent="."]
|
||||
position = Vector2( 126.316, 257.474 )
|
||||
frames = SubResource( 3 )
|
||||
frame = 26
|
||||
frame = 2
|
||||
playing = true
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
|
|
|
@ -4,10 +4,10 @@
|
|||
[ext_resource path="res://src/ItemDrag.gd" type="Script" id=2]
|
||||
[ext_resource path="res://sprites/classic/z_briefs_classic.png" type="Texture" id=3]
|
||||
[ext_resource path="res://sprites/classic/fundosi_classic.png" type="Texture" id=4]
|
||||
[ext_resource path="res://sprites/jeans.png" type="Texture" id=5]
|
||||
[ext_resource path="res://sprites/jeans.svg" type="Texture" id=5]
|
||||
[ext_resource path="res://sprites/dj_shorts.png" type="Texture" id=6]
|
||||
[ext_resource path="res://sprites/sweat_pants.png" type="Texture" id=7]
|
||||
[ext_resource path="res://sprites/blue_camo_jeans.png" type="Texture" id=8]
|
||||
[ext_resource path="res://sprites/sweat_pants.svg" type="Texture" id=7]
|
||||
[ext_resource path="res://sprites/blue_camo_jeans.svg" type="Texture" id=8]
|
||||
[ext_resource path="res://sprites/beat_up_jeans.png" type="Texture" id=9]
|
||||
[ext_resource path="res://sprites/old_sweatshirt.png" type="Texture" id=10]
|
||||
[ext_resource path="res://sprites/dj_shirt.png" type="Texture" id=11]
|
||||
|
@ -20,592 +20,200 @@
|
|||
[ext_resource path="res://sprites/classic/camera_classic.png" type="Texture" id=18]
|
||||
[ext_resource path="res://sprites/classic/owo_censor_classic.png" type="Texture" id=19]
|
||||
|
||||
|
||||
[node name="Clothes" type="Control"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
|
||||
[node name="Wordrobe" type="ReferenceRect" parent="." index="0"]
|
||||
|
||||
editor/display_folded = true
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Wordrobe" type="ReferenceRect" parent="."]
|
||||
margin_left = 193.0
|
||||
margin_top = 17.0
|
||||
margin_right = 775.0
|
||||
margin_bottom = 527.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="Underwear" type="Control" parent="Wordrobe" index="0"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Underwear" type="Control" parent="Wordrobe"]
|
||||
margin_left = -197.0
|
||||
margin_top = -8.0
|
||||
margin_right = -197.0
|
||||
margin_bottom = -8.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
|
||||
[node name="Briefs" type="TextureButton" parent="Wordrobe/Underwear" index="0"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Briefs" type="TextureButton" parent="Wordrobe/Underwear"]
|
||||
margin_left = 68.0
|
||||
margin_top = 391.0
|
||||
margin_right = 136.0
|
||||
margin_bottom = 425.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 1 )
|
||||
script = ExtResource( 2 )
|
||||
|
||||
[node name="ZBriefs" type="TextureButton" parent="Wordrobe/Underwear" index="1"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="ZBriefs" type="TextureButton" parent="Wordrobe/Underwear"]
|
||||
margin_left = 375.0
|
||||
margin_top = 454.0
|
||||
margin_right = 443.0
|
||||
margin_bottom = 488.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 3 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Fundosi" type="TextureButton" parent="Wordrobe/Underwear" index="2"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Fundosi" type="TextureButton" parent="Wordrobe/Underwear"]
|
||||
margin_left = 512.0
|
||||
margin_top = 453.0
|
||||
margin_right = 580.0
|
||||
margin_bottom = 493.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 4 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Bottoms" type="Control" parent="Wordrobe" index="1"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Bottoms" type="Control" parent="Wordrobe"]
|
||||
margin_left = -197.0
|
||||
margin_top = -8.0
|
||||
margin_right = -197.0
|
||||
margin_bottom = -8.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
|
||||
[node name="Jeans" type="TextureButton" parent="Wordrobe/Bottoms" index="0"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Jeans" type="TextureButton" parent="Wordrobe/Bottoms"]
|
||||
margin_left = 614.0
|
||||
margin_top = 292.0
|
||||
margin_right = 720.0
|
||||
margin_bottom = 404.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 5 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="DJ Shorts" type="TextureButton" parent="Wordrobe/Bottoms" index="1"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="DJ Shorts" type="TextureButton" parent="Wordrobe/Bottoms"]
|
||||
margin_left = 628.0
|
||||
margin_top = 415.0
|
||||
margin_right = 734.0
|
||||
margin_bottom = 527.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 6 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Anchor", "Textures" ]
|
||||
|
||||
[node name="Sweats" type="TextureButton" parent="Wordrobe/Bottoms" index="2"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Sweats" type="TextureButton" parent="Wordrobe/Bottoms"]
|
||||
margin_left = 484.0
|
||||
margin_top = 318.0
|
||||
margin_right = 590.0
|
||||
margin_bottom = 430.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 7 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Blue Camo Jeans" type="TextureButton" parent="Wordrobe/Bottoms" index="3"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Blue Camo Jeans" type="TextureButton" parent="Wordrobe/Bottoms"]
|
||||
margin_left = 234.0
|
||||
margin_top = 400.0
|
||||
margin_right = 340.0
|
||||
margin_bottom = 512.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 8 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Beat Up Jeans" type="TextureButton" parent="Wordrobe/Bottoms" index="4"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Beat Up Jeans" type="TextureButton" parent="Wordrobe/Bottoms"]
|
||||
margin_left = 366.0
|
||||
margin_top = 316.0
|
||||
margin_right = 472.0
|
||||
margin_bottom = 428.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 9 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Tops" type="Control" parent="Wordrobe" index="2"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Tops" type="Control" parent="Wordrobe"]
|
||||
margin_left = -197.0
|
||||
margin_top = -8.0
|
||||
margin_right = -197.0
|
||||
margin_bottom = -8.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
|
||||
[node name="Sweatshirt" type="TextureButton" parent="Wordrobe/Tops" index="0"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Sweatshirt" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 643.0
|
||||
margin_top = 34.0
|
||||
margin_right = 728.0
|
||||
margin_bottom = 144.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 10 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="DJ Shirt" type="TextureButton" parent="Wordrobe/Tops" index="1"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="DJ Shirt" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 644.0
|
||||
margin_top = 156.0
|
||||
margin_right = 729.0
|
||||
margin_bottom = 271.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 11 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Raw" type="TextureButton" parent="Wordrobe/Tops" index="2"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Raw" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 247.0
|
||||
margin_top = 25.0
|
||||
margin_right = 332.0
|
||||
margin_bottom = 138.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 12 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Atomic Shirt" type="TextureButton" parent="Wordrobe/Tops" index="3"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Atomic Shirt" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 518.0
|
||||
margin_top = 33.0
|
||||
margin_right = 603.0
|
||||
margin_bottom = 148.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 13 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Z Shirt" type="TextureButton" parent="Wordrobe/Tops" index="4"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Z Shirt" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 385.0
|
||||
margin_top = 178.0
|
||||
margin_right = 466.0
|
||||
margin_bottom = 293.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 14 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Biker Jacket" type="TextureButton" parent="Wordrobe/Tops" index="5"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Biker Jacket" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 253.0
|
||||
margin_top = 275.0
|
||||
margin_right = 338.0
|
||||
margin_bottom = 390.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 15 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="What's New" type="TextureButton" parent="Wordrobe/Tops" index="6"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="What's New" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 249.0
|
||||
margin_top = 150.0
|
||||
margin_right = 334.0
|
||||
margin_bottom = 265.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 16 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Train Shirt" type="TextureButton" parent="Wordrobe/Tops" index="7"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Train Shirt" type="TextureButton" parent="Wordrobe/Tops"]
|
||||
margin_left = 512.0
|
||||
margin_top = 176.0
|
||||
margin_right = 597.0
|
||||
margin_bottom = 291.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 17 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="Accessories" type="Control" parent="Wordrobe" index="3"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Accessories" type="Control" parent="Wordrobe"]
|
||||
margin_left = -197.0
|
||||
margin_top = -8.0
|
||||
margin_right = -197.0
|
||||
margin_bottom = -8.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
|
||||
[node name="Camera" type="TextureButton" parent="Wordrobe/Accessories" index="0"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
[node name="Camera" type="TextureButton" parent="Wordrobe/Accessories"]
|
||||
margin_left = 398.0
|
||||
margin_top = 94.0
|
||||
margin_right = 447.0
|
||||
margin_bottom = 156.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
texture_normal = ExtResource( 18 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[node name="OwO Censor" type="TextureButton" parent="Wordrobe/Accessories" index="1"]
|
||||
|
||||
anchor_left = 0.0
|
||||
anchor_top = 0.0
|
||||
anchor_right = 0.0
|
||||
anchor_bottom = 0.0
|
||||
margin_left = 371.0
|
||||
margin_top = 37.0
|
||||
margin_right = 476.0
|
||||
margin_bottom = 77.0
|
||||
rect_pivot_offset = Vector2( 0, 0 )
|
||||
rect_clip_content = false
|
||||
focus_mode = 2
|
||||
mouse_filter = 0
|
||||
mouse_default_cursor_shape = 0
|
||||
size_flags_horizontal = 1
|
||||
size_flags_vertical = 1
|
||||
toggle_mode = false
|
||||
enabled_focus_mode = 2
|
||||
shortcut = null
|
||||
group = null
|
||||
[node name="OwO Censor" type="TextureButton" parent="Wordrobe/Accessories"]
|
||||
margin_left = 369.0
|
||||
margin_top = 16.0
|
||||
margin_right = 475.0
|
||||
margin_bottom = 56.0
|
||||
texture_normal = ExtResource( 19 )
|
||||
script = ExtResource( 2 )
|
||||
_sections_unfolded = [ "Textures" ]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Underwear/Briefs" to="Wordrobe/Underwear/Briefs" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Underwear/ZBriefs" to="Wordrobe/Underwear/ZBriefs" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Underwear/Fundosi" to="Wordrobe/Underwear/Fundosi" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Bottoms/Jeans" to="Wordrobe/Bottoms/Jeans" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Bottoms/DJ Shorts" to="Wordrobe/Bottoms/DJ Shorts" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Bottoms/Sweats" to="Wordrobe/Bottoms/Sweats" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Bottoms/Blue Camo Jeans" to="Wordrobe/Bottoms/Blue Camo Jeans" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Bottoms/Beat Up Jeans" to="Wordrobe/Bottoms/Beat Up Jeans" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/Sweatshirt" to="Wordrobe/Tops/Sweatshirt" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/DJ Shirt" to="Wordrobe/Tops/DJ Shirt" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/Raw" to="Wordrobe/Tops/Raw" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/Atomic Shirt" to="Wordrobe/Tops/Atomic Shirt" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/Z Shirt" to="Wordrobe/Tops/Z Shirt" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/Biker Jacket" to="Wordrobe/Tops/Biker Jacket" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/What's New" to="Wordrobe/Tops/What's New" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Tops/Train Shirt" to="Wordrobe/Tops/Train Shirt" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Accessories/Camera" to="Wordrobe/Accessories/Camera" method="_on_outfit_gui_input"]
|
||||
|
||||
[connection signal="gui_input" from="Wordrobe/Accessories/OwO Censor" to="Wordrobe/Accessories/OwO Censor" method="_on_outfit_gui_input"]
|
||||
|
||||
|
||||
|
|
|
@ -7,33 +7,25 @@
|
|||
[ext_resource path="res://scn/ClassicClothes.tscn" type="PackedScene" id=5]
|
||||
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=6]
|
||||
|
||||
|
||||
|
||||
[node name="GameScreen" type="Node" index="0"]
|
||||
|
||||
[node name="GameScreen" type="Node"]
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="Background" type="Sprite" parent="." index="0"]
|
||||
|
||||
[node name="Background" type="Sprite" parent="."]
|
||||
position = Vector2( 400, 277 )
|
||||
texture = ExtResource( 2 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="Lights" type="Sprite" parent="." index="1"]
|
||||
|
||||
[node name="Lights" type="Sprite" parent="."]
|
||||
position = Vector2( 477.823, 100.811 )
|
||||
texture = ExtResource( 3 )
|
||||
_sections_unfolded = [ "Z Index" ]
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="Nathan" parent="." index="2" instance=ExtResource( 4 )]
|
||||
|
||||
[node name="Clothes" parent="." index="3" instance=ExtResource( 5 )]
|
||||
|
||||
[node name="WinDialogs" parent="." index="4" instance=ExtResource( 6 )]
|
||||
[node name="Nathan" parent="." instance=ExtResource( 4 )]
|
||||
|
||||
[node name="Clothes" parent="." instance=ExtResource( 5 )]
|
||||
|
||||
[node name="WinDialogs" parent="." instance=ExtResource( 6 )]
|
||||
|
|
21
project/scn/GameScn.tscn
Normal file
|
@ -0,0 +1,21 @@
|
|||
[gd_scene load_steps=6 format=2]
|
||||
|
||||
[ext_resource path="res://src/GameScn.gd" type="Script" id=1]
|
||||
[ext_resource path="res://sprites/icrazy_frame.png" type="Texture" id=2]
|
||||
[ext_resource path="res://scn/Clothes.tscn" type="PackedScene" id=3]
|
||||
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=4]
|
||||
[ext_resource path="res://src/Soundtrack.gd" type="Script" id=5]
|
||||
|
||||
[node name="GameScreen" type="Node"]
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="PicFrame" type="Sprite" parent="."]
|
||||
position = Vector2( 204.942, 120.396 )
|
||||
texture = ExtResource( 2 )
|
||||
|
||||
[node name="Clothes" parent="." instance=ExtResource( 3 )]
|
||||
|
||||
[node name="WinDialogs" parent="." instance=ExtResource( 4 )]
|
||||
|
||||
[node name="Music" type="AudioStreamPlayer" parent="."]
|
||||
script = ExtResource( 5 )
|
|
@ -1,33 +0,0 @@
|
|||
[gd_scene load_steps=7 format=2]
|
||||
|
||||
[ext_resource path="res://src/GameScn.gd" type="Script" id=1]
|
||||
[ext_resource path="res://sprites/modern_dress_up_bg.png" type="Texture" id=2]
|
||||
[ext_resource path="res://sprites/icrazy_frame.png" type="Texture" id=3]
|
||||
[ext_resource path="res://scn/Character.tscn" type="PackedScene" id=4]
|
||||
[ext_resource path="res://scn/Clothes.tscn" type="PackedScene" id=5]
|
||||
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=6]
|
||||
|
||||
|
||||
[node name="GameScreen" type="Node"]
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="Background" type="Sprite" parent="."]
|
||||
position = Vector2( 400, 277 )
|
||||
texture = ExtResource( 2 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="PicFrame" type="Sprite" parent="."]
|
||||
position = Vector2( 93.9417, 98.396 )
|
||||
texture = ExtResource( 3 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="Nathan" parent="." instance=ExtResource( 4 )]
|
||||
|
||||
[node name="Clothes" parent="." instance=ExtResource( 5 )]
|
||||
|
||||
[node name="WinDialogs" parent="." instance=ExtResource( 6 )]
|
||||
|
|
@ -1,44 +1,21 @@
|
|||
[gd_scene load_steps=6 format=2]
|
||||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://src/TitleScn.gd" type="Script" id=1]
|
||||
[ext_resource path="res://sprites/modern_dress_up_blurred_bg.png" type="Texture" id=2]
|
||||
[ext_resource path="res://sprites/dressup_blurred_wardrobe.png" type="Texture" id=3]
|
||||
[ext_resource path="res://sprites/classic_dress_up_blurred_bg.png" type="Texture" id=4]
|
||||
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=5]
|
||||
[ext_resource path="res://sprites/title.svg" type="Texture" id=2]
|
||||
[ext_resource path="res://scn/WinDialogs.tscn" type="PackedScene" id=3]
|
||||
|
||||
[node name="Start" type="Node"]
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="Modern" type="Node2D" parent="."]
|
||||
|
||||
[node name="ModernBG" type="Sprite" parent="Modern"]
|
||||
position = Vector2( 400, 277 )
|
||||
[node name="Title" type="Sprite" parent="."]
|
||||
position = Vector2( 522.047, 150.148 )
|
||||
texture = ExtResource( 2 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="WordrobeBG" type="Sprite" parent="Modern"]
|
||||
visible = false
|
||||
position = Vector2( 492.609, 280.27 )
|
||||
texture = ExtResource( 3 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="ClassicBG" type="Sprite" parent="."]
|
||||
visible = false
|
||||
position = Vector2( 400, 277 )
|
||||
texture = ExtResource( 4 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="MenuRf" type="ReferenceRect" parent="."]
|
||||
margin_left = 202.0
|
||||
margin_top = 67.0
|
||||
margin_right = 762.0
|
||||
margin_bottom = 518.0
|
||||
margin_left = 311.292
|
||||
margin_top = 72.2924
|
||||
margin_right = 730.292
|
||||
margin_bottom = 523.292
|
||||
|
||||
[node name="StartVbox" type="VBoxContainer" parent="MenuRf"]
|
||||
anchor_left = 0.5
|
||||
|
@ -68,15 +45,14 @@ margin_right = 136.0
|
|||
margin_bottom = 68.0
|
||||
text = "KLIC"
|
||||
|
||||
[node name="ModePanel" type="Panel" parent="MenuRf"]
|
||||
visible = false
|
||||
[node name="ModePanel" type="WindowDialog" parent="MenuRf"]
|
||||
anchor_left = 0.5
|
||||
anchor_top = 0.5
|
||||
anchor_right = 0.5
|
||||
anchor_bottom = 0.5
|
||||
margin_left = 80.0
|
||||
margin_left = -73.0
|
||||
margin_top = -46.0
|
||||
margin_right = 226.0
|
||||
margin_right = 73.0
|
||||
margin_bottom = 46.0
|
||||
|
||||
[node name="PlayVbox" type="VBoxContainer" parent="MenuRf/ModePanel"]
|
||||
|
@ -86,43 +62,32 @@ margin_left = 5.0
|
|||
margin_top = 5.0
|
||||
margin_right = -5.0
|
||||
margin_bottom = -5.0
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="ModeLbl" type="Label" parent="MenuRf/ModePanel/PlayVbox"]
|
||||
margin_right = 136.0
|
||||
margin_bottom = 14.0
|
||||
text = "KGMO"
|
||||
align = 1
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="ModernBtn" type="Button" parent="MenuRf/ModePanel/PlayVbox"]
|
||||
margin_top = 18.0
|
||||
margin_right = 136.0
|
||||
margin_bottom = 38.0
|
||||
text = "Modern"
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="ClassicBtn" type="Button" parent="MenuRf/ModePanel/PlayVbox"]
|
||||
margin_top = 42.0
|
||||
margin_right = 136.0
|
||||
margin_bottom = 62.0
|
||||
text = "KCLS"
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="WinDialogs" parent="." instance=ExtResource( 5 )]
|
||||
|
||||
[connection signal="toggled" from="MenuRf/StartVbox/PlayBtn" to="." method="_on_PlayBtn_toggled"]
|
||||
[node name="WinDialogs" parent="." instance=ExtResource( 3 )]
|
||||
margin_left = 97.0
|
||||
margin_top = 37.0
|
||||
margin_right = 97.0
|
||||
margin_bottom = 37.0
|
||||
[connection signal="pressed" from="MenuRf/StartVbox/PlayBtn" to="." method="_on_PlayBtn_pressed"]
|
||||
[connection signal="pressed" from="MenuRf/StartVbox/CreditsBtn" to="." method="_on_CreditsBtn_pressed"]
|
||||
[connection signal="pressed" from="MenuRf/StartVbox/LicenseBtn" to="." method="_on_LicenseBtn_pressed"]
|
||||
[connection signal="pressed" from="MenuRf/ModePanel/PlayVbox/ModernBtn" to="." method="_on_ModernBtn_pressed"]
|
||||
[connection signal="mouse_entered" from="MenuRf/ModePanel/PlayVbox/ClassicBtn" to="." method="_on_ClassicBtn_mouse_entered"]
|
||||
[connection signal="mouse_exited" from="MenuRf/ModePanel/PlayVbox/ClassicBtn" to="." method="_on_ClassicBtn_mouse_exited"]
|
||||
[connection signal="pressed" from="MenuRf/ModePanel/PlayVbox/ClassicBtn" to="." method="_on_ClassicBtn_pressed"]
|
||||
|
|
|
@ -1,7 +1,6 @@
|
|||
[gd_scene load_steps=3 format=2]
|
||||
[gd_scene load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://src/WinDialogs.gd" type="Script" id=1]
|
||||
[ext_resource path="res://music/song.ogg" type="AudioStream" id=2]
|
||||
|
||||
[node name="WinDialogs" type="Control"]
|
||||
anchor_left = 0.5
|
||||
|
@ -10,9 +9,6 @@ anchor_right = 0.5
|
|||
anchor_bottom = 0.5
|
||||
script = ExtResource( 1 )
|
||||
|
||||
[node name="Music" type="AudioStreamPlayer" parent="."]
|
||||
stream = ExtResource( 2 )
|
||||
|
||||
[node name="PauseWin" type="PopupDialog" parent="."]
|
||||
pause_mode = 2
|
||||
editor/display_folded = true
|
||||
|
@ -58,7 +54,6 @@ margin_bottom = 86.0
|
|||
text = "KEXT"
|
||||
|
||||
[node name="CreditsWin" type="AcceptDialog" parent="."]
|
||||
editor/display_folded = true
|
||||
anchor_left = 0.5
|
||||
anchor_top = 0.5
|
||||
anchor_right = 0.5
|
||||
|
@ -73,13 +68,17 @@ resizable = true
|
|||
[node name="CreditsTxt" type="RichTextLabel" parent="CreditsWin"]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
margin_left = 8.0
|
||||
margin_top = 8.0
|
||||
margin_right = -8.0
|
||||
margin_bottom = -36.0
|
||||
focus_mode = 2
|
||||
bbcode_enabled = true
|
||||
bbcode_text = "[center]Created by
|
||||
Anthony Wilcox
|
||||
|
||||
Music by
|
||||
Augmentality
|
||||
Michael Carey
|
||||
|
||||
Clothing inspired by
|
||||
Megawolf77
|
||||
|
@ -93,7 +92,7 @@ text = "Created by
|
|||
Anthony Wilcox
|
||||
|
||||
Music by
|
||||
Augmentality
|
||||
Michael Carey
|
||||
|
||||
Clothing inspired by
|
||||
Megawolf77
|
||||
|
@ -107,7 +106,6 @@ selection_enabled = true
|
|||
|
||||
[node name="SettingsWin" type="AcceptDialog" parent="."]
|
||||
pause_mode = 2
|
||||
editor/display_folded = true
|
||||
anchor_left = 0.5
|
||||
anchor_top = 0.5
|
||||
anchor_right = 0.5
|
||||
|
@ -161,8 +159,9 @@ resizable = true
|
|||
anchor_left = 0.5
|
||||
anchor_right = 0.5
|
||||
margin_left = -194.0
|
||||
margin_top = 8.0
|
||||
margin_right = 194.0
|
||||
margin_bottom = 231.0
|
||||
margin_bottom = 239.0
|
||||
bbcode_enabled = true
|
||||
bbcode_text = "Nathan's Dress Up is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 3 of the License, or (at your option) any later version.
|
||||
|
||||
|
@ -194,7 +193,6 @@ Attribution-ShareAlike 4.0 International License.
|
|||
|
||||
You should have received a copy of the license along with this work.
|
||||
If not, see <http://creativecommons.org/licenses/by-sa/4.0/>."
|
||||
|
||||
[connection signal="pressed" from="PauseWin/PauseVbox/SettingsBtn" to="." method="_on_SettingsBtn_pressed"]
|
||||
[connection signal="pressed" from="PauseWin/PauseVbox/ResumeBtn" to="." method="_on_ResumeBtn_pressed"]
|
||||
[connection signal="pressed" from="PauseWin/PauseVbox/ExitBtn" to="." method="_on_ExitBtn_pressed"]
|
||||
|
|
121
project/sprites/atomic_shirt.svg
Normal file
|
@ -0,0 +1,121 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="22.489584mm"
|
||||
height="30.427084mm"
|
||||
viewBox="0 0 22.489584 30.427084"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="atomic_shirt.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.9195959"
|
||||
inkscape:cx="66.109402"
|
||||
inkscape:cy="50.591263"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-332.89496,-265.48813)"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Re-ink"
|
||||
transform="translate(-108.95163,-14.177885)"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="opacity:1;fill:#003333;fill-opacity:1;stroke:#000000;stroke-width:0.84448189px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 111.2673,16.788005 c -0.92152,4.271598 -1.10981,11.545021 -0.89428,15.292256 0.0769,1.336512 3.11298,0.146572 3.68236,1.350904 1.01203,2.140575 -1.07895,6.609747 -0.15778,9.186161 0.93166,2.605817 14.62642,1.077743 16.78107,-1.314586 0.81011,-0.899459 -1.46175,-2.48188 -0.78906,-6.214168 0.67269,-3.732287 0.63838,-17.327085 -1.84118,-18.354603 -2.47958,-1.027521 -2.20097,1.046255 -6.20744,-0.05405 -1.05993,-1.401319 -10.12597,-1.967194 -10.57366,0.108076 z"
|
||||
id="path827"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssszzcsc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.47876143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 114.37102,34.484873 114.5288,21.056867"
|
||||
id="path829"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.47876143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 127.1015,24.947476 c 0,0 -0.25634,4.651306 0.1052,6.700494 0.36149,2.049185 2.55769,6.774269 2.55769,6.774269"
|
||||
id="path833"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<g
|
||||
id="g886">
|
||||
<ellipse
|
||||
ry="0.96885204"
|
||||
rx="0.95214766"
|
||||
cy="28.401752"
|
||||
cx="121.36296"
|
||||
id="path848"
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.14999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<ellipse
|
||||
ry="5.8494253"
|
||||
rx="2.358217"
|
||||
cy="28.26812"
|
||||
cx="121.26273"
|
||||
id="path850"
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<ellipse
|
||||
transform="rotate(-43.01527)"
|
||||
ry="5.8494253"
|
||||
rx="2.3582172"
|
||||
cy="103.27947"
|
||||
cx="69.600197"
|
||||
id="path850-0"
|
||||
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<ellipse
|
||||
transform="rotate(46.575687)"
|
||||
ry="5.8494253"
|
||||
rx="2.3582172"
|
||||
cy="-68.645317"
|
||||
cx="103.66148"
|
||||
id="path850-0-1"
|
||||
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.7 KiB |
34
project/sprites/atomic_shirt.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/atomic_shirt.svg-b3ba00542391d52e77d38154f516ba81.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/atomic_shirt.svg"
|
||||
dest_files=[ "res://.import/atomic_shirt.svg-b3ba00542391d52e77d38154f516ba81.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
|
114
project/sprites/beat_up_jeans.svg
Normal file
|
@ -0,0 +1,114 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="28.045834mm"
|
||||
height="29.633333mm"
|
||||
viewBox="0 0 28.045834 29.633333"
|
||||
version="1.1"
|
||||
id="svg2007"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="beat_up_jeans.svg">
|
||||
<defs
|
||||
id="defs2001" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.9195959"
|
||||
inkscape:cx="60.844989"
|
||||
inkscape:cy="64.009018"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showguides="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata2004">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-78.959229,-134.01666)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Color"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:#6ba6ff;fill-opacity:1;stroke:none;stroke-width:3.77054548;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 97.818359,2.4609375 C 97.714007,2.4632366 97.608094,2.4804824 97.5,2.5136719 79.950735,7.9020374 50.416307,7.237218 38.572266,9.0898438 35.717113,9.5364422 23.347841,74.192538 2.7226562,103.76562 c -7.6714393,10.99958 38.3597578,6.20937 39.5996098,0.40626 4.876032,-22.82227 27.320312,-51.361333 27.320312,-51.361333 0,0 1.211544,31.964423 -1.427734,46.917969 -2.097419,11.883504 36.321806,7.441764 36.070316,-4.621094 -0.67418,-32.338756 0.10741,-92.7913255 -6.466801,-92.6464845 z m -60.5,62.5332035 c 3.450596,-0.05759 10.858829,8.631759 4.982422,13.039062 -0.913931,0.685448 -13.004543,-2.52144 -13.384765,-3.662109 -0.08862,-0.265852 2.027088,-5.375354 2.398437,-5.808594 1.244178,-1.77007 3.518073,-3.102442 5.681641,-3.535156 0.102494,-0.0205 0.210956,-0.03135 0.322265,-0.0332 z"
|
||||
transform="scale(0.26458333)"
|
||||
id="path2567-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Re-ink">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.9976235;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 0.7201694,27.454536 C 6.1772493,19.62999 9.4499316,2.5232009 10.205357,2.4050384 13.339093,1.9148645 21.153632,2.0908693 25.796875,0.66519761 27.627272,0.10318858 27.411054,16.471927 27.59226,25.164037 c 0.06654,3.191629 -10.098839,4.366766 -9.543897,1.22259 0.698309,-3.956459 0.377976,-12.413999 0.377976,-12.413999 0,0 -5.938677,7.551179 -7.228794,13.589569 -0.328044,1.535408 -12.5071103,2.802641 -10.4773756,-0.107661 z"
|
||||
id="path2567"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssssscss" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 18.426339,13.972628 c 0,0 1.617341,-2.392754 1.269607,-4.2556557 C 19.348213,7.8540704 19.040519,2.8667529 19.040519,2.8667529"
|
||||
id="path2571"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 19.695946,9.7169723 20.500613,2.7246489"
|
||||
id="path2573"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:#676767;fill-opacity:1;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 8.2727251,8.6461754 c 0,0 2.7605219,0.9937891 3.6076819,-0.064851 0.84716,-1.0586401 0.876732,-5.245691 0.876732,-5.245691 l -3.1378736,0.420475 z"
|
||||
id="path2569"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czccc" />
|
||||
<path
|
||||
style="fill:#989898;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 9.6192654,3.7561084 c 0,0 0.3544121,-0.9759023 0.7708376,-0.9833627 4.367213,-0.07824 10.825706,-0.9252221 15.468224,-1.6704345 0.369698,-0.059344 0.467965,1.0211734 0.234104,1.0879908 C 22.558728,3.1999315 9.6192654,3.7561084 9.6192654,3.7561084 Z"
|
||||
id="path2583"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 9.6192654,3.7561084 18.999166,3.2834424 26.326292,2.1234846"
|
||||
id="path2579"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.8 KiB |
34
project/sprites/beat_up_jeans.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/beat_up_jeans.svg-03d15b89036beb9eef0ad5d0514187f7.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/beat_up_jeans.svg"
|
||||
dest_files=[ "res://.import/beat_up_jeans.svg-03d15b89036beb9eef0ad5d0514187f7.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
|
199
project/sprites/blue_camo_jeans.svg
Normal file
|
@ -0,0 +1,199 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="28.045834mm"
|
||||
height="29.633333mm"
|
||||
viewBox="0 0 28.045834 29.633333"
|
||||
version="1.1"
|
||||
id="svg2007"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="blue_camo_jeans.svg">
|
||||
<defs
|
||||
id="defs2001" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6"
|
||||
inkscape:cx="67.738265"
|
||||
inkscape:cy="72.758833"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showguides="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:lockguides="true" />
|
||||
<metadata
|
||||
id="metadata2004">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Re-ink"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:#003366;fill-opacity:1;stroke:#000000;stroke-width:0.9976235;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 0.7201694,27.454536 C 6.1772493,19.62999 9.4499316,2.5232009 10.205357,2.4050384 13.339093,1.9148645 21.153632,2.0908693 25.796875,0.66519761 27.627272,0.10318858 27.411054,16.471927 27.59226,25.164037 c 0.06654,3.191629 -10.098839,4.366766 -9.543897,1.22259 0.698309,-3.956459 0.377976,-12.413999 0.377976,-12.413999 0,0 -5.938677,7.551179 -7.228794,13.589569 -0.328044,1.535408 -12.5071103,2.802641 -10.4773756,-0.107661 z"
|
||||
id="path2567"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssssscss" />
|
||||
<path
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.16287224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 16.470484,16.035996 c -1.222803,0.75645 -2.464166,-0.108141 -3.689404,0.146852 -1.003152,0.208774 0.117583,3.77469 1.874943,2.51747"
|
||||
id="path2614"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 18.427399,13.900863 c 0,0 1.115929,-2.081231 1.202639,-3.9103052 0.08671,-1.8290746 -0.589529,-6.9226402 -0.589529,-6.9226402"
|
||||
id="path2571"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 19.627919,9.5159193 20.501823,2.9925194"
|
||||
id="path2573"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 9.5548856,8.7194926 C 8.7305392,14.948757 19.548317,14.654826 15.334589,9.3876666 14.556928,8.4155909 13.98844,7.6940682 12.828937,7.4499625"
|
||||
id="path2612"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 8.2727251,8.6461754 c 0,0 3.4286959,-0.075289 4.2758559,-1.1339288 0.84716,-1.0586401 0.241967,-3.842526 0.241967,-3.842526 l -3.1712826,0.086388 z"
|
||||
id="path2569"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czccc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 9.6192654,3.7561084 18.999166,3.2834424 26.326292,2.1234846"
|
||||
id="path2579"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 17.378461,10.423336 C 18.358853,9.5255596 20.263676,8.8393651 21.548606,9.4878927"
|
||||
id="path2598"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 18.37478,11.191736 c -1.268353,0.549435 -2.308696,1.415572 -3.474504,2.071338"
|
||||
id="path2600"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 20.713388,10.256292 c 0.114075,1.271813 0.770932,2.519239 1.135896,3.674956"
|
||||
id="path2602"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 20.112032,12.661718 c 0.198181,0.379098 0.133634,0.857634 0.133634,1.302939"
|
||||
id="path2610"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 7.9178596,11.626049 c 0.5494409,0.355012 -0.068162,1.434333 0.233861,1.937704 0.3749281,0.62488 2.1547794,0.04998 2.5056514,0.634765 1.766519,2.944198 -2.8505017,2.980279 -4.3097208,2.104747"
|
||||
id="path2616"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 26.593318,5.6458931 c -0.60844,-0.024347 -1.962783,0.1128086 -2.238383,0.8018087 -0.470092,1.1752313 0.412183,1.8266262 0.835218,2.6726951 0.997922,1.9958451 -2.894534,5.5730161 1.804068,5.3119821"
|
||||
id="path2618"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cssc" />
|
||||
<path
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 18.976136,17.171891 c 1.274456,-0.196445 2.381553,-0.316593 3.407687,0.367496 0.537516,0.358344 2.923452,1.185894 3.507912,0.835217 0.360982,-0.216589 0.991069,-1.189224 1.002261,-0.7684 0.120692,4.538158 0.820713,2.816793 -4.810852,1.971113 -1.100592,-0.165274 -2.590903,1.43981 -3.006782,0.534539 0,0 -0.270632,-1.974328 -0.100226,-2.939965 z"
|
||||
id="path2620"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cscsssc" />
|
||||
<path
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 5.6794774,18.274379 c 1.9041041,-0.300696 1.5167695,1.017868 2.5056519,2.171564 0.4997965,0.583096 1.6614499,0.325103 2.0713387,0.734991 0.119753,0.119753 0.07008,1.005778 0,1.169304 -1.1679449,2.725205 -4.2555834,0.764116 -5.9801555,-0.467721"
|
||||
id="path2622"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csscc" />
|
||||
<path
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 3.0067821,24.555212 c 5.2682351,2.02902 0.5412926,5.21361 -1.6184389,2.932734"
|
||||
id="path2630"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 2.4722431,27.261317 c 2.4690673,0.273878 4.4470478,-0.03985 6.6483295,-0.734991"
|
||||
id="path2624"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 27.061041,25.022933 c -5.126407,-2.816767 -5.239849,-1.161859 -5.879931,2.672695 2.302396,0.345091 5.634272,-0.584621 5.879931,-2.672695 z"
|
||||
id="path2632"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 19.510675,26.259055 c 2.42248,0.323735 4.741824,0.77491 6.748556,-0.801809"
|
||||
id="path2626"
|
||||
inkscape:connector-curvature="0" />
|
||||
<g
|
||||
id="g2657">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2604"
|
||||
d="m 18.999166,3.2834423 c -0.04805,1.5545165 -0.562287,2.9032809 -1.459603,4.0997026"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<ellipse
|
||||
ry="0.28397387"
|
||||
rx="0.25056517"
|
||||
cy="7.3664403"
|
||||
cx="17.472746"
|
||||
id="path2634"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31317234;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g2653">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
id="path2606"
|
||||
d="m 20.501823,2.9925195 c 0.561916,1.1250721 1.083725,2.4049651 1.848591,3.3883647"
|
||||
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||
<ellipse
|
||||
ry="0.28397387"
|
||||
rx="0.25056517"
|
||||
cy="6.3808842"
|
||||
cx="22.367119"
|
||||
id="path2634-8"
|
||||
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31317234;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 10 KiB |
34
project/sprites/blue_camo_jeans.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/blue_camo_jeans.svg-41f698e822667bb843272733405fda26.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/blue_camo_jeans.svg"
|
||||
dest_files=[ "res://.import/blue_camo_jeans.svg-41f698e822667bb843272733405fda26.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
|
95
project/sprites/briefs.svg
Normal file
|
@ -0,0 +1,95 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="svg865"
|
||||
width="106"
|
||||
height="112"
|
||||
viewBox="0 0 106 112"
|
||||
sodipodi:docname="briefs.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata871">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs869" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
id="namedview867"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="11.9198"
|
||||
inkscape:cx="70.364745"
|
||||
inkscape:cy="79.295955"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer1" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
inkscape:label="Re-ink">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 37.135593,14.118644 C 43.027868,20.752407 91.487239,18.48988 100.72881,14 c 1.54442,-0.750333 0.62094,2.781374 0.71187,5.101695 0.0909,2.320321 -5.163506,0.628407 -7.118646,2.194915 -2.49523,1.999242 -10.869289,30.780278 -21.59322,23.669492 C 61.588691,37.579349 66.637862,23.81384 35.830509,21.59322 33.307836,21.411384 35.455973,12.227659 37.135593,14.118644 Z"
|
||||
id="path1419-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sszssss" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 101.73729,15.423728 c 0,0 -9.226533,5.073241 -25.271188,5.872882 C 60.421446,22.09625 50.355865,20.713159 43.601695,19.161017 36.847525,17.608875 35.59322,15.898305 35.59322,15.898305"
|
||||
id="path1421-5"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czzc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.398305,42.118644 c 0,0 4.375912,-5.632741 5.457627,-8.957627 1.196948,-3.67908 0.949153,-11.567797 0.949153,-11.567797"
|
||||
id="path1431-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 73.855932,33.161017 c 0,0 1.879553,4.145002 1.838983,6.347457 -0.0395,2.144456 -2.016949,6.11017 -2.016949,6.11017"
|
||||
id="path1433-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 83.228814,42.652543 c 0,0 3.157166,-12.834443 4.152542,-18.805086 0.196074,-1.176126 0.355932,-3.559322 0.355932,-3.559322"
|
||||
id="path1435-3"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 82.457627,21 c 0,0 1.127312,2.955857 1.898305,4.330508 0.507164,0.904254 1.957627,3.262712 1.957627,3.262712"
|
||||
id="path1437-3"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.3 KiB |
34
project/sprites/briefs.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/briefs.svg-9a7fc83a2615d5060d598e416767b736.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/briefs.svg"
|
||||
dest_files=[ "res://.import/briefs.svg-9a7fc83a2615d5060d598e416767b736.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
|
199
project/sprites/character_base.svg
Normal file
|
@ -0,0 +1,199 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="43.391666mm"
|
||||
height="86.518753mm"
|
||||
viewBox="0 0 43.391666 86.518753"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="character_base.svg">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.8"
|
||||
inkscape:cx="86.349322"
|
||||
inkscape:cy="146.4697"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer3"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:pagecheckerboard="true"
|
||||
showguides="true"
|
||||
inkscape:window-width="958"
|
||||
inkscape:window-height="991"
|
||||
inkscape:window-x="-8"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:lockguides="false" />
|
||||
<metadata
|
||||
id="metadata5">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-76.57798,-103.3061)"
|
||||
style="display:inline" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Color">
|
||||
<path
|
||||
style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 12.756696,20.042186 c -3.0330485,3.485978 -6.9287479,8.842867 -10.6778266,9.780135 5.411336,2.216856 13.7737856,1.25077 18.6153276,-3.590773 -1.673498,-3.036966 -4.542199,-5.822302 -7.937501,-6.189362 z"
|
||||
id="path864"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 34.726561,20.939881 c 1.424506,0.409095 2.905617,0.519717 4.441219,0.519717 -0.631436,0.891699 -1.802839,1.33673 -2.834817,1.795387 0.679627,2.000634 1.918615,4.085352 2.55134,6.236608 -0.196308,-1.699022 -1.726382,-2.566554 -2.976563,-3.449034 -1.289203,1.845106 -2.413179,3.349977 -4.441222,4.110492 -0.02396,-1.807178 -0.561611,-3.490928 -2.102492,-4.464845 -1.266898,0.154353 -2.719548,0.200395 -2.62221,1.063057 0.225306,1.996779 1.707495,3.473391 3.168393,4.548419 1.635877,2.807358 2.473664,10.092655 1.22558,18.886106 0.123737,9.510183 1.737466,16.423656 1.039433,27.119792 5.989076,7.622458 -5.466142,9.257207 -8.457219,1.795388 0,-4.946536 0.06144,-10.808711 0.04725,-15.73326 -3.051778,4.577667 -6.271659,11.54185 -7.843006,17.103423 6.066786,9.10018 -9.274496,5.51039 -10.15811,0.18899 5.089364,-6.263833 6.523881,-16.184507 8.976934,-23.718007 -4.857104,0.28571 -5.3976359,-3.203427 -2.267857,-6.756323 0,-5.167442 -0.342243,-10.519109 0.47247,-15.449778 0.254528,-4.326972 4.855698,-2.933067 7.181548,-4.677457 2.338792,-1.754093 0.344395,-5.168508 -2.315104,-4.346726 -1.654478,0.194645 -1.540993,1.586536 -1.417411,3.023812 -1.143466,-0.96755 -1.993973,-1.935806 -2.315104,-3.449035 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176 8.399753,-4.993925 13.806413,-4.295882 18.993302,-0.425223 z"
|
||||
id="path831-5"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccsccccccccccscccccccc" />
|
||||
<path
|
||||
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:1.42187285;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 31.513766,4.4697399 33.171594,0.92059932 36.191219,5.9184807 Z"
|
||||
id="path868-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccc" />
|
||||
<path
|
||||
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 15.733259,21.365104 c 8.031531,-1.988559 12.40585,-4.181396 18.993303,-0.425223 4.457472,-16.6670615 -22.644325,-7.978795 -21.296268,-1.23851 0.0953,0.476477 1.928934,1.360996 2.302965,1.663733"
|
||||
id="path845"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#6699cc;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12.756695,20.042186 C 18.416439,16.062161 25.70522,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988082 29.207101,0.4402425 18.893463,6.8361942 13.370906,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
|
||||
id="path833-7"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 16.725446,36.81488 c 0.260421,-2.556769 3.987942,-6.623181 3.987942,-6.623181 0,0 -4.511124,-0.378288 -5.879929,1.069079 -4.368124,4.618829 -2.360245,18.925011 -2.360245,18.925011 0,0 -2.406213,2.614718 -1.982885,4.060169 0.59027,2.01547 3.806676,4.399895 4.250742,2.696156 0.444066,-1.703739 1.28661,-13.276693 1.984375,-20.127234 z"
|
||||
id="path847"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="scscszs" />
|
||||
<path
|
||||
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 27.061041,29.256257 c 0,0 2.289171,4.408208 2.043123,9.165021 -0.246048,4.756813 2.173364,14.126862 2.173364,14.126862 0,0 2.178654,-16.525137 -1.476976,-21.955536 -0.567383,-0.842841 -2.739511,-1.336347 -2.739511,-1.336347 z"
|
||||
id="path849"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czcsc" />
|
||||
<path
|
||||
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 26.44683,29.067269 c 1.452313,2.918211 2.197082,6.224576 2.137617,9.354009 -0.07867,4.140228 1.79539,12.425968 1.79539,12.425968 0.739806,0.173775 1.322916,-11.953493 1.322916,-11.953493 l -1.792544,-7.594071 c 0,0 -4.132854,-3.577626 -3.463379,-2.232413 z"
|
||||
id="path853"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssccs" />
|
||||
<path
|
||||
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 15.875,51.177978 c -0.52762,2.533268 5.841867,9.630703 8.315476,11.103052 4.741466,-1.55146 7.056167,-4.214834 7.606771,-7.654018 0.550604,-3.439184 0.377976,22.678568 0.377976,22.678568 0,0 2.67882,4.233216 0.566965,5.76414 -2.111855,1.530924 -7.638158,-0.210531 -9.024185,-3.968752 -1.386027,-3.758221 0.472473,-16.819938 0.472473,-16.819938 l -8.268229,18.1901 c 0,0 2.807966,4.177084 0.330729,5.764141 -2.477237,1.587057 -11.6490399,-3.641913 -10.488839,-5.57515 2.8840394,-4.80566 7.654018,-18.520832 7.654018,-18.520832 0,0 2.984465,-13.494579 2.456845,-10.961311 z"
|
||||
id="path857"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="zczczzcczscz" />
|
||||
<path
|
||||
style="fill:#333333;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="M 24.993675,13.852831 C 23.111329,11.112846 22.776665,7.1008422 24.899181,4.5924141 28.443308,3.5516118 32.34615,3.7638575 35.151786,5.8680839 34.290793,8.2025937 31.848954,10.704232 32.978422,13.285862"
|
||||
id="path5043"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 32.97842,13.285862 c -1.622684,-1.035005 -4.693573,-0.02406 -6.709075,0.0945"
|
||||
id="path5045"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 6.1354861,0.8014286 2.416225,12.2009554 c 0,0 4.4513719,9.762022 4.2049839,7.039802 C 11.698277,8.3482626 18.952931,7.8743621 18.952931,7.8743621 L 10.961309,2.4662981 6.1354861,0.8014286"
|
||||
id="path5057"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccsccc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.50904238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 15.537908,8.9384397 C 13.980201,6.756896 10.705056,5.0717367 8.3808294,3.6521391 8.0327779,4.6634621 8.1572432,5.7312218 8.0376818,6.7672806 8.4787557,6.6562752 8.5984797,6.227326 8.8710403,5.9648957 8.9919797,7.3299488 9.1194496,8.5491118 9.7534199,9.6936258 10.049714,9.24812 10.142439,8.5379754 10.341673,7.9944576 c 0.285982,1.3580005 0.172484,2.8610974 0.392168,4.2007214 0.248875,-0.839177 0.348466,-1.693489 0.588254,-2.5015532 1.028074,0.8901012 1.251834,2.2544372 1.715738,3.4455352 0.08118,-1.814112 1.504476,-2.893544 2.500075,-4.2007213 z"
|
||||
id="path5059"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Re-ink"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 31.324776,3.8055155 c 0,0 1.628858,-3.7746833 2.315104,-2.93216171 2.908313,3.57061041 2.551339,5.04512691 2.551339,5.04512691"
|
||||
id="path868"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csc" />
|
||||
<path
|
||||
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 34.726562,20.939881 c 1.424506,0.409095 2.905615,0.519717 4.441219,0.519717 -0.631435,0.891699 -1.802841,1.33673 -2.83482,1.795387 0.679627,2.000634 1.918617,4.085351 2.55134,6.236607 -0.196308,-1.69902 -1.726382,-2.566552 -2.976563,-3.449033 -1.289202,1.845105 -2.41318,3.349976 -4.44122,4.110491 -0.02396,-1.807178 -0.561611,-3.490926 -2.102492,-4.464844 -1.266898,0.154353 -2.347681,0.239471 -2.62221,1.063059 -0.342642,1.027925 -0.123795,3.337174 2.207894,3.621326 1.911015,0.232886 3.434163,11.019747 2.186079,19.813197 1.05918,9.510183 1.737464,16.423655 1.039434,27.119792 5.989074,7.622458 -5.466143,9.257205 -8.45722,1.795387 0,-4.946535 0.06144,-10.808709 0.04725,-15.733259 -3.051778,4.577668 -6.271659,11.541849 -7.843006,17.103422 6.066786,9.10018 -9.2744956,5.510391 -10.1581101,0.188989 5.0893641,-6.263833 6.5238811,-16.184506 8.9769341,-23.718005 -4.8571037,0.285712 -5.3976359,-3.203428 -2.267857,-6.756325 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 4.655246,-4.603503 7.181548,-4.677456 2.922238,-0.08554 0.344395,-5.168508 -2.315104,-4.346726 -1.654478,0.194645 -1.540993,1.586537 -1.417411,3.02381 -1.143466,-0.967549 -1.993973,-1.935805 -2.315104,-3.449033 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176"
|
||||
id="path831"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccsscccccccccsccccccc" />
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12.756696,20.042186 C 18.41644,16.062161 25.705221,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988086 29.207102,0.4402425 18.893464,6.8361949 13.370907,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
|
||||
id="path833"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#ff99cc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 25.088169,19.569717 c 1.190156,-0.763595 2.367736,-0.865038 3.449032,0 -0.218392,0.862046 -0.809812,1.244368 -1.464656,1.653646 -0.887893,-0.606787 -1.473948,-1.058147 -1.984376,-1.653646 z"
|
||||
id="path852"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 16.394717,36.578645 C 14.7459,42.453258 16.671971,54.08376 14.741071,56.942114"
|
||||
id="path856"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 29.104165,38.421279 c -0.128659,3.930449 0.525574,10.419337 2.173363,14.126861"
|
||||
id="path858"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:#954b02;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 36.191221,6.1988083 c 1.475475,0.093714 2.749367,-0.7672527 3.685267,-1.937128 -0.984779,1.0141105 -1.765835,2.2334628 -2.504093,3.3072918 2.133612,1.7021153 3.912086,3.8270629 5.24442,6.0476189 -0.586645,-1.102272 -1.544523,-1.49074 -2.456845,-1.889881 1.783386,2.334899 2.199066,5.602939 2.785607,8.389009 C 42.57481,18.1 41.656138,15.640345 39.970982,14.797767 c 1.672285,4.035542 -5.032759,5.990928 -5.24442,6.142114 0.232289,-2.788186 -0.103225,-5.882573 -1.74814,-7.654019 -0.337072,-3.356912 1.47948,-6.5602442 3.212799,-7.0870537 z"
|
||||
id="path860"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cccccccccc" />
|
||||
<path
|
||||
style="fill:#6699cc;fill-opacity:1;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 23.765253,4.4979163 23.623512,2.4662944 26.836309,2.4190474 V 3.836458 Z"
|
||||
id="path870"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1.18375635;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 12.757044,20.045314 C 8.5429472,14.783337 6.1354862,7.5554427 6.1354862,0.80142861 11.351958,1.2722088 15.093613,5.0085232 18.952931,7.8743621"
|
||||
id="path5047"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 15 KiB |
34
project/sprites/character_base.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/character_base.svg-5ea6954c66ca6e666096a6a63d2174dc.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/character_base.svg"
|
||||
dest_files=[ "res://.import/character_base.svg-5ea6954c66ca6e666096a6a63d2174dc.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
|
149
project/sprites/dj_shorts.svg
Normal file
|
@ -0,0 +1,149 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="svg815"
|
||||
width="106"
|
||||
height="112"
|
||||
viewBox="0 0 106 112"
|
||||
sodipodi:docname="dj_shorts.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata821">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs819" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
id="namedview817"
|
||||
showgrid="false"
|
||||
inkscape:zoom="10.202541"
|
||||
inkscape:cx="63.855679"
|
||||
inkscape:cy="78.557618"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer3"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
inkscape:label="Original"
|
||||
transform="translate(0.60396188,-1.5247525)"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Color">
|
||||
<path
|
||||
style="opacity:1;fill:#0000ff;fill-opacity:1;stroke:none;stroke-width:2.64566922;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 34.4447,14.931388 C 29.720644,11.370567 13.57583,72.83923 11.485249,83.86308 c -0.796543,4.20025 37.728541,13.054932 42.989999,0.275532 2.572162,-6.24744 13.861385,-39.089108 13.861385,-39.089108 0,0 -10.724331,38.354248 -5.128712,43.663368 4.527582,4.29576 34.983259,-2.41573 36.732673,-9.42574 C 102.66076,68.387252 96.65377,16.078352 95.643564,8.1782169 95.385101,6.1569519 92.505753,3.7763701 91.200954,5.3415589 81.345543,17.163745 43.301389,21.607237 34.4447,14.931388 Z"
|
||||
id="path842-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssscsssss" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 28.835569,26.074735 c 7.560103,23.666394 37.20214,24.101791 37.20214,24.101791 l -2.703816,11.830238 c 0,0 -37.056397,-7.153127 -38.476332,-23.905761 -0.356605,-4.207284 1.637558,-19.352888 3.978008,-12.026268 z"
|
||||
id="path854"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccss" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 24.254346,44.833977 c 7.560103,23.666394 36.516036,20.45146 36.516036,20.45146 l -2.84243,11.55301 c 0,0 -32.610284,-6.935031 -37.790228,-20.25543 -1.504021,-3.867641 1.776172,-19.07566 4.116622,-11.74904 z"
|
||||
id="path854-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sccas" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 67.50495,49.623762 c 0,0 26.680952,-6.998162 31.188119,-15.663366 1.949711,-3.748386 0.587416,4.47474 0.831683,9.148514 0.318216,6.08876 -34.099009,17.603961 -34.099009,17.603961 z"
|
||||
id="path938"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csscc" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.06605935px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 64.332489,67.435529 c 0,0 29.511212,-7.404035 35.44475,-15.663366 2.468641,-3.436279 -0.19874,6.097672 1.001951,10.257425 1.94564,6.740614 -38.809683,14.554456 -38.809683,14.554456 z"
|
||||
id="path938-9"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csscc" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Re-ink"
|
||||
style="display:inline">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2.5999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 34.052641,14.049255 C 30.426972,9.3747839 13.57583,72.349155 11.485249,83.373002 10.688706,87.573255 49.21379,96.918009 54.475248,84.138614 57.04741,77.891169 68.336633,45.049505 68.336633,45.049505 c 0,0 -10.724331,38.354249 -5.128712,43.663366 4.527582,4.295765 34.983259,-2.415733 36.732673,-9.425742 C 102.66076,68.387255 96.66427,16.077003 95.643564,8.1782178 95.091057,3.9026122 91.285705,4.1044003 85.418081,9.5561956 79.550457,15.007991 40.066901,21.803268 34.052641,14.049255 Z"
|
||||
id="path842"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssscssszs" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2.5999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 67.504951,47.128713 c 0,0 3.999326,-8.830457 4.158415,-15.386139 0.159089,-6.555682 -2.495049,-17.188119 -2.495049,-17.188119"
|
||||
id="path957"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<ellipse
|
||||
style="opacity:1;fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.51181102;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="path852"
|
||||
cx="66.488861"
|
||||
cy="21.361532"
|
||||
rx="7.6451545"
|
||||
ry="5.6358509" />
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.51181102;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 27.235088,27.527733 C 18.253381,26.665769 5.4320913,49.597184 18.614856,53.99144 c 12.991966,4.330655 43.94592,-17.067986 47.740585,-22.315637 -1.835821,-2.596141 -5.694488,-6.6466 -7.762376,-9.009901 -3.875759,2.600135 -28.365736,21.34457 -34.104781,18.475047 -2.028226,-1.014113 1.80693,-11.921442 2.746804,-13.613216 z"
|
||||
id="path844"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccsc" />
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:1.5186137;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 58.707896,21.043134 c -6.86408,14.982581 55.765564,33.20927 45.638714,-5.750085 -1.54752,-7.1735659 -7.430997,-8.3143675 -9.836898,-9.3740972 -0.637929,4.6451152 3.216803,11.5036772 2.634997,17.5760972 -0.581806,6.07242 -22.848135,10.178732 -23.09001,-1.41231 -0.331483,3.253131 -6.569759,5.839391 -9.542442,4.366336 -1.904124,-0.943552 -4.487512,-3.937729 -5.804361,-5.405941 z"
|
||||
id="path850"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ccczcsc" />
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 45.917706,17.152095 c -2.80724,-0.03648 -14.452359,2.531073 -14.452359,2.531073 l -1.247525,2.633664 c 0,0 15.001373,-3.95413 18.749389,-4.333054 3.748016,-0.378924 -0.242265,-0.795202 -3.049505,-0.831683 z"
|
||||
id="path959"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="zcczz" />
|
||||
<path
|
||||
style="fill:#ff0000;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 84.772232,11.287132 c 2.80724,-0.03648 11.021841,5.863576 11.021841,5.863576 l 1.247525,2.633664 c 0,0 -11.570855,-7.286633 -15.318871,-7.665557 -3.748016,-0.378925 0.242265,-0.795203 3.049505,-0.831683 z"
|
||||
id="path959-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="zcczz" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 8.2 KiB |
34
project/sprites/dj_shorts.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/dj_shorts.svg-e17b87622cd4d462498c5bb9deda7dbb.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/dj_shorts.svg"
|
||||
dest_files=[ "res://.import/dj_shorts.svg-e17b87622cd4d462498c5bb9deda7dbb.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
|
97
project/sprites/dressup_wardrobe.svg
Normal file
|
@ -0,0 +1,97 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="svg831"
|
||||
width="680.49805"
|
||||
height="524.09497"
|
||||
viewBox="0 0 680.49805 524.09497"
|
||||
sodipodi:docname="dressup_wardrobe.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata837">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs835" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
id="namedview833"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="1.2666201"
|
||||
inkscape:cx="422.24899"
|
||||
inkscape:cy="303.56914"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer2"
|
||||
showguides="true"
|
||||
inkscape:guide-bbox="true" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
inkscape:label="Original"
|
||||
transform="translate(757.24154,125.43664)"
|
||||
style="display:inline"
|
||||
sodipodi:insensitive="true" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Re-Ink"
|
||||
transform="translate(54.690699,-1.847259)">
|
||||
<rect
|
||||
style="opacity:1;fill:#0033ff;fill-opacity:1;stroke:#000000;stroke-width:4.1780057;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1405"
|
||||
width="676.32007"
|
||||
height="519.91699"
|
||||
x="-52.601696"
|
||||
y="3.9362619"
|
||||
ry="31.017717" />
|
||||
<rect
|
||||
style="opacity:1;fill:#0099ff;fill-opacity:1;stroke:#000000;stroke-width:3.15624547;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1403"
|
||||
width="660.21387"
|
||||
height="482.91278"
|
||||
x="-44.312817"
|
||||
y="27.699308"
|
||||
ry="24.818422" />
|
||||
<rect
|
||||
style="opacity:1;fill:#1e3656;fill-opacity:1;stroke:#000000;stroke-width:4.14822292;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="rect1401"
|
||||
width="612.74677"
|
||||
height="33.212002"
|
||||
x="-20.5812"
|
||||
y="16.057602"
|
||||
ry="9.6562872" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
34
project/sprites/dressup_wardrobe.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/dressup_wardrobe.svg-045acf6c9249ae39f39347a2897230a1.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/dressup_wardrobe.svg"
|
||||
dest_files=[ "res://.import/dressup_wardrobe.svg-045acf6c9249ae39f39347a2897230a1.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
|
102
project/sprites/fundosi.svg
Normal file
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="svg1568"
|
||||
width="106"
|
||||
height="112"
|
||||
viewBox="0 0 106 112"
|
||||
sodipodi:docname="fundosi.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata1574">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs1572" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
id="namedview1570"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="11.9198"
|
||||
inkscape:cx="77.040608"
|
||||
inkscape:cy="75.892047"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer3"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer4"
|
||||
inkscape:label="Color"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:#005500;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 55.95731,16.444706 11.99685,27.349452 15.604289,-10.067283 2.013456,-3.523549 -0.922834,-5.453112 4.949748,-9.060555 0.41947,-1.090622 -14.429772,3.020185 -19.631207,-1.174516"
|
||||
id="path5859"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer3"
|
||||
inkscape:label="Re-ink"
|
||||
transform="translate(197.74576,104.88136)">
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -162.51027,-90.450111 c 0,0 25.48557,3.882332 38.25568,3.104079 9.28979,-0.566151 27.34945,-5.6209 27.34945,-5.6209"
|
||||
id="path2137"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cac" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m -106.63685,-90.617899 c 0,0 -7.16482,7.287267 -6.29205,13.255256 0.87277,5.967989 -0.23772,6.332477 -16.10765,15.855971 -2.73984,0.292841 -12.7519,-26.929982 -12.7519,-26.929982 l -0.75504,-3.439655"
|
||||
id="path2139"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cczc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m -129.87549,-77.698219 c 1.73092,-1.189006 3.51247,-1.655985 5.78868,-1.845669"
|
||||
id="path2141"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m -110.57987,-90.030641 0.33558,-2.013457"
|
||||
id="path2143"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m -131.38559,-64.610751 0.75505,8.808872 4.86585,-7.71825 -3.27186,2.013457 z"
|
||||
id="path2145"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.9 KiB |
34
project/sprites/fundosi.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/fundosi.svg-faa9e69901a505e92e5b3e529aca7f92.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/fundosi.svg"
|
||||
dest_files=[ "res://.import/fundosi.svg-faa9e69901a505e92e5b3e529aca7f92.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
|
102
project/sprites/jeans.svg
Normal file
|
@ -0,0 +1,102 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="28.045834mm"
|
||||
height="29.633333mm"
|
||||
viewBox="0 0 28.045834 29.633333"
|
||||
version="1.1"
|
||||
id="svg2007"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="jeans.svg">
|
||||
<defs
|
||||
id="defs2001" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.9195959"
|
||||
inkscape:cx="30.540413"
|
||||
inkscape:cy="71.8377"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showguides="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata2004">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-78.959229,-134.01666)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Re-ink">
|
||||
<path
|
||||
style="fill:#0066ff;fill-opacity:1;stroke:#000000;stroke-width:0.9976235;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 0.7201694,27.454536 C 6.1772493,19.62999 9.4499316,2.5232009 10.205357,2.4050384 13.339093,1.9148645 21.153632,2.0908693 25.796875,0.66519761 27.627272,0.10318858 27.411054,16.471927 27.59226,25.164037 c 0.06654,3.191629 -10.098839,4.366766 -9.543897,1.22259 0.698309,-3.956459 0.377976,-12.413999 0.377976,-12.413999 0,0 -5.938677,7.551179 -7.228794,13.589569 -0.328044,1.535408 -12.5071103,2.802641 -10.4773756,-0.107661 z"
|
||||
id="path2567"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssssscss" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 18.426339,13.972628 c 0,0 1.617341,-2.392754 1.269607,-4.2556557 C 19.348213,7.8540704 19.040519,2.8667529 19.040519,2.8667529"
|
||||
id="path2571"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 19.695946,9.7169723 20.500613,2.7246489"
|
||||
id="path2573"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="cc" />
|
||||
<path
|
||||
style="fill:#999999;fill-opacity:1;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 8.2727251,8.6461754 c 0,0 2.7605219,0.9937891 3.6076819,-0.064851 0.84716,-1.0586401 0.876732,-5.245691 0.876732,-5.245691 L 9.6192654,3.7561084 Z"
|
||||
id="path2569"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czccc" />
|
||||
<path
|
||||
style="fill:#d4d4d4;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 9.6192654,3.7561084 c 0,0 0.3544121,-0.9759023 0.7708376,-0.9833627 4.367213,-0.07824 10.825706,-0.9252221 15.468224,-1.6704345 0.369698,-0.059344 0.467965,1.0211734 0.234104,1.0879908 C 22.558728,3.1999315 9.6192654,3.7561084 9.6192654,3.7561084 Z"
|
||||
id="path2583"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csssc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 9.6192654,3.7561084 18.999166,3.2834424 26.326292,2.1234846"
|
||||
id="path2579"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.6 KiB |
34
project/sprites/jeans.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/jeans.svg-7d67c27e9800a7e7f837e3f29c2dd43f.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/jeans.svg"
|
||||
dest_files=[ "res://.import/jeans.svg-7d67c27e9800a7e7f837e3f29c2dd43f.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
|
91
project/sprites/owo_censor.svg
Normal file
|
@ -0,0 +1,91 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="svg5861"
|
||||
width="106"
|
||||
height="112"
|
||||
viewBox="0 0 106 112"
|
||||
sodipodi:docname="owo_censor.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata5867">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs5865" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
id="namedview5863"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="11.9198"
|
||||
inkscape:cx="59.544802"
|
||||
inkscape:cy="77.188526"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer5" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer5"
|
||||
inkscape:label="Re-ink"
|
||||
transform="translate(-32.423729,-45.084747)">
|
||||
<path
|
||||
style="fill:#000000;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 59.437605,65.304684 c -0.678597,3.381977 -5.604293,23.15058 -4.278595,27.09777 1.325698,3.94719 30.286204,2.637458 45.47056,2.768503 12.20372,0.105321 36.37387,3.074763 36.5778,-1.593987 0.28901,-6.616554 -1.90632,-19.361934 0.83894,-28.440074 1.29465,-4.281223 -23.6464,1.523975 -35.48718,1.593986 -14.38145,0.08503 -42.442928,-4.808175 -43.121525,-1.426198 z"
|
||||
id="path6430"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="zzssssz" />
|
||||
<g
|
||||
aria-label="OwO"
|
||||
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
|
||||
id="text6445"
|
||||
transform="matrix(0.38088161,0,0,0.39176487,47.846968,54.981177)">
|
||||
<path
|
||||
d="m 96.914116,83.107109 q -5.507813,0 -9.335938,-3.300781 -4.0625,-3.515625 -4.0625,-9.0625 0,-6.757813 4.003907,-12.285156 4.472656,-6.132813 11.152343,-6.132813 6.425782,0 9.550782,2.890625 3.26172,3.007813 3.26172,9.492188 0,6.757812 -3.67188,12.1875 -4.21875,6.210937 -10.898434,6.210937 z m 1.757812,-26.777344 q -4.785156,0 -8.105468,4.765625 -3.066407,4.375 -3.066407,9.648438 0,3.769531 2.792969,6.132812 2.675781,2.226563 6.621094,2.226563 4.746094,0 7.832034,-4.785156 2.7539,-4.277344 2.7539,-9.609375 0,-4.667969 -2.08984,-6.5625 -1.99219,-1.816407 -6.738282,-1.816407 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';fill:#ffffff"
|
||||
id="path6447"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 139.29693,64.435234 q -1.52344,6.367188 -3.98438,14.394531 -0.54687,1.777344 -1.8164,3.652344 -0.6836,1.035156 -1.85547,1.015625 -2.12891,-0.03906 -3.32031,-5.292969 -0.39063,-1.679687 -0.80079,-4.570312 l -0.64453,-4.355469 -1.60156,3.730469 -2.96875,8.066406 q -0.25391,0.742188 -0.74219,1.132813 -0.58593,1.132812 -1.875,1.171875 -1.48437,0.05859 -2.87109,-5.820313 -0.70313,-3.027344 -1.40625,-8.203125 l -0.46875,-2.929687 q -0.25391,-1.757813 -0.25391,-2.949219 0,-0.820313 0.56641,-1.347656 0.58594,-0.546875 1.40625,-0.546875 1.48437,0 1.83594,1.621093 0.2539,1.152344 0.41015,2.851563 l 0.29297,2.871094 1.15235,8.769531 q 2.16796,-6.015625 4.49218,-13.867188 0.64453,-2.167968 2.2461,-2.167968 1.54297,0 2.08984,2.421875 0.50781,2.285156 1.26953,7.03125 0.78125,4.921875 1.38672,7.675781 l 1.42578,-5.3125 2.51953,-10.644531 q 0.29297,-1.191407 1.67969,-1.191407 0.82031,0 1.42578,0.566407 0.60547,0.546875 0.60547,1.328125 0,0.09766 -0.19531,0.898437 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';fill:#ffffff"
|
||||
id="path6449"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 156.21099,83.107109 q -5.50781,0 -9.33594,-3.300781 -4.0625,-3.515625 -4.0625,-9.0625 0,-6.757813 4.00391,-12.285156 4.47266,-6.132813 11.15234,-6.132813 6.42578,0 9.55078,2.890625 3.26172,3.007813 3.26172,9.492188 0,6.757812 -3.67187,12.1875 -4.21875,6.210937 -10.89844,6.210937 z m 1.75781,-26.777344 q -4.78515,0 -8.10547,4.765625 -3.0664,4.375 -3.0664,9.648438 0,3.769531 2.79297,6.132812 2.67578,2.226563 6.62109,2.226563 4.74609,0 7.83203,-4.785156 2.75391,-4.277344 2.75391,-9.609375 0,-4.667969 -2.08985,-6.5625 -1.99218,-1.816407 -6.73828,-1.816407 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:'Comic Sans MS';-inkscape-font-specification:'Comic Sans MS';fill:#ffffff"
|
||||
id="path6451"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.6 KiB |
34
project/sprites/owo_censor.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/owo_censor.svg-c10221601fea246b468116135228d207.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/owo_censor.svg"
|
||||
dest_files=[ "res://.import/owo_censor.svg-c10221601fea246b468116135228d207.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
|
60
project/sprites/pants_icon.svg
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="svg815"
|
||||
width="39"
|
||||
height="33"
|
||||
viewBox="0 0 39 33"
|
||||
sodipodi:docname="pants_icon.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata821">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs819" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
id="namedview817"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="6.1212121"
|
||||
inkscape:cx="19.5"
|
||||
inkscape:cy="-9.6386138"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg815" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.95784992;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 6.7807842,28.813088 C 11.813842,20.992324 14.832232,3.8938042 15.52896,3.7756987 18.419201,3.2857617 25.626539,3.4616814 29.908997,2.036699 c 1.688171,-0.5617374 1.488754,15.799088 1.655879,24.486997 0.06138,3.190086 -9.314144,4.364655 -8.802321,1.221999 0.644048,-3.954547 0.348605,-12.407998 0.348605,-12.407998 0,0 -5.477233,7.547529 -6.667106,13.583 -0.302555,1.534666 -11.5352913,2.801285 -9.6632698,-0.107604 z"
|
||||
id="path2567"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssssscss" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
34
project/sprites/pants_icon.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/pants_icon.svg-1504bee50c96f9a58b6f753201be5a91.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/pants_icon.svg"
|
||||
dest_files=[ "res://.import/pants_icon.svg-1504bee50c96f9a58b6f753201be5a91.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
|
109
project/sprites/raw_shirt.svg
Normal file
After Width: | Height: | Size: 28 KiB |
34
project/sprites/raw_shirt.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/raw_shirt.svg-1202cc08aee5b0934f83fe7787bf5d7c.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/raw_shirt.svg"
|
||||
dest_files=[ "res://.import/raw_shirt.svg-1202cc08aee5b0934f83fe7787bf5d7c.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
|
73
project/sprites/sweat_pants.svg
Normal file
|
@ -0,0 +1,73 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="28.045834mm"
|
||||
height="29.633333mm"
|
||||
viewBox="0 0 28.045834 29.633333"
|
||||
version="1.1"
|
||||
id="svg2007"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="sweat_pants.svg">
|
||||
<defs
|
||||
id="defs2001" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="7.9195959"
|
||||
inkscape:cx="30.540413"
|
||||
inkscape:cy="76.888462"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showguides="false"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata2004">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-78.959229,-134.01666)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Re-ink">
|
||||
<path
|
||||
style="fill:#a4a4fe;fill-opacity:1;stroke:#000000;stroke-width:0.9976235;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 0.7201694,27.454536 C 6.1772493,19.62999 9.5332267,2.040524 10.205357,2.4050384 13.305684,4.0864294 22.924293,3.4606256 25.796875,0.66519761 27.169099,-0.67017035 27.411054,16.471927 27.59226,25.164037 c 0.06654,3.191629 -10.098839,4.366766 -9.543897,1.22259 0.698309,-3.956459 0.377976,-12.413999 0.377976,-12.413999 0,0 -5.938677,7.551179 -7.228794,13.589569 -0.328044,1.535408 -12.5071103,2.802641 -10.4773756,-0.107661 z"
|
||||
id="path2567"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssssscss" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
34
project/sprites/sweat_pants.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/sweat_pants.svg-1954ece07ca8c041219480fca138c463.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/sweat_pants.svg"
|
||||
dest_files=[ "res://.import/sweat_pants.svg-1954ece07ca8c041219480fca138c463.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
|
|
@ -9,9 +9,9 @@
|
|||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="102.53982mm"
|
||||
height="12.457465mm"
|
||||
viewBox="0 0 102.53982 12.457465"
|
||||
width="103.24624mm"
|
||||
height="36.245796mm"
|
||||
viewBox="0 0 103.24624 36.245796"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
|
@ -26,8 +26,8 @@
|
|||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="0.98994949"
|
||||
inkscape:cx="177.04774"
|
||||
inkscape:cy="-43.325592"
|
||||
inkscape:cx="426.57668"
|
||||
inkscape:cy="19.131602"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
|
@ -57,17 +57,88 @@
|
|||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(54.296804,-86.706353)">
|
||||
<text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
x="-54.87558"
|
||||
y="97.861572"
|
||||
id="text823"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan821"
|
||||
x="-54.87558"
|
||||
y="97.861572"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:14.11111069px;font-family:Impact;-inkscape-font-specification:Impact;stroke-width:0.26458332">Nathan's Dress Up</tspan></text>
|
||||
transform="translate(54.41838,-81.046773)">
|
||||
<g
|
||||
id="g879">
|
||||
<path
|
||||
d="m -46.41738,82.189773 4.826,0.431799 0.635,15.1892 -5.4864,0.127 -2.8956,-7.366 0.2032,7.2898 -5.1054,-0.0762 0.8636,-15.747999 4.572,0.406399 2.5908,6.5278 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path816"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -39.961414,97.531372 3.9116,-15.316199 6.9088,-0.1016 3.7084,15.443199 -4.8514,0.4572 -0.6096,-3.048 h -3.556 l -0.5842,3.048 z m 8.1788,-6.5786 -0.9906,-4.7498 -0.8382,4.826 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path818"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -14.112945,85.136172 -2.1082,0.127 0.0762,12.5222 h -5.6134 l 0.762,-12.2428 -3.3528,0.1778 0.127,-3.708399 10.0076,-0.508 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path820"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -4.2906847,82.189773 4.82599994,0.431799 0.63499996,15.1892 -5.4863999,0.127 0.1016,-6.1722 h -2.5146 l -0.2793999,6.096 -5.1054004,-0.0762 0.8636,-15.747999 4.5720003,0.406399 -0.0508,5.6642 2.413,0.0254 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path822"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 2.1569444,97.531372 3.9115999,-15.316199 6.9087997,-0.1016 3.7084,15.443199 -4.8514,0.4572 -0.6096,-3.048 H 7.6687443 l -0.5842,3.048 z m 8.1787996,-6.5786 -0.9905997,-4.7498 -0.8382,4.826 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path824"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 25.516214,82.189773 4.826,0.431799 0.635,15.1892 -5.4864,0.127 -2.8956,-7.366 0.2032,7.2898 -5.1054,-0.0762 0.8636,-15.747999 4.572,0.406399 2.5908,6.5278 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path826"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 36.467979,87.447572 -3.327399,0.0762 -0.635,-5.918199 4.267199,-0.5588 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path828"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 38.871058,88.920772 q 0,0.0508 -0.0762,-0.2032 -0.0762,-0.254 -0.127,-0.6858 -0.0508,-0.4572 -0.0254,-1.0414 0.0508,-0.6096 0.254,-1.2192 0.2032,-0.635 0.6604,-1.2446 0.4572,-0.635 1.2446,-1.1176 0.889,-0.5588 2.0828,-0.8128 1.2192,-0.254 2.286,-0.3048 1.2446,-0.0762 2.54,0.0254 l -0.2794,5.3848 q 0.1524,-0.0762 -0.1016,-0.254 -0.254,-0.1778 -0.7112,-0.3302 -0.4318,-0.1778 -0.9906,-0.3048 -0.5588,-0.127 -1.0668,-0.0762 -0.4826,0.0508 -0.8128,0.3302 -0.3048,0.254 -0.2794,0.8382 -0.0508,0.3302 0.3048,0.6096 0.381,0.2794 0.9652,0.5842 0.6096,0.2794 1.2954,0.635 0.6858,0.3302 1.2954,0.7874 0.635,0.4572 1.0414,1.0668 0.431799,0.6096 0.457199,1.4478 0,0.7366 -0.2032,1.397 -0.177799,0.5842 -0.558799,1.2192 -0.3556,0.6096 -1.016,1.0668 -0.9144,0.6604 -1.9304,0.9652 -1.016,0.2794 -2.032,0.3302 -0.9906,0.0762 -1.8796,-0.0254 -0.889,-0.1016 -1.5748,-0.2794 -0.6604,-0.1778 -1.016,-0.3556 -0.3556,-0.1778 -0.2794,-0.2286 l 0.2794,-3.429 q 0.6604,0.1778 1.3208,0.2286 0.5842,0.0508 1.2192,0 0.6604,-0.0762 1.1938,-0.381 0.4064,-0.2794 0.3556,-0.508 -0.0508,-0.2286 -0.4064,-0.4826 -0.3302,-0.2794 -0.8636,-0.5842 -0.5334,-0.3048 -1.0668,-0.7366 -0.5334,-0.4318 -0.9652,-0.9906 -0.4064,-0.5588 -0.5334,-1.3208 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path830"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
id="g869"
|
||||
transform="translate(3.1750001,-12.700002)">
|
||||
<path
|
||||
d="m -54.01198,113.40637 7.239,0.1778 q 1.778,0.1524 2.8448,0.9398 1.0668,0.7874 1.6256,1.9812 0.5588,1.1938 0.7112,2.6924 0.1524,1.4986 0.1016,3.048 -0.3048,2.2352 -0.7874,3.6322 -0.4826,1.397 -1.2446,2.1844 -0.762,0.7874 -1.8796,1.0668 -1.0922,0.2794 -2.6416,0.254 l -3.2004,-0.0508 q -0.6096,0 -1.1938,0 -0.5588,-0.0254 -1.016,-0.0254 -0.4318,0 -0.7112,0 -0.254,-0.0254 -0.254,-0.0254 z m 5.2832,10.8966 q 0.381,-0.0508 0.8128,-0.1016 0.4318,-0.0508 0.8382,-0.2794 0.4318,-0.2286 0.762,-0.7112 0.3302,-0.4826 0.508,-1.397 -0.0254,-0.5588 -0.0254,-1.1176 0.0254,-0.5842 -0.127,-1.1176 -0.127,-0.5334 -0.508,-0.9906 -0.3556,-0.4572 -1.143,-0.8128 -0.0254,0 -0.381,0 -0.3556,-0.0254 -0.7874,-0.0508 -0.508,-0.0254 -1.143,-0.0508 l -0.2794,6.5532 q 0.4318,0 0.7366,0.0254 0.2794,0.0254 0.4826,0.0508 0.2286,0 0.254,0 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path832"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -28.639364,126.48737 -2.8702,3.5052 -3.5306,-2.9464 -0.0254,2.4638 -5.0292,-0.2032 0.381,-15.4432 3.7592,-0.1778 q 1.4224,-0.0762 2.4638,0.1016 1.0414,0.1524 1.778,0.508 0.7366,0.3302 1.2446,0.8382 0.508,0.4826 0.889,1.0668 0.2794,0.4572 0.4826,1.524 0.2032,1.0414 0.1524,2.3114 -0.0508,1.2446 -0.508,2.4892 -0.4318,1.2192 -1.4478,2.0066 z m -5.9436,-5.0038 q 0.8382,-0.2794 1.1176,-0.9144 0.3048,-0.635 0.2032,-1.6764 -0.2794,-0.635 -0.7874,-0.889 -0.508,-0.254 -1.0414,-0.2794 l 0.0254,3.8608 q 0.127,-0.0254 0.2286,-0.0508 0.127,-0.0254 0.254,-0.0508 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path834"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -16.970048,129.40837 -11.4808,0.1016 0.5842,-15.4686 10.668,-0.0762 q -0.0762,1.2446 -0.127,2.2352 -0.0254,0.4318 -0.0508,0.8382 0,0.381 -0.0254,0.7112 0,0.3048 0,0.4826 0,0.1778 0,0.1778 l -5.2832,0.0254 v 1.397 l 3.937,-0.0508 -0.3556,3.81 -3.7592,0.127 -0.0762,1.2192 q 1.6256,-0.0254 2.921,-0.0508 0.5588,0 1.0668,0 0.5334,-0.0254 0.9398,-0.0254 0.4318,-0.0254 0.6858,-0.0254 0.2794,0 0.2794,0 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path836"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -14.806288,120.67077 q 0,0.0508 -0.0762,-0.2032 -0.0762,-0.254 -0.127,-0.6858 -0.0508,-0.4572 -0.0254,-1.0414 0.0508,-0.6096 0.254,-1.2192 0.2032,-0.635 0.6604,-1.2446 0.4572,-0.635 1.2446,-1.1176 0.889,-0.5588 2.0828,-0.8128 1.2192003,-0.254 2.2860003,-0.3048 1.2446,-0.0762 2.5399999,0.0254 l -0.2794,5.3848 q 0.1524,-0.0762 -0.1016,-0.254 -0.254,-0.1778 -0.7111999,-0.3302 -0.4318,-0.1778 -0.9906,-0.3048 -0.5588,-0.127 -1.0668,-0.0762 -0.4826,0.0508 -0.8128,0.3302 -0.3048003,0.254 -0.2794003,0.8382 -0.0508,0.3302 0.3048003,0.6096 0.381,0.2794 0.9652,0.5842 0.6096,0.2794 1.2954,0.635 0.6858,0.3302 1.2953999,0.7874 0.635,0.4572 1.0414,1.0668 0.4318,0.6096 0.4572,1.4478 0,0.7366 -0.2032,1.397 -0.1778,0.5842 -0.5588,1.2192 -0.3556,0.6096 -1.016,1.0668 -0.9143999,0.6604 -1.9303999,0.9652 -1.016,0.2794 -2.0320003,0.3302 -0.9906,0.0762 -1.8796,-0.0254 -0.889,-0.1016 -1.5748,-0.2794 -0.6604,-0.1778 -1.016,-0.3556 -0.3556,-0.1778 -0.2794,-0.2286 l 0.2794,-3.429 q 0.6604,0.1778 1.3208,0.2286 0.5842,0.0508 1.2192,0 0.6604,-0.0762 1.1938,-0.381 0.4064,-0.2794 0.3556,-0.508 -0.0508,-0.2286 -0.4064,-0.4826 -0.3302,-0.2794 -0.8636,-0.5842 -0.5334,-0.3048 -1.0668,-0.7366 -0.5334,-0.4318 -0.9652,-0.9906 -0.4064,-0.5588 -0.5334,-1.3208 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path838"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m -2.5527705,120.67077 q 0,0.0508 -0.0762,-0.2032 -0.0762,-0.254 -0.127,-0.6858 -0.0508,-0.4572 -0.0254,-1.0414 0.0508,-0.6096 0.254,-1.2192 0.2032,-0.635 0.6604,-1.2446 0.4572,-0.635 1.24459999,-1.1176 0.88899999,-0.5588 2.08280001,-0.8128 1.2191999,-0.254 2.2859999,-0.3048 1.2446,-0.0762 2.54,0.0254 l -0.2794,5.3848 q 0.1524,-0.0762 -0.1016,-0.254 -0.254,-0.1778 -0.7112,-0.3302 -0.4318,-0.1778 -0.9906,-0.3048 -0.5588,-0.127 -1.0668,-0.0762 -0.4826,0.0508 -0.8128,0.3302 -0.3047999,0.254 -0.2794,0.8382 -0.0508,0.3302 0.3048,0.6096 0.381,0.2794 0.9652,0.5842 0.6096,0.2794 1.2954,0.635 0.6858,0.3302 1.2954,0.7874 0.635,0.4572 1.0414,1.0668 0.4318,0.6096 0.4572,1.4478 0,0.7366 -0.2032,1.397 -0.1778,0.5842 -0.5588,1.2192 -0.3556,0.6096 -1.016,1.0668 -0.9144,0.6604 -1.9304,0.9652 -1.016,0.2794 -2.0319999,0.3302 -0.99060003,0.0762 -1.87960002,-0.0254 -0.88899998,-0.1016 -1.57479998,-0.2794 -0.6604,-0.1778 -1.016,-0.3556 -0.3556,-0.1778 -0.2794,-0.2286 l 0.2794,-3.429 q 0.6604,0.1778 1.3208,0.2286 0.58419999,0.0508 1.21919998,0 0.66039999,-0.0762 1.19379999,-0.381 0.40640003,-0.2794 0.35560003,-0.508 -0.0508,-0.2286 -0.40640003,-0.4826 -0.3302,-0.2794 -0.86359999,-0.5842 -0.53339999,-0.3048 -1.06679998,-0.7366 -0.5334,-0.4318 -0.9652,-0.9906 -0.4064,-0.5588 -0.5334,-1.3208 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path840"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 26.464344,124.40457 q 0,0.4064 -0.127,0.9652 -0.127,0.5588 -0.4064,1.1684 -0.254,0.5842 -0.7112,1.1684 -0.4318,0.5588 -1.0922,0.9906 -0.635,0.4318 -1.4986,0.6604 -0.8382,0.2286 -1.9558,0.127 -1.1176,-0.1016 -1.9558,-0.3556 -0.8382,-0.2794 -1.4732,-0.6604 -0.6096,-0.381 -1.0414,-0.8382 -0.4318,-0.4572 -0.7112,-0.9144 -0.6604,-1.0668 -0.7874,-2.3876 l -0.7112,-10.2108 5.2578,-0.2794 0.508,9.4488 q 0.127,0.7112 0.4826,1.016 0.381,0.3048 0.762,0.2794 0.381,-0.0508 0.6604,-0.4064 0.3048,-0.3556 0.3048,-1.016 v -9.3726 l 4.826,0.2286 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path842"
|
||||
inkscape:connector-curvature="0" />
|
||||
<path
|
||||
d="m 37.228389,125.36977 q -0.4064,0.1524 -0.7874,0.3302 -0.3556,0.1524 -0.762,0.3048 -0.381,0.127 -0.8636,0.2286 -0.4572,0.0762 -1.0668,0.0762 l -0.0254,3.2004 -5.5626,0.0254 0.7874,-16.1036 3.8862,0.254 q 1.4224,0.1016 2.413,0.3556 1.016,0.254 1.7018,0.635 0.7112,0.381 1.1684,0.889 0.4572,0.508 0.8382,1.0922 0.3556,0.762 0.508,1.7272 0.127,0.8128 0.1016,1.9558 0,1.1176 -0.381,2.4892 -0.2286,0.7874 -0.5842,1.2954 -0.3302,0.4826 -0.635,0.762 -0.3048,0.2794 -0.5334,0.381 -0.2032,0.1016 -0.2032,0.1016 z m -2.921,-3.1496 q 1.016,-0.3048 1.3462,-1.0668 0.3556,-0.7874 0.2286,-2.032 -0.3556,-0.7366 -0.9652,-1.0414 -0.5842,-0.3302 -1.2192,-0.3556 l 0.0254,4.6228 q 0.1524,-0.0254 0.2794,-0.0508 0.1524,-0.0254 0.3048,-0.0762 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:25.39999962px;line-height:1.25;font-family:'Soup of Justice';-inkscape-font-specification:'Soup of Justice';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
|
||||
id="path844"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
||||
|
|
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 16 KiB |
72
project/sprites/x_button.svg
Normal file
|
@ -0,0 +1,72 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="28.045834mm"
|
||||
height="29.633333mm"
|
||||
viewBox="0 0 28.045834 29.633333"
|
||||
version="1.1"
|
||||
id="svg2007"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="x_button.svg">
|
||||
<defs
|
||||
id="defs2001" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.8"
|
||||
inkscape:cx="9.4534785"
|
||||
inkscape:cy="71.8377"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showguides="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata2004">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-78.959229,-134.01666)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Re-ink">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 2.3920058,23.469698 c 0,-0.385451 1.6180554,-2.320847 3.5956801,-4.300879 C 7.9653094,17.188787 9.871187,15.266222 10.222967,14.896451 10.574748,14.52668 10.209361,12.380293 9.4110174,10.126699 7.7571468,5.458155 7.6063889,3.9057306 8.7480596,3.2999174 10.308476,2.4719013 12.449998,3.6951326 14.247589,6.4412294 l 1.821104,2.7820132 3.419862,-2.8817189 c 2.248675,-1.8948257 3.85386,-2.7387279 4.687133,-2.4641885 1.648664,0.5431876 2.600119,2.6686882 1.354224,3.0252582 -1.414145,0.4047239 -7.267069,8.0520546 -7.255965,9.4805206 0.0053,0.676404 0.836888,2.471797 1.84807,3.989761 0.71322,1.070667 1.671908,1.915542 1.291339,2.496285 l -2.034354,3.104393 c -0.39456,0.602091 -1.851947,-1.003167 -3.578375,-2.561381 L 12.789012,20.693994 9.4503269,24.093569 C 7.614049,25.963334 5.8996973,27.483505 5.6406553,27.471728 5.3816146,27.459895 2.3920058,23.855148 2.3920058,23.469698 Z"
|
||||
style="fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.08895873;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="X" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3 KiB |
34
project/sprites/x_button.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/x_button.svg-6cf395375517e4cea385a7bade20ecb1.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/x_button.svg"
|
||||
dest_files=[ "res://.import/x_button.svg-6cf395375517e4cea385a7bade20ecb1.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
|
112
project/sprites/z_briefs.svg
Normal file
|
@ -0,0 +1,112 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="svg865"
|
||||
width="106"
|
||||
height="112"
|
||||
viewBox="0 0 106 112"
|
||||
sodipodi:docname="z_briefs.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata871">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs869" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
id="namedview867"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="11.9198"
|
||||
inkscape:cx="70.364745"
|
||||
inkscape:cy="79.295955"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="layer2" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Color">
|
||||
<path
|
||||
style="fill:#0066ff;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 37.135593,14.118644 C 43.027868,20.752407 91.487239,18.48988 100.72881,14 c 1.54442,-0.750333 0.62094,2.781374 0.71187,5.101695 0.0909,2.320321 -5.163506,0.628407 -7.118646,2.194915 -2.49523,1.999243 -10.869289,30.780279 -21.59322,23.669493 C 61.588691,37.57935 66.637862,23.813841 35.830509,21.59322 33.307836,21.411384 35.455973,12.227659 37.135593,14.118644 Z"
|
||||
id="path1419-8-1"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sszssss" />
|
||||
<path
|
||||
style="fill:#ffffff;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||
d="m 50.084733,17.954798 -1.929563,5.6209 -13.506938,-1.929563 1.510093,-7.466568 z"
|
||||
id="path1566"
|
||||
inkscape:connector-curvature="0" />
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
inkscape:label="Re-ink"
|
||||
sodipodi:insensitive="true">
|
||||
<path
|
||||
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 37.135593,14.118644 C 43.027868,20.752407 91.487239,18.48988 100.72881,14 c 1.54442,-0.750333 0.62094,2.781374 0.71187,5.101695 0.0909,2.320321 -5.163506,0.628407 -7.118646,2.194915 -2.49523,1.999242 -10.869289,30.780278 -21.59322,23.669492 C 61.588691,37.579349 66.637862,23.81384 35.830509,21.59322 33.307836,21.411384 35.455973,12.227659 37.135593,14.118644 Z"
|
||||
id="path1419-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sszssss" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 101.73729,15.423728 c 0,0 -9.226533,5.073241 -25.271188,5.872882 C 60.421446,22.09625 50.355865,20.713159 43.601695,19.161017 36.847525,17.608875 35.59322,15.898305 35.59322,15.898305"
|
||||
id="path1421-5"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="czzc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 68.398305,42.118644 c 0,0 4.375912,-5.632741 5.457627,-8.957627 1.196948,-3.67908 0.949153,-11.567797 0.949153,-11.567797"
|
||||
id="path1431-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 73.855932,33.161017 c 0,0 1.879553,4.145002 1.838983,6.347457 -0.0395,2.144456 -2.016949,6.11017 -2.016949,6.11017"
|
||||
id="path1433-4"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 83.228814,42.652543 c 0,0 3.157166,-12.834443 4.152542,-18.805086 0.196074,-1.176126 0.355932,-3.559322 0.355932,-3.559322"
|
||||
id="path1435-3"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csc" />
|
||||
<path
|
||||
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 82.457627,21 c 0,0 1.127312,2.955857 1.898305,4.330508 0.507164,0.904254 1.957627,3.262712 1.957627,3.262712"
|
||||
id="path1437-3"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csc" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 5.4 KiB |
34
project/sprites/z_briefs.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/z_briefs.svg-b2e2e1eb71668c23f61b66914c6388da.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/z_briefs.svg"
|
||||
dest_files=[ "res://.import/z_briefs.svg-b2e2e1eb71668c23f61b66914c6388da.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
|
|
@ -8,7 +8,21 @@ onready var tops = load("res://sprites/tops_placeholder.png")
|
|||
onready var accessory = load("res://sprites/tops_placeholder.png")
|
||||
# ZC's Dress Up was stylized to be cute, not adult.
|
||||
# Underwear cam be suggestive but never lewd.
|
||||
onready var undies = load("res://sprites/briefs.png")
|
||||
onready var undies = load("res://sprites/briefs.svg")
|
||||
|
||||
func _process(delta):
|
||||
|
||||
if $Wordrobe/Accessoires/AccessoiresGrid/CanonCam.is_pressed() == true:
|
||||
change_accessoires(load("res://sprites/camera.png"))
|
||||
|
||||
if $Wordrobe/Pants/PantsGrid/Jeans.is_pressed() == true:
|
||||
change_bottoms(load("res://sprites/jeans.svg"))
|
||||
|
||||
if $Wordrobe/Pants/PantsGrid/Sweats.is_pressed() == true:
|
||||
change_bottoms(load("res://sprites/sweat_pants.svg"))
|
||||
|
||||
if $Wordrobe/Pants/PantsGrid/DJShorts.is_pressed() == true:
|
||||
change_bottoms(load("res://sprites/dj_shorts.svg"))
|
||||
|
||||
func change_bottoms(new_bottom):
|
||||
bottoms = new_bottom
|
||||
|
@ -16,7 +30,7 @@ func change_bottoms(new_bottom):
|
|||
if new_bottom == null:
|
||||
$Body/Bottom.texture = bottoms
|
||||
|
||||
if undies == load("res://sprites/owo_censor.png"):
|
||||
if undies == load("res://sprites/owo_censor.svg"):
|
||||
change_undies(null)
|
||||
|
||||
$Body/Bottom.texture = bottoms
|
||||
|
@ -51,23 +65,23 @@ func _on_Remove_Accessory_pressed():
|
|||
change_accessoires(null)
|
||||
|
||||
func _on_DJ_Shorts_pressed():
|
||||
change_bottoms(load("res://sprites/dj_shorts.png"))
|
||||
change_bottoms(load("res://sprites/dj_shorts.svg"))
|
||||
|
||||
func _on_ZBriefs_pressed():
|
||||
change_undies(load("res://sprites/z_briefs.png"))
|
||||
change_undies(load("res://sprites/z_briefs.svg"))
|
||||
|
||||
func _on_Briefs_pressed():
|
||||
change_undies(load("res://sprites/briefs.png"))
|
||||
change_undies(load("res://sprites/briefs.svg"))
|
||||
|
||||
func _on_Jeans_pressed():
|
||||
change_bottoms(load("res://sprites/jeans.png"))
|
||||
change_bottoms(load("res://sprites/jeans.svg"))
|
||||
|
||||
func _on_OwO_Censor_pressed():
|
||||
change_bottoms(null)
|
||||
change_undies(load("res://sprites/owo_censor.png"))
|
||||
change_undies(load("res://sprites/owo_censor.svg"))
|
||||
|
||||
func _on_Sweats_pressed():
|
||||
change_bottoms(load("res://sprites/sweat_pants.png"))
|
||||
change_bottoms(load("res://sprites/sweat_pants.svg"))
|
||||
|
||||
func _on_Sweatshirt_pressed():
|
||||
change_tops(load("res://sprites/old_sweatshirt.png"))
|
||||
|
@ -76,10 +90,10 @@ func _on_DJ_Shirt_pressed():
|
|||
change_tops(load("res://sprites/dj_shirt.png"))
|
||||
|
||||
func _on_Raw_pressed():
|
||||
change_tops(load("res://sprites/raw_shirt.png"))
|
||||
change_tops(load("res://sprites/raw_shirt.svg"))
|
||||
|
||||
func _on_Atomic_pressed():
|
||||
change_tops(load("res://sprites/atomic_shirt.png"))
|
||||
change_tops(load("res://sprites/atomic_shirt.svg"))
|
||||
|
||||
func _on_Korm_Shirt_pressed():
|
||||
change_tops(load("res://sprites/korm_shirt.png"))
|
||||
|
@ -94,19 +108,19 @@ func _on_Train_Hoodie_pressed():
|
|||
change_tops(load("res://sprites/train_hoodie.png"))
|
||||
|
||||
func _on_Beat_Up_Jeans_pressed():
|
||||
change_bottoms(load("res://sprites/beat_up_jeans.png"))
|
||||
change_bottoms(load("res://sprites/beat_up_jeans.svg"))
|
||||
|
||||
func _on_NL_Jacket_pressed():
|
||||
change_tops(load("res://sprites/nl_jacket.png"))
|
||||
|
||||
func _on_Blue_Camo_Jeans_pressed():
|
||||
change_bottoms(load("res://sprites/blue_camo_jeans.png"))
|
||||
change_bottoms(load("res://sprites/blue_camo_jeans.svg"))
|
||||
|
||||
func _on_Whats_New_Shirt_pressed():
|
||||
change_tops(load("res://sprites/whatsnew_shirt.png"))
|
||||
|
||||
func _on_Fundosi_pressed():
|
||||
change_undies(load("res://sprites/fundosi.png"))
|
||||
change_undies(load("res://sprites/fundosi.svg"))
|
||||
|
||||
func _on_Camera_pressed():
|
||||
change_accessoires(load("res://sprites/camera.png"))
|
||||
|
|
|
@ -12,6 +12,6 @@ func switch_scenes(new_mode):
|
|||
if new_mode == "classic":
|
||||
get_tree().change_scene("res://scn/ClassicScn.tscn")
|
||||
elif new_mode == "modern":
|
||||
get_tree().change_scene("res://scn/ModernScn.tscn")
|
||||
get_tree().change_scene("res://scn/GameScn.tscn")
|
||||
elif new_mode == "title":
|
||||
get_tree().change_scene("res://scn/TitleScn.tscn")
|
19
project/src/Soundtrack.gd
Normal file
|
@ -0,0 +1,19 @@
|
|||
extends AudioStreamPlayer
|
||||
|
||||
const tracks = [
|
||||
'reminiscing',
|
||||
'together_again',
|
||||
'at_the_lake',
|
||||
]
|
||||
|
||||
func _ready():
|
||||
connect("finished", self, "play_random_song")
|
||||
play_random_song()
|
||||
|
||||
func play_random_song():
|
||||
randomize()
|
||||
|
||||
var rand_db = randi() % tracks.size()
|
||||
var audiostream = load('res://music/' + tracks[rand_db] + '.ogg')
|
||||
stream = audiostream
|
||||
play()
|
|
@ -8,22 +8,11 @@ func _on_ClassicBtn_pressed():
|
|||
func _on_ModernBtn_pressed():
|
||||
switch_scenes("modern")
|
||||
|
||||
func _on_ClassicBtn_mouse_entered():
|
||||
$Modern.hide()
|
||||
$ClassicBG.show()
|
||||
|
||||
func _on_ClassicBtn_mouse_exited():
|
||||
$ClassicBG.hide()
|
||||
$Modern.show()
|
||||
|
||||
func _on_CreditsBtn_pressed():
|
||||
$WinDialogs/CreditsWin.show()
|
||||
|
||||
func _on_LicenseBtn_pressed():
|
||||
$WinDialogs/LicenseWin.show()
|
||||
|
||||
func _on_PlayBtn_toggled(button_pressed):
|
||||
if button_pressed == true:
|
||||
$MenuRf/ModePanel.show()
|
||||
else:
|
||||
$MenuRf/ModePanel.hide()
|
||||
func _on_PlayBtn_pressed():
|
||||
switch_scenes("modern")
|
||||
|
|