Modular character design WIP
|
@ -34,8 +34,9 @@ gdscript/completion/autocomplete_setters_and_getters=true
|
||||||
window/size/width=800
|
window/size/width=800
|
||||||
window/size/height=500
|
window/size/height=500
|
||||||
window/size/resizable=false
|
window/size/resizable=false
|
||||||
|
window/energy_saving/keep_screen_on=false
|
||||||
mouse_cursor/custom_image="res://sprites/clothes/cursor.png"
|
mouse_cursor/custom_image="res://sprites/clothes/cursor.png"
|
||||||
window/stretch/mode="viewport"
|
window/stretch/mode="2d"
|
||||||
window/stretch/aspect="keep"
|
window/stretch/aspect="keep"
|
||||||
|
|
||||||
[gui]
|
[gui]
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
[gd_scene load_steps=32 format=2]
|
[gd_scene load_steps=32 format=2]
|
||||||
|
|
||||||
[ext_resource path="res://scripts/characterBase.gd" type="Script" id=1]
|
[ext_resource path="res://sprites/character/shadow.svg" type="Texture" id=1]
|
||||||
[ext_resource path="res://sprites/character/tail/tail0.svg" type="Texture" id=2]
|
[ext_resource path="res://sprites/character/tail/tail0.svg" type="Texture" id=2]
|
||||||
[ext_resource path="res://sprites/character/tail/tail1.svg" type="Texture" id=3]
|
[ext_resource path="res://sprites/character/tail/tail1.svg" type="Texture" id=3]
|
||||||
[ext_resource path="res://sprites/character/tail/tail2.svg" type="Texture" id=4]
|
[ext_resource path="res://sprites/character/tail/tail2.svg" type="Texture" id=4]
|
||||||
[ext_resource path="res://sprites/character_base.svg" type="Texture" id=5]
|
[ext_resource path="res://sprites/character_base_legs.svg" type="Texture" id=5]
|
||||||
[ext_resource path="res://sprites/character/eyes/eyes1.png" type="Texture" id=6]
|
[ext_resource path="res://sprites/character/eyes/eyes1.png" type="Texture" id=6]
|
||||||
[ext_resource path="res://sprites/character/eyes/eyes2.png" type="Texture" id=7]
|
[ext_resource path="res://sprites/character/eyes/eyes2.png" type="Texture" id=7]
|
||||||
[ext_resource path="res://sprites/character/eyes/eyes3.png" type="Texture" id=8]
|
[ext_resource path="res://sprites/character/eyes/eyes3.png" type="Texture" id=8]
|
||||||
|
@ -23,13 +23,37 @@
|
||||||
[ext_resource path="res://sprites/character/mouth/mouth9.png" type="Texture" id=21]
|
[ext_resource path="res://sprites/character/mouth/mouth9.png" type="Texture" id=21]
|
||||||
[ext_resource path="res://sprites/character/mouth/mouth10.png" type="Texture" id=22]
|
[ext_resource path="res://sprites/character/mouth/mouth10.png" type="Texture" id=22]
|
||||||
[ext_resource path="res://sprites/character/mouth/mouth12.png" type="Texture" id=23]
|
[ext_resource path="res://sprites/character/mouth/mouth12.png" type="Texture" id=23]
|
||||||
[ext_resource path="res://sprites/clothes/briefs.svg" type="Texture" id=24]
|
[ext_resource path="res://sprites/character_base_top.svg" type="Texture" id=25]
|
||||||
[ext_resource path="res://sprites/clothes/blank_bottom.png" type="Texture" id=25]
|
|
||||||
[ext_resource path="res://sprites/clothes/blank_top.png" type="Texture" id=26]
|
[ext_resource path="res://sprites/clothes/blank_top.png" type="Texture" id=26]
|
||||||
[ext_resource path="res://sprites/character/shadow.svg" type="Texture" id=27]
|
[ext_resource path="res://sprites/character_base_head.svg" type="Texture" id=27]
|
||||||
[ext_resource path="res://sprites/character/mouth/mouth11.png" type="Texture" id=28]
|
[ext_resource path="res://sprites/character/mouth/mouth11.png" type="Texture" id=28]
|
||||||
|
|
||||||
[sub_resource type="SpriteFrames" id=1]
|
[sub_resource type="GDScript" id=1]
|
||||||
|
script/source = "# Anthony Wilcox licenses this file to you under the MPL license.
|
||||||
|
# See the LICENSE file in the project root for more information.
|
||||||
|
extends Node2D
|
||||||
|
|
||||||
|
onready var character = preload(\"res://resources/character.tres\")
|
||||||
|
onready var accessory = $body/accessory
|
||||||
|
#onready var underwear = $Undies
|
||||||
|
onready var bottom = $body/legs
|
||||||
|
onready var top = $body/top
|
||||||
|
|
||||||
|
func _process(delta):
|
||||||
|
if character.accessory != null:
|
||||||
|
accessory.texture = character.accessory
|
||||||
|
|
||||||
|
# if character.underwear != null:
|
||||||
|
# underwear.texture = character.underwear
|
||||||
|
|
||||||
|
if character.bottom != null:
|
||||||
|
bottom.texture = character.bottom
|
||||||
|
|
||||||
|
if character.top != null:
|
||||||
|
top.texture = character.top
|
||||||
|
"
|
||||||
|
|
||||||
|
[sub_resource type="SpriteFrames" id=2]
|
||||||
animations = [ {
|
animations = [ {
|
||||||
"frames": [ ExtResource( 2 ), ExtResource( 3 ), ExtResource( 4 ) ],
|
"frames": [ ExtResource( 2 ), ExtResource( 3 ), ExtResource( 4 ) ],
|
||||||
"loop": true,
|
"loop": true,
|
||||||
|
@ -37,7 +61,7 @@ animations = [ {
|
||||||
"speed": 2.0
|
"speed": 2.0
|
||||||
} ]
|
} ]
|
||||||
|
|
||||||
[sub_resource type="SpriteFrames" id=2]
|
[sub_resource type="SpriteFrames" id=3]
|
||||||
animations = [ {
|
animations = [ {
|
||||||
"frames": [ ExtResource( 6 ), ExtResource( 7 ), ExtResource( 8 ), ExtResource( 9 ), ExtResource( 10 ), ExtResource( 11 ), ExtResource( 12 ) ],
|
"frames": [ ExtResource( 6 ), ExtResource( 7 ), ExtResource( 8 ), ExtResource( 9 ), ExtResource( 10 ), ExtResource( 11 ), ExtResource( 12 ) ],
|
||||||
"loop": true,
|
"loop": true,
|
||||||
|
@ -45,7 +69,7 @@ animations = [ {
|
||||||
"speed": 2.0
|
"speed": 2.0
|
||||||
} ]
|
} ]
|
||||||
|
|
||||||
[sub_resource type="SpriteFrames" id=3]
|
[sub_resource type="SpriteFrames" id=4]
|
||||||
animations = [ {
|
animations = [ {
|
||||||
"frames": [ ExtResource( 13 ), ExtResource( 14 ), ExtResource( 15 ), ExtResource( 16 ), ExtResource( 17 ), ExtResource( 18 ), ExtResource( 19 ), ExtResource( 20 ), ExtResource( 21 ), ExtResource( 22 ), ExtResource( 28 ), ExtResource( 23 ) ],
|
"frames": [ ExtResource( 13 ), ExtResource( 14 ), ExtResource( 15 ), ExtResource( 16 ), ExtResource( 17 ), ExtResource( 18 ), ExtResource( 19 ), ExtResource( 20 ), ExtResource( 21 ), ExtResource( 22 ), ExtResource( 28 ), ExtResource( 23 ) ],
|
||||||
"loop": true,
|
"loop": true,
|
||||||
|
@ -54,48 +78,73 @@ animations = [ {
|
||||||
} ]
|
} ]
|
||||||
|
|
||||||
[node name="characterBase" type="Node2D"]
|
[node name="characterBase" type="Node2D"]
|
||||||
script = ExtResource( 1 )
|
position = Vector2( -19, -92 )
|
||||||
|
script = SubResource( 1 )
|
||||||
|
|
||||||
[node name="base" type="Node2D" parent="."]
|
[node name="shadow" type="Sprite" parent="."]
|
||||||
position = Vector2( -103.897, -160.477 )
|
position = Vector2( 4.84271, 244.714 )
|
||||||
|
texture = ExtResource( 1 )
|
||||||
|
|
||||||
[node name="Tail" type="AnimatedSprite" parent="base"]
|
[node name="body" type="Node2D" parent="."]
|
||||||
position = Vector2( 55.0701, 172.425 )
|
__meta__ = {
|
||||||
frames = SubResource( 1 )
|
"_edit_lock_": true
|
||||||
frame = 2
|
}
|
||||||
|
|
||||||
|
[node name="tail" type="AnimatedSprite" parent="body"]
|
||||||
|
position = Vector2( -41.9999, 100.157 )
|
||||||
|
scale = Vector2( 0.927713, 1 )
|
||||||
|
frames = SubResource( 2 )
|
||||||
|
frame = 1
|
||||||
playing = true
|
playing = true
|
||||||
|
__meta__ = {
|
||||||
|
"_edit_lock_": true
|
||||||
|
}
|
||||||
|
|
||||||
[node name="shadow" type="Sprite" parent="base"]
|
[node name="top" type="Sprite" parent="body"]
|
||||||
position = Vector2( 91.524, 317.295 )
|
position = Vector2( 7, 80 )
|
||||||
texture = ExtResource( 27 )
|
texture = ExtResource( 25 )
|
||||||
|
__meta__ = {
|
||||||
|
"_edit_lock_": true
|
||||||
|
}
|
||||||
|
|
||||||
[node name="Tony" type="Sprite" parent="base"]
|
[node name="legs" type="Sprite" parent="body"]
|
||||||
position = Vector2( 96.3522, 164.086 )
|
position = Vector2( 3, 189 )
|
||||||
texture = ExtResource( 5 )
|
texture = ExtResource( 5 )
|
||||||
|
|
||||||
[node name="Eyes" type="AnimatedSprite" parent="base"]
|
[node name="head" type="Sprite" parent="body"]
|
||||||
position = Vector2( 114.227, 63.9224 )
|
position = Vector2( 14.1214, -26.841 )
|
||||||
frames = SubResource( 2 )
|
texture = ExtResource( 27 )
|
||||||
playing = true
|
__meta__ = {
|
||||||
|
"_edit_lock_": true
|
||||||
|
}
|
||||||
|
|
||||||
[node name="Mouth" type="AnimatedSprite" parent="base"]
|
[node name="accessory" type="Sprite" parent="body"]
|
||||||
position = Vector2( 148.505, 68.0261 )
|
position = Vector2( 9.54095, 73.0832 )
|
||||||
|
texture = ExtResource( 26 )
|
||||||
|
__meta__ = {
|
||||||
|
"_edit_lock_": true
|
||||||
|
}
|
||||||
|
|
||||||
|
[node name="emote" type="Node2D" parent="body"]
|
||||||
|
position = Vector2( 51.7305, -20.2165 )
|
||||||
|
__meta__ = {
|
||||||
|
"_edit_lock_": true
|
||||||
|
}
|
||||||
|
|
||||||
|
[node name="eyes" type="AnimatedSprite" parent="body/emote"]
|
||||||
|
position = Vector2( -19.9234, -2.40303 )
|
||||||
frames = SubResource( 3 )
|
frames = SubResource( 3 )
|
||||||
frame = 7
|
frame = 3
|
||||||
playing = true
|
playing = true
|
||||||
|
__meta__ = {
|
||||||
|
"_edit_lock_": true
|
||||||
|
}
|
||||||
|
|
||||||
[node name="Undies" type="Sprite" parent="."]
|
[node name="mouth" type="AnimatedSprite" parent="body/emote"]
|
||||||
position = Vector2( -17.3889, 95.818 )
|
position = Vector2( 0.510399, 2.06003 )
|
||||||
texture = ExtResource( 24 )
|
frames = SubResource( 4 )
|
||||||
|
frame = 6
|
||||||
[node name="Bottom" type="Sprite" parent="."]
|
playing = true
|
||||||
position = Vector2( -15.7094, 90.851 )
|
__meta__ = {
|
||||||
texture = ExtResource( 25 )
|
"_edit_lock_": true
|
||||||
|
}
|
||||||
[node name="Top" type="Sprite" parent="."]
|
|
||||||
position = Vector2( -7.53471, -0.0449677 )
|
|
||||||
texture = ExtResource( 26 )
|
|
||||||
|
|
||||||
[node name="Accessory" type="Sprite" parent="."]
|
|
||||||
position = Vector2( -10.6723, -5.33797 )
|
|
||||||
texture = ExtResource( 26 )
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
[gd_scene load_steps=10 format=2]
|
[gd_scene load_steps=10 format=2]
|
||||||
|
|
||||||
[ext_resource path="res://scenes/characterBase.tscn" type="PackedScene" id=1]
|
[ext_resource path="res://scenes/characterBase.tscn" type="PackedScene" id=1]
|
||||||
[ext_resource path="res://sprites/clothes/background.svg" type="Texture" id=2]
|
[ext_resource path="res://sprites/world/background.svg" type="Texture" id=2]
|
||||||
[ext_resource path="res://sprites/ui/blue_boxCross.png" type="Texture" id=3]
|
[ext_resource path="res://sprites/ui/blue_boxCross.png" type="Texture" id=3]
|
||||||
[ext_resource path="res://scenes/wardrobe.tscn" type="PackedScene" id=4]
|
[ext_resource path="res://scenes/wardrobe.tscn" type="PackedScene" id=4]
|
||||||
[ext_resource path="res://sprites/clothes/icrazy_frame.svg" type="Texture" id=5]
|
[ext_resource path="res://sprites/clothes/icrazy_frame.svg" type="Texture" id=5]
|
||||||
|
@ -28,7 +28,7 @@ position = Vector2( 35.118, -14.56 )
|
||||||
texture = ExtResource( 6 )
|
texture = ExtResource( 6 )
|
||||||
|
|
||||||
[node name="characterBase" parent="." instance=ExtResource( 1 )]
|
[node name="characterBase" parent="." instance=ExtResource( 1 )]
|
||||||
position = Vector2( 126.596, 319.219 )
|
position = Vector2( 145.146, 205.536 )
|
||||||
|
|
||||||
[node name="ui" type="CanvasLayer" parent="."]
|
[node name="ui" type="CanvasLayer" parent="."]
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
[gd_scene load_steps=21 format=2]
|
[gd_scene load_steps=18 format=2]
|
||||||
|
|
||||||
[ext_resource path="res://scenes/clothing/camera.tscn" type="PackedScene" id=1]
|
[ext_resource path="res://scenes/clothing/camera.tscn" type="PackedScene" id=1]
|
||||||
[ext_resource path="res://scenes/clothing/undies/zBriefs.tscn" type="PackedScene" id=2]
|
|
||||||
[ext_resource path="res://scenes/clothing/pants/beatUpJeans.tscn" type="PackedScene" id=3]
|
[ext_resource path="res://scenes/clothing/pants/beatUpJeans.tscn" type="PackedScene" id=3]
|
||||||
[ext_resource path="res://scenes/clothing/pants/jeans.tscn" type="PackedScene" id=4]
|
[ext_resource path="res://scenes/clothing/pants/jeans.tscn" type="PackedScene" id=4]
|
||||||
[ext_resource path="res://scenes/clothing/pants/skirt.tscn" type="PackedScene" id=5]
|
[ext_resource path="res://scenes/clothing/pants/skirt.tscn" type="PackedScene" id=5]
|
||||||
|
@ -17,9 +16,7 @@
|
||||||
[ext_resource path="res://scenes/clothing/tops/atomicShirt.tscn" type="PackedScene" id=15]
|
[ext_resource path="res://scenes/clothing/tops/atomicShirt.tscn" type="PackedScene" id=15]
|
||||||
[ext_resource path="res://scenes/clothing/tops/nlShirt.tscn" type="PackedScene" id=16]
|
[ext_resource path="res://scenes/clothing/tops/nlShirt.tscn" type="PackedScene" id=16]
|
||||||
[ext_resource path="res://scenes/clothing/pants/sweatPants.tscn" type="PackedScene" id=17]
|
[ext_resource path="res://scenes/clothing/pants/sweatPants.tscn" type="PackedScene" id=17]
|
||||||
[ext_resource path="res://scenes/clothing/undies/briefs.tscn" type="PackedScene" id=20]
|
|
||||||
[ext_resource path="res://scripts/wardrobe.gd" type="Script" id=21]
|
[ext_resource path="res://scripts/wardrobe.gd" type="Script" id=21]
|
||||||
[ext_resource path="res://scenes/clothing/undies/fundosi.tscn" type="PackedScene" id=22]
|
|
||||||
|
|
||||||
[node name="Wordrobe" type="TabContainer"]
|
[node name="Wordrobe" type="TabContainer"]
|
||||||
anchor_right = 1.0
|
anchor_right = 1.0
|
||||||
|
@ -58,7 +55,7 @@ columns = 4
|
||||||
|
|
||||||
[node name="removePants" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
|
[node name="removePants" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
|
||||||
margin_right = 106.0
|
margin_right = 106.0
|
||||||
margin_bottom = 112.0
|
margin_bottom = 134.0
|
||||||
rect_min_size = Vector2( 0, 112 )
|
rect_min_size = Vector2( 0, 112 )
|
||||||
texture_normal = ExtResource( 9 )
|
texture_normal = ExtResource( 9 )
|
||||||
|
|
||||||
|
@ -66,53 +63,53 @@ texture_normal = ExtResource( 9 )
|
||||||
anchor_right = 0.0
|
anchor_right = 0.0
|
||||||
anchor_bottom = 0.0
|
anchor_bottom = 0.0
|
||||||
margin_left = 110.0
|
margin_left = 110.0
|
||||||
margin_right = 216.0
|
margin_right = 220.0
|
||||||
margin_bottom = 112.0
|
margin_bottom = 134.0
|
||||||
|
|
||||||
[node name="jeans" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 4 )]
|
[node name="jeans" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 4 )]
|
||||||
anchor_right = 0.0
|
anchor_right = 0.0
|
||||||
anchor_bottom = 0.0
|
anchor_bottom = 0.0
|
||||||
margin_left = 220.0
|
margin_left = 224.0
|
||||||
margin_right = 326.0
|
margin_right = 330.0
|
||||||
margin_bottom = 112.0
|
margin_bottom = 134.0
|
||||||
|
|
||||||
[node name="camoJeans" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 7 )]
|
[node name="camoJeans" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 7 )]
|
||||||
anchor_right = 0.0
|
anchor_right = 0.0
|
||||||
anchor_bottom = 0.0
|
anchor_bottom = 0.0
|
||||||
margin_left = 330.0
|
margin_left = 334.0
|
||||||
margin_right = 436.0
|
margin_right = 444.0
|
||||||
margin_bottom = 112.0
|
margin_bottom = 134.0
|
||||||
|
|
||||||
[node name="sweatPants" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 17 )]
|
[node name="sweatPants" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 17 )]
|
||||||
anchor_right = 0.0
|
anchor_right = 0.0
|
||||||
anchor_bottom = 0.0
|
anchor_bottom = 0.0
|
||||||
margin_top = 116.0
|
margin_top = 138.0
|
||||||
margin_right = 106.0
|
margin_right = 106.0
|
||||||
margin_bottom = 228.0
|
margin_bottom = 270.0
|
||||||
|
|
||||||
[node name="camoJeans2" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 8 )]
|
[node name="camoJeans2" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 8 )]
|
||||||
anchor_right = 0.0
|
anchor_right = 0.0
|
||||||
anchor_bottom = 0.0
|
anchor_bottom = 0.0
|
||||||
margin_left = 110.0
|
margin_left = 110.0
|
||||||
margin_top = 116.0
|
margin_top = 138.0
|
||||||
margin_right = 216.0
|
margin_right = 220.0
|
||||||
margin_bottom = 228.0
|
margin_bottom = 270.0
|
||||||
|
|
||||||
[node name="formalSkirt" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 6 )]
|
[node name="formalSkirt" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 6 )]
|
||||||
anchor_right = 0.0
|
anchor_right = 0.0
|
||||||
anchor_bottom = 0.0
|
anchor_bottom = 0.0
|
||||||
margin_left = 220.0
|
margin_left = 224.0
|
||||||
margin_top = 116.0
|
margin_top = 138.0
|
||||||
margin_right = 326.0
|
margin_right = 330.0
|
||||||
margin_bottom = 228.0
|
margin_bottom = 270.0
|
||||||
|
|
||||||
[node name="skirt" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 5 )]
|
[node name="skirt" parent="Pants/PantsScroll/PantsGrid" instance=ExtResource( 5 )]
|
||||||
anchor_right = 0.0
|
anchor_right = 0.0
|
||||||
anchor_bottom = 0.0
|
anchor_bottom = 0.0
|
||||||
margin_left = 330.0
|
margin_left = 334.0
|
||||||
margin_top = 116.0
|
margin_top = 138.0
|
||||||
margin_right = 436.0
|
margin_right = 444.0
|
||||||
margin_bottom = 228.0
|
margin_bottom = 270.0
|
||||||
|
|
||||||
[node name="Shirts" type="Tabs" parent="."]
|
[node name="Shirts" type="Tabs" parent="."]
|
||||||
visible = false
|
visible = false
|
||||||
|
@ -182,40 +179,6 @@ margin_top = 119.0
|
||||||
margin_right = 106.0
|
margin_right = 106.0
|
||||||
margin_bottom = 234.0
|
margin_bottom = 234.0
|
||||||
|
|
||||||
[node name="Underwear" type="Tabs" parent="."]
|
|
||||||
visible = false
|
|
||||||
anchor_right = 1.0
|
|
||||||
anchor_bottom = 1.0
|
|
||||||
margin_left = 5.0
|
|
||||||
margin_top = 40.0
|
|
||||||
margin_right = -5.0
|
|
||||||
margin_bottom = -10.0
|
|
||||||
|
|
||||||
[node name="UndiesScroll" type="ScrollContainer" parent="Underwear"]
|
|
||||||
anchor_right = 1.0
|
|
||||||
anchor_bottom = 1.0
|
|
||||||
|
|
||||||
[node name="UndiesGrid" type="GridContainer" parent="Underwear/UndiesScroll"]
|
|
||||||
margin_right = 790.0
|
|
||||||
margin_bottom = 450.0
|
|
||||||
size_flags_horizontal = 3
|
|
||||||
size_flags_vertical = 3
|
|
||||||
columns = 3
|
|
||||||
|
|
||||||
[node name="fundosi" parent="Underwear/UndiesScroll/UndiesGrid" instance=ExtResource( 22 )]
|
|
||||||
margin_right = 106.0
|
|
||||||
margin_bottom = 112.0
|
|
||||||
|
|
||||||
[node name="zBriefs" parent="Underwear/UndiesScroll/UndiesGrid" instance=ExtResource( 2 )]
|
|
||||||
margin_left = 110.0
|
|
||||||
margin_right = 216.0
|
|
||||||
margin_bottom = 112.0
|
|
||||||
|
|
||||||
[node name="briefs" parent="Underwear/UndiesScroll/UndiesGrid" instance=ExtResource( 20 )]
|
|
||||||
margin_left = 220.0
|
|
||||||
margin_right = 326.0
|
|
||||||
margin_bottom = 112.0
|
|
||||||
|
|
||||||
[node name="Accessoires" type="Tabs" parent="."]
|
[node name="Accessoires" type="Tabs" parent="."]
|
||||||
visible = false
|
visible = false
|
||||||
anchor_right = 1.0
|
anchor_right = 1.0
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
tool
|
|
||||||
extends Control
|
extends Control
|
||||||
|
|
||||||
onready var character = preload("res://resources/character.tres")
|
onready var character = preload("res://resources/character.tres")
|
||||||
onready var blank_top = preload("res://sprites/clothes/blank_top.png")
|
onready var blank_accessory = preload("res://sprites/clothes/blank_top.png")
|
||||||
onready var blank_bottom = preload("res://sprites/clothes/blank_bottom.png")
|
onready var base_top = preload("res://sprites/character_base_top.svg")
|
||||||
|
onready var base_bottom = preload("res://sprites/character_base_legs.svg")
|
||||||
|
|
||||||
func _on_clearBtn_pressed():
|
func _on_clearBtn_pressed():
|
||||||
$clear.play()
|
$clear.play()
|
||||||
character.accessory = blank_top
|
character.accessory = blank_accessory
|
||||||
character.bottom = blank_bottom
|
character.bottom = base_bottom
|
||||||
character.top = blank_top
|
character.top = base_top
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
extends TabContainer
|
extends TabContainer
|
||||||
|
|
||||||
onready var character = preload("res://resources/character.tres")
|
onready var character = preload("res://resources/character.tres")
|
||||||
onready var blank_top = preload("res://sprites/clothes/blank_top.png")
|
onready var blank_accessory = preload("res://sprites/clothes/blank_top.png")
|
||||||
onready var blank_bottom = preload("res://sprites/clothes/blank_bottom.png")
|
onready var base_top = preload("res://sprites/character_base_top.svg")
|
||||||
|
onready var base_bottom = preload("res://sprites/character_base_legs.svg")
|
||||||
|
|
||||||
onready var pants_grid = $Pants/PantsScroll/PantsGrid
|
onready var pants_grid = $Pants/PantsScroll/PantsGrid
|
||||||
onready var shirts_grid = $Shirts/ShirtsScroll/ShirtsGrid
|
onready var shirts_grid = $Shirts/ShirtsScroll/ShirtsGrid
|
||||||
onready var undies_grid = $Underwear/UndiesScroll/UndiesGrid
|
#onready var undies_grid = $Underwear/UndiesScroll/UndiesGrid
|
||||||
onready var accs_grid = $Accessoires/AccsScroll/AccsGrid
|
onready var accs_grid = $Accessoires/AccsScroll/AccsGrid
|
||||||
|
|
||||||
func list_files_in_directory(path):
|
func list_files_in_directory(path):
|
||||||
|
@ -44,10 +45,10 @@ func check_for_dlc(dlc_pack):
|
||||||
# Lists the files in each of their respective directories
|
# Lists the files in each of their respective directories
|
||||||
var shirts_dir = "res://scenes/dlc/shirts/"
|
var shirts_dir = "res://scenes/dlc/shirts/"
|
||||||
var pants_dir = "res://scenes/dlc/pants/"
|
var pants_dir = "res://scenes/dlc/pants/"
|
||||||
var undies_dir = "res://scenes/dlc/undies/"
|
# var undies_dir = "res://scenes/dlc/undies/"
|
||||||
var dlc_shirts = list_files_in_directory(shirts_dir)
|
var dlc_shirts = list_files_in_directory(shirts_dir)
|
||||||
var dlc_pants = list_files_in_directory(pants_dir)
|
var dlc_pants = list_files_in_directory(pants_dir)
|
||||||
var dlc_undies = list_files_in_directory(undies_dir)
|
# var dlc_undies = list_files_in_directory(undies_dir)
|
||||||
|
|
||||||
# Make sure each file actually exist, instance them
|
# Make sure each file actually exist, instance them
|
||||||
# and add them to their respective tabs
|
# and add them to their respective tabs
|
||||||
|
@ -63,21 +64,21 @@ func check_for_dlc(dlc_pack):
|
||||||
shirts_grid.add_child(init)
|
shirts_grid.add_child(init)
|
||||||
print_debug("Initialized: " + pants_dir + pants)
|
print_debug("Initialized: " + pants_dir + pants)
|
||||||
|
|
||||||
for undies in dlc_undies:
|
# for undies in dlc_undies:
|
||||||
if dir.file_exists(undies_dir + undies):
|
# if dir.file_exists(undies_dir + undies):
|
||||||
var init = load(undies_dir + undies).instance()
|
# var init = load(undies_dir + undies).instance()
|
||||||
shirts_grid.add_child(init)
|
# shirts_grid.add_child(init)
|
||||||
print_debug("Initialized: " + undies_dir + undies)
|
# print_debug("Initialized: " + undies_dir + undies)
|
||||||
|
|
||||||
func _ready():
|
func _ready():
|
||||||
# check_for_dlc("testdlc.pck")
|
# check_for_dlc("testdlc.pck")
|
||||||
pass
|
pass
|
||||||
|
|
||||||
func _on_removeAccessory_pressed():
|
func _on_removeAccessory_pressed():
|
||||||
character.accessory = blank_top
|
character.accessory = blank_accessory
|
||||||
|
|
||||||
func _on_removePants_pressed():
|
func _on_removePants_pressed():
|
||||||
character.bottom = blank_bottom
|
character.bottom = base_bottom
|
||||||
|
|
||||||
func _on_removeShirt_pressed():
|
func _on_removeShirt_pressed():
|
||||||
character.top = blank_top
|
character.top = base_top
|
||||||
|
|
|
@ -1,6 +1,4 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
<svg
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
@ -9,40 +7,41 @@
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
width="43.391666mm"
|
sodipodi:docname="character_base.svg"
|
||||||
height="86.518753mm"
|
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||||
viewBox="0 0 43.391666 86.518753"
|
|
||||||
version="1.1"
|
|
||||||
id="svg8"
|
id="svg8"
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
version="1.1"
|
||||||
sodipodi:docname="character_base.svg">
|
viewBox="0 0 43.377262 37.227165"
|
||||||
|
height="37.227165mm"
|
||||||
|
width="43.377262mm">
|
||||||
<defs
|
<defs
|
||||||
id="defs2" />
|
id="defs2" />
|
||||||
<sodipodi:namedview
|
<sodipodi:namedview
|
||||||
id="base"
|
inkscape:document-rotation="0"
|
||||||
pagecolor="#ffffff"
|
inkscape:lockguides="false"
|
||||||
bordercolor="#666666"
|
inkscape:window-maximized="1"
|
||||||
borderopacity="1.0"
|
inkscape:window-y="-9"
|
||||||
inkscape:pageopacity="0.0"
|
inkscape:window-x="-9"
|
||||||
inkscape:pageshadow="2"
|
inkscape:window-height="1001"
|
||||||
inkscape:zoom="2.8"
|
inkscape:window-width="1920"
|
||||||
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"
|
showguides="true"
|
||||||
inkscape:window-width="958"
|
inkscape:pagecheckerboard="true"
|
||||||
inkscape:window-height="991"
|
fit-margin-bottom="0"
|
||||||
inkscape:window-x="-8"
|
fit-margin-right="0"
|
||||||
inkscape:window-y="0"
|
fit-margin-left="0"
|
||||||
inkscape:window-maximized="0"
|
fit-margin-top="0"
|
||||||
inkscape:lockguides="false" />
|
showgrid="false"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:cy="121.24583"
|
||||||
|
inkscape:cx="93.607727"
|
||||||
|
inkscape:zoom="2.8"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
id="base" />
|
||||||
<metadata
|
<metadata
|
||||||
id="metadata5">
|
id="metadata5">
|
||||||
<rdf:RDF>
|
<rdf:RDF>
|
||||||
|
@ -51,149 +50,115 @@
|
||||||
<dc:format>image/svg+xml</dc:format>
|
<dc:format>image/svg+xml</dc:format>
|
||||||
<dc:type
|
<dc:type
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
<dc:title />
|
<dc:title></dc:title>
|
||||||
</cc:Work>
|
</cc:Work>
|
||||||
</rdf:RDF>
|
</rdf:RDF>
|
||||||
</metadata>
|
</metadata>
|
||||||
<g
|
<g
|
||||||
inkscape:label="Layer 1"
|
style="display:inline"
|
||||||
inkscape:groupmode="layer"
|
transform="translate(-76.736396,-103.45983)"
|
||||||
id="layer1"
|
id="layer1"
|
||||||
transform="translate(-76.57798,-103.3061)"
|
|
||||||
style="display:inline" />
|
|
||||||
<g
|
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(-0.15841594,-0.15372664)"
|
||||||
|
sodipodi:insensitive="true"
|
||||||
|
inkscape:label="Color"
|
||||||
id="layer3"
|
id="layer3"
|
||||||
inkscape:label="Color">
|
inkscape:groupmode="layer">
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="cccc"
|
||||||
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"
|
inkscape:connector-curvature="0"
|
||||||
id="path864"
|
id="path864"
|
||||||
inkscape:connector-curvature="0"
|
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"
|
||||||
sodipodi:nodetypes="cccc" />
|
style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="cccccccscccccccccc"
|
||||||
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"
|
inkscape:connector-curvature="0"
|
||||||
id="path831-5"
|
id="path831-5"
|
||||||
inkscape:connector-curvature="0"
|
d="m 34.726561,20.939881 c 1.424506,0.409095 2.905617,0.519717 4.441219,0.519717 -0.631436,0.891699 -1.802839,1.33673 -2.834817,1.795387 0.679627,2.000634 1.918615,4.085352 2.55134,6.236608 -0.196308,-1.699022 -1.726382,-2.566554 -2.976563,-3.449034 -1.289203,1.845106 -2.413179,3.349977 -4.441222,4.110492 -0.02396,-1.807178 -0.561611,-3.490928 -2.102492,-4.464845 -1.266898,0.154353 -2.719548,0.200395 -2.62221,1.063057 0.225306,1.996779 1.707495,3.473391 3.168393,4.548419 2.475619,10.439903 -17.224345,5.695069 -9.782977,-1.241126 2.338792,-1.754093 0.344395,-5.168508 -2.315104,-4.346726 -1.654478,0.194645 -1.540993,1.586536 -1.417411,3.023812 -1.143466,-0.96755 -1.993973,-1.935806 -2.315104,-3.449035 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176 8.399753,-4.993925 13.806413,-4.295882 18.993302,-0.425223 z"
|
||||||
sodipodi:nodetypes="cccccccsccccccccccscccccccc" />
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="cccc"
|
||||||
d="M 31.513766,4.4697399 33.171594,0.92059932 36.191219,5.9184807 Z"
|
inkscape:connector-curvature="0"
|
||||||
id="path868-9"
|
id="path868-9"
|
||||||
inkscape:connector-curvature="0"
|
d="M 31.513766,4.4697399 33.171594,0.92059932 36.191219,5.9184807 Z"
|
||||||
sodipodi:nodetypes="cccc" />
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:1.42187;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<path
|
||||||
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
inkscape:connector-curvature="0"
|
||||||
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"
|
id="path845"
|
||||||
inkscape:connector-curvature="0" />
|
d="m 15.733259,21.365104 c 8.031531,-1.988559 12.40585,-4.181396 18.993303,-0.425223 4.457472,-16.6670615 -22.644325,-7.978795 -21.296268,-1.23851 0.0953,0.476477 1.928934,1.360996 2.302965,1.663733"
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
inkscape:connector-curvature="0"
|
||||||
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"
|
id="path833-7"
|
||||||
inkscape:connector-curvature="0" />
|
d="M 12.756695,20.042186 C 18.416439,16.062161 25.70522,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988082 29.207101,0.4402425 18.893463,6.8361942 13.370906,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
|
||||||
|
style="fill:#6699cc;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
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"
|
id="path5043"
|
||||||
inkscape:connector-curvature="0" />
|
d="M 24.993675,13.852831 C 23.111329,11.112846 22.776665,7.1008422 24.899181,4.5924141 28.443308,3.5516118 32.34615,3.7638575 35.151786,5.8680839 34.290793,8.2025937 31.848954,10.704232 32.978422,13.285862"
|
||||||
|
style="fill:#333333;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="ccsccc" />
|
id="path5045"
|
||||||
|
d="m 32.97842,13.285862 c -1.622684,-1.035005 -4.693573,-0.02406 -6.709075,0.0945"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="ccsccc"
|
||||||
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"
|
inkscape:connector-curvature="0"
|
||||||
|
id="path5057"
|
||||||
|
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"
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
id="path5059"
|
id="path5059"
|
||||||
inkscape:connector-curvature="0" />
|
d="M 15.537908,8.9384397 C 13.980201,6.756896 10.705056,5.0717367 8.3808294,3.6521391 8.0327779,4.6634621 8.1572432,5.7312218 8.0376818,6.7672806 8.4787557,6.6562752 8.5984797,6.227326 8.8710403,5.9648957 8.9919797,7.3299488 9.1194496,8.5491118 9.7534199,9.6936258 10.049714,9.24812 10.142439,8.5379754 10.341673,7.9944576 c 0.285982,1.3580005 0.172484,2.8610974 0.392168,4.2007214 0.248875,-0.839177 0.348466,-1.693489 0.588254,-2.5015532 1.028074,0.8901012 1.251834,2.2544372 1.715738,3.4455352 0.08118,-1.814112 1.504476,-2.893544 2.500075,-4.2007213 z"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.509042;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
inkscape:groupmode="layer"
|
transform="translate(-0.15841594,-0.15372664)"
|
||||||
id="layer2"
|
|
||||||
inkscape:label="Re-ink"
|
|
||||||
style="display:inline"
|
style="display:inline"
|
||||||
sodipodi:insensitive="true">
|
inkscape:label="Re-ink"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:groupmode="layer">
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="csc"
|
||||||
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"
|
inkscape:connector-curvature="0"
|
||||||
id="path868"
|
id="path868"
|
||||||
inkscape:connector-curvature="0"
|
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"
|
||||||
sodipodi:nodetypes="csc" />
|
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="cccccccsccccccccc"
|
||||||
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"
|
inkscape:connector-curvature="0"
|
||||||
id="path831"
|
id="path831"
|
||||||
inkscape:connector-curvature="0"
|
d="m 34.726562,20.939881 c 1.424506,0.409095 2.905615,0.519717 4.441219,0.519717 -0.631435,0.891699 -1.802841,1.33673 -2.83482,1.795387 0.679627,2.000634 1.918617,4.085351 2.55134,6.236607 -0.196308,-1.69902 -1.726382,-2.566552 -2.976563,-3.449033 -1.289202,1.845105 -2.41318,3.349976 -4.44122,4.110491 -0.02396,-1.807178 -0.561611,-3.490926 -2.102492,-4.464844 -1.266898,0.154353 -2.347681,0.239471 -2.62221,1.063059 -0.342642,1.027925 -0.123795,3.337174 2.207894,3.621326 m -8.822478,-0.314035 c 2.922238,-0.08554 0.344395,-5.168508 -2.315104,-4.346726 -1.654478,0.194645 -1.540993,1.586537 -1.417411,3.02381 -1.143466,-0.967549 -1.993973,-1.935805 -2.315104,-3.449033 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176"
|
||||||
sodipodi:nodetypes="cccccccsscccccccccsccccccc" />
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
inkscape:connector-curvature="0"
|
||||||
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"
|
id="path833"
|
||||||
inkscape:connector-curvature="0" />
|
d="M 12.756696,20.042186 C 18.41644,16.062161 25.705221,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988086 29.207102,0.4402425 18.893464,6.8361949 13.370907,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
inkscape:connector-curvature="0"
|
||||||
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"
|
id="path852"
|
||||||
inkscape:connector-curvature="0" />
|
d="m 25.088169,19.569717 c 1.190156,-0.763595 2.367736,-0.865038 3.449032,0 -0.218392,0.862046 -0.809812,1.244368 -1.464656,1.653646 -0.887893,-0.606787 -1.473948,-1.058147 -1.984376,-1.653646 z"
|
||||||
|
style="fill:#ff99cc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="cccccccccc"
|
||||||
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"
|
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"
|
id="path860"
|
||||||
|
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"
|
||||||
|
style="fill:#954b02;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
inkscape:connector-curvature="0"
|
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"
|
id="path870"
|
||||||
inkscape:connector-curvature="0" />
|
d="M 23.765253,4.4979163 23.623512,2.4662944 26.836309,2.4190474 V 3.836458 Z"
|
||||||
|
style="fill:#6699cc;fill-opacity:1;stroke:#000000;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
inkscape:connector-curvature="0"
|
||||||
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"
|
id="path5047"
|
||||||
inkscape:connector-curvature="0" />
|
d="M 12.757044,20.045314 C 8.5429472,14.783337 6.1354862,7.5554427 6.1354862,0.80142861 11.351958,1.2722088 15.093613,5.0085232 18.952931,7.8743621"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:1.18376;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 11 KiB |
163
sprites/character_base_head.svg
Normal file
|
@ -0,0 +1,163 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<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"
|
||||||
|
sodipodi:docname="character_base_head.svg"
|
||||||
|
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||||
|
id="svg8"
|
||||||
|
version="1.1"
|
||||||
|
viewBox="0 0 43.377263 31.415143"
|
||||||
|
height="31.415144mm"
|
||||||
|
width="43.377262mm">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
inkscape:lockguides="false"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-top="0"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:current-layer="layer3"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:cy="144.59338"
|
||||||
|
inkscape:cx="57.651847"
|
||||||
|
inkscape:zoom="2.8"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
id="base" />
|
||||||
|
<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
|
||||||
|
style="display:inline"
|
||||||
|
transform="translate(-76.736396,-103.45983)"
|
||||||
|
id="layer1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(-0.15841594,-0.15372664)"
|
||||||
|
inkscape:label="Color"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:groupmode="layer">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="cccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path864"
|
||||||
|
d="m 12.756696,20.042186 c -3.0330485,3.485978 -6.9287479,8.842867 -10.6778266,9.780135 5.411336,2.216856 13.7737856,1.25077 18.6153276,-3.590773 -1.673498,-3.036966 -4.542199,-5.822302 -7.937501,-6.189362 z"
|
||||||
|
style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="cccccccscccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path831-5"
|
||||||
|
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 2.11006,3.490086 2.11006,3.490086 l -8.724644,-0.182793 c 0,0 2.139782,-5.92446 -2.315104,-4.346726 -1.654478,0.194645 -1.540993,1.586536 -1.417411,3.023812 -1.143466,-0.96755 -1.993973,-1.935806 -2.315104,-3.449035 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176 8.399753,-4.993925 13.806413,-4.295882 18.993302,-0.425223 z"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="cccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path868-9"
|
||||||
|
d="M 31.513766,4.4697399 33.171594,0.92059932 36.191219,5.9184807 Z"
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:1.42187;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path845"
|
||||||
|
d="m 15.733259,21.365104 c 8.031531,-1.988559 12.40585,-4.181396 18.993303,-0.425223 4.457472,-16.6670615 -22.644325,-7.978795 -21.296268,-1.23851 0.0953,0.476477 1.928934,1.360996 2.302965,1.663733"
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path833-7"
|
||||||
|
d="M 12.756695,20.042186 C 18.416439,16.062161 25.70522,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988082 29.207101,0.4402425 18.893463,6.8361942 13.370906,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
|
||||||
|
style="fill:#6699cc;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path5043"
|
||||||
|
d="M 24.993675,13.852831 C 23.111329,11.112846 22.776665,7.1008422 24.899181,4.5924141 28.443308,3.5516118 32.34615,3.7638575 35.151786,5.8680839 34.290793,8.2025937 31.848954,10.704232 32.978422,13.285862"
|
||||||
|
style="fill:#333333;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path5045"
|
||||||
|
d="m 32.97842,13.285862 c -1.622684,-1.035005 -4.693573,-0.02406 -6.709075,0.0945"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccsccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path5057"
|
||||||
|
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"
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path5059"
|
||||||
|
d="M 15.537908,8.9384397 C 13.980201,6.756896 10.705056,5.0717367 8.3808294,3.6521391 8.0327779,4.6634621 8.1572432,5.7312218 8.0376818,6.7672806 8.4787557,6.6562752 8.5984797,6.227326 8.8710403,5.9648957 8.9919797,7.3299488 9.1194496,8.5491118 9.7534199,9.6936258 10.049714,9.24812 10.142439,8.5379754 10.341673,7.9944576 c 0.285982,1.3580005 0.172484,2.8610974 0.392168,4.2007214 0.248875,-0.839177 0.348466,-1.693489 0.588254,-2.5015532 1.028074,0.8901012 1.251834,2.2544372 1.715738,3.4455352 0.08118,-1.814112 1.504476,-2.893544 2.500075,-4.2007213 z"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.509042;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-0.15841594,-0.15372664)"
|
||||||
|
style="display:inline"
|
||||||
|
inkscape:label="Re-ink"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:groupmode="layer">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="csc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path868"
|
||||||
|
d="m 31.324776,3.8055155 c 0,0 1.628858,-3.7746833 2.315104,-2.93216171 2.908313,3.57061041 2.551339,5.04512691 2.551339,5.04512691"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="cccccccsccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path831"
|
||||||
|
d="m 34.726562,20.939881 c 1.424506,0.409095 2.905615,0.519717 4.441219,0.519717 -0.631435,0.891699 -1.802841,1.33673 -2.83482,1.795387 0.679627,2.000634 1.918617,4.085351 2.55134,6.236607 -0.196308,-1.69902 -1.726382,-2.566552 -2.976563,-3.449033 -1.289202,1.845105 -2.41318,3.349976 -4.44122,4.110491 -0.02396,-1.807178 -0.561611,-3.490926 -2.102492,-4.464844 -1.266898,0.154353 -2.347681,0.239471 -2.62221,1.063059 -0.342642,1.027925 -0.123795,3.337174 2.207894,3.621326 m -8.822478,-0.314035 c 2.922238,-0.08554 0.344395,-5.168508 -2.315104,-4.346726 -1.654478,0.194645 -1.540993,1.586537 -1.417411,3.02381 -1.143466,-0.967549 -1.993973,-1.935805 -2.315104,-3.449033 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176"
|
||||||
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path833"
|
||||||
|
d="M 12.756696,20.042186 C 18.41644,16.062161 25.705221,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988086 29.207102,0.4402425 18.893464,6.8361949 13.370907,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path852"
|
||||||
|
d="m 25.088169,19.569717 c 1.190156,-0.763595 2.367736,-0.865038 3.449032,0 -0.218392,0.862046 -0.809812,1.244368 -1.464656,1.653646 -0.887893,-0.606787 -1.473948,-1.058147 -1.984376,-1.653646 z"
|
||||||
|
style="fill:#ff99cc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="cccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path860"
|
||||||
|
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"
|
||||||
|
style="fill:#954b02;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path870"
|
||||||
|
d="M 23.765253,4.4979163 23.623512,2.4662944 26.836309,2.4190474 V 3.836458 Z"
|
||||||
|
style="fill:#6699cc;fill-opacity:1;stroke:#000000;stroke-width:0.8;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path5047"
|
||||||
|
d="M 12.757044,20.045314 C 8.5429472,14.783337 6.1354862,7.5554427 6.1354862,0.80142861 11.351958,1.2722088 15.093613,5.0085232 18.952931,7.8743621"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:1.18376;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 11 KiB |
37
sprites/character_base_head.svg.import
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path.s3tc="res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.s3tc.stex"
|
||||||
|
path.etc2="res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.etc2.stex"
|
||||||
|
path.etc="res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.etc.stex"
|
||||||
|
metadata={
|
||||||
|
"imported_formats": [ "s3tc", "etc2", "etc" ],
|
||||||
|
"vram_texture": true
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/character_base_head.svg"
|
||||||
|
dest_files=[ "res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.s3tc.stex", "res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.etc2.stex", "res://.import/character_base_head.svg-676d46367d94a199498d7bd1637f2751.etc.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=2
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=true
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=true
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=false
|
||||||
|
svg/scale=1.0
|
95
sprites/character_base_legs.svg
Normal file
|
@ -0,0 +1,95 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<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="29.356466mm"
|
||||||
|
height="34.165901mm"
|
||||||
|
viewBox="0 0 29.356466 34.165901"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||||
|
sodipodi:docname="character_base_legs.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="73.396683"
|
||||||
|
inkscape:cy="-10.45786"
|
||||||
|
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="621"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:lockguides="false"
|
||||||
|
inkscape:document-rotation="0" />
|
||||||
|
<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(-81.705925,-155.78783)"
|
||||||
|
style="display:inline" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:label="Color"
|
||||||
|
transform="translate(-5.1279453,-52.481727)">
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 31.277528,52.54814 c 0.123737,9.510183 1.595727,14.061304 0.897694,24.75744 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 7.053048,-18.83034 9.506101,-26.36384 6.316309,-1.082015 9.304294,-1.562397 16.00729,-1.748141 z"
|
||||||
|
id="path831-5"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 15.270238,54.296281 c -0.52762,2.533268 6.446629,6.5124 8.920238,7.984749 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.379703,-10.376276 1.852083,-7.843008 z"
|
||||||
|
id="path857"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="zczczzcczscz" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
sodipodi:insensitive="true"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Re-ink"
|
||||||
|
style="display:inline"
|
||||||
|
transform="translate(-5.1279453,-52.481727)">
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 31.277528,52.54814 c 1.05918,9.510183 1.595725,14.061303 0.897695,24.75744 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 C 10.853501,74.396286 12.817185,61.82978 15.270238,54.296281"
|
||||||
|
id="path831"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccccc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.3 KiB |
37
sprites/character_base_legs.svg.import
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path.s3tc="res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.s3tc.stex"
|
||||||
|
path.etc2="res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.etc2.stex"
|
||||||
|
path.etc="res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.etc.stex"
|
||||||
|
metadata={
|
||||||
|
"imported_formats": [ "s3tc", "etc2", "etc" ],
|
||||||
|
"vram_texture": true
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/character_base_legs.svg"
|
||||||
|
dest_files=[ "res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.s3tc.stex", "res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.etc2.stex", "res://.import/character_base_legs.svg-4cf4e66a310067e682001fe7afdf827b.etc.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=2
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=true
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=true
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=false
|
||||||
|
svg/scale=1.0
|
123
sprites/character_base_top.svg
Normal file
|
@ -0,0 +1,123 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<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="24.488098mm"
|
||||||
|
height="31.425005mm"
|
||||||
|
viewBox="0 0 24.488098 31.425005"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||||
|
sodipodi:docname="character_base_top.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="18.91287"
|
||||||
|
inkscape:cy="108.53187"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
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="1920"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:lockguides="false"
|
||||||
|
inkscape:document-rotation="0" />
|
||||||
|
<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(-84.473399,-131.83647)"
|
||||||
|
style="display:inline" />
|
||||||
|
<g
|
||||||
|
transform="translate(-7.8954188,-28.530371)"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:label="Color">
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 29.910209,31.299682 c 1.635877,2.807358 2.473664,10.092655 1.22558,18.886106 -0.009,2.695737 -0.387428,2.891519 -0.854318,5.773189 -0.396007,2.444182 -4.158183,2.993284 -6.79482,3.565605 -2.636637,0.572321 -5.300631,0.716782 -8.74558,-0.465802 -4.857104,0.28571 -5.3976359,-5.320093 -2.267857,-8.872989 0,-5.167442 -0.342243,-10.519109 0.47247,-15.449778 0.254528,-4.326972 4.855698,-2.933067 7.181548,-4.677457 2.79006,-0.944145 3.912392,-3.475105 9.782977,1.241126 z"
|
||||||
|
id="path831-5"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccszccccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;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 -4.5795761,2.614718 -4.1562481,4.060169 0.59027,2.01547 5.9800391,4.399895 6.4241051,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.264583px;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.264583px;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" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-7.8954188,-28.530371)"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Re-ink"
|
||||||
|
style="display:inline">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="cc"
|
||||||
|
id="path905"
|
||||||
|
d="m 15.164486,53.229355 c -0.423415,4.241926 -0.451481,3.155076 -0.914783,6.188498"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 28.94971,30.372591 c 0.955508,0.116443 2.414609,6.044314 2.71946,9.24064 0.478561,5.017648 -0.684193,12.119509 -1.449976,15.051576"
|
||||||
|
id="path831"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cac" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 16.394717,36.578645 c -1.648817,5.874613 0.179145,15.295667 -1.702701,18.200412 -1.273861,7.360232 -11.7741761,-1.890817 -2.218802,-4.593268 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 4.655246,-4.603503 7.181548,-4.677456"
|
||||||
|
id="path856"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccccc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 29.104165,38.421279 c -0.654058,4.302781 1.411689,10.673354 1.407379,17.891589"
|
||||||
|
id="path858"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 6 KiB |
37
sprites/character_base_top.svg.import
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path.s3tc="res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.s3tc.stex"
|
||||||
|
path.etc2="res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.etc2.stex"
|
||||||
|
path.etc="res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.etc.stex"
|
||||||
|
metadata={
|
||||||
|
"imported_formats": [ "s3tc", "etc2", "etc" ],
|
||||||
|
"vram_texture": true
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/character_base_top.svg"
|
||||||
|
dest_files=[ "res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.s3tc.stex", "res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.etc2.stex", "res://.import/character_base_top.svg-9f8e94d783c70eb7b043560add3bb9e3.etc.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=2
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=true
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=true
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=false
|
||||||
|
svg/scale=1.0
|
|
@ -1,6 +1,4 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
<svg
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
@ -9,39 +7,40 @@
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
width="28.045834mm"
|
sodipodi:docname="beat_up_jeans.svg"
|
||||||
height="29.633333mm"
|
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||||
viewBox="0 0 28.045834 29.633333"
|
|
||||||
version="1.1"
|
|
||||||
id="svg2007"
|
id="svg2007"
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
version="1.1"
|
||||||
sodipodi:docname="beat_up_jeans.svg">
|
viewBox="0 0 29.356467 35.498169"
|
||||||
|
height="35.498169mm"
|
||||||
|
width="29.356466mm">
|
||||||
<defs
|
<defs
|
||||||
id="defs2001" />
|
id="defs2001" />
|
||||||
<sodipodi:namedview
|
<sodipodi:namedview
|
||||||
id="base"
|
inkscape:document-rotation="0"
|
||||||
pagecolor="#ffffff"
|
inkscape:window-maximized="1"
|
||||||
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-y="-9"
|
||||||
inkscape:window-maximized="1" />
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
showguides="false"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-top="0"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:cy="72.755858"
|
||||||
|
inkscape:cx="60.889655"
|
||||||
|
inkscape:zoom="7.9195959"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
id="base" />
|
||||||
<metadata
|
<metadata
|
||||||
id="metadata2004">
|
id="metadata2004">
|
||||||
<rdf:RDF>
|
<rdf:RDF>
|
||||||
|
@ -50,65 +49,106 @@
|
||||||
<dc:format>image/svg+xml</dc:format>
|
<dc:format>image/svg+xml</dc:format>
|
||||||
<dc:type
|
<dc:type
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
<dc:title />
|
<dc:title></dc:title>
|
||||||
</cc:Work>
|
</cc:Work>
|
||||||
</rdf:RDF>
|
</rdf:RDF>
|
||||||
</metadata>
|
</metadata>
|
||||||
<g
|
<g
|
||||||
inkscape:label="Layer 1"
|
transform="translate(-78.947411,-133.03874)"
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer1"
|
id="layer1"
|
||||||
transform="translate(-78.959229,-134.01666)" />
|
|
||||||
<g
|
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="layer3"
|
inkscape:label="Layer 1">
|
||||||
|
<g
|
||||||
|
transform="translate(78.947411,133.03874)"
|
||||||
|
id="g865">
|
||||||
|
<g
|
||||||
|
style="display:inline"
|
||||||
|
transform="translate(-81.705925,-154.45556)"
|
||||||
|
id="layer1-9"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(-5.1279453,-51.149461)"
|
||||||
inkscape:label="Color"
|
inkscape:label="Color"
|
||||||
sodipodi:insensitive="true">
|
id="layer3-4">
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="cccccccc"
|
||||||
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"
|
inkscape:connector-curvature="0"
|
||||||
transform="scale(0.26458333)"
|
id="path831-5"
|
||||||
id="path2567-7"
|
d="m 31.277528,52.54814 c 0.123737,9.510183 1.595727,14.061304 0.897694,24.75744 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 7.053048,-18.83034 9.506101,-26.36384 5.087886,-3.444366 10.721705,-4.113736 16.00729,-1.748141 z"
|
||||||
inkscape:connector-curvature="0" />
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="zczczzcczscz"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path857"
|
||||||
|
d="m 15.270238,54.296281 c -0.52762,2.533268 6.446629,6.5124 8.920238,7.984749 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.379703,-10.376276 1.852083,-7.843008 z"
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
inkscape:groupmode="layer"
|
transform="translate(-5.1279453,-51.149461)"
|
||||||
|
style="display:inline"
|
||||||
|
inkscape:label="Re-ink"
|
||||||
|
id="layer2-2">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path831"
|
||||||
|
d="m 31.277528,52.54814 c 1.05918,9.510183 1.595725,14.061303 0.897695,24.75744 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 C 10.853501,74.396286 12.817185,61.82978 15.270238,54.296281"
|
||||||
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(0.011818,0.97792032)"
|
||||||
|
sodipodi:insensitive="true"
|
||||||
|
inkscape:label="Color"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:groupmode="layer">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path2567-7"
|
||||||
|
transform="scale(0.26458333)"
|
||||||
|
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"
|
||||||
|
style="fill:#6ba6ff;fill-opacity:1;stroke:none;stroke-width:3.77055;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(0.011818,0.97792032)"
|
||||||
|
inkscape:label="Re-ink"
|
||||||
id="layer2"
|
id="layer2"
|
||||||
inkscape:label="Re-ink">
|
inkscape:groupmode="layer">
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="ssssscss"
|
||||||
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"
|
inkscape:connector-curvature="0"
|
||||||
id="path2567"
|
id="path2567"
|
||||||
inkscape:connector-curvature="0"
|
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"
|
||||||
sodipodi:nodetypes="ssssscss" />
|
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.997624;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="czc"
|
||||||
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"
|
inkscape:connector-curvature="0"
|
||||||
id="path2571"
|
id="path2571"
|
||||||
inkscape:connector-curvature="0"
|
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"
|
||||||
sodipodi:nodetypes="czc" />
|
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="cc"
|
||||||
d="M 19.695946,9.7169723 20.500613,2.7246489"
|
inkscape:connector-curvature="0"
|
||||||
id="path2573"
|
id="path2573"
|
||||||
inkscape:connector-curvature="0"
|
d="M 19.695946,9.7169723 20.500613,2.7246489"
|
||||||
sodipodi:nodetypes="cc" />
|
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="czccc"
|
||||||
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"
|
inkscape:connector-curvature="0"
|
||||||
id="path2569"
|
id="path2569"
|
||||||
inkscape:connector-curvature="0"
|
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"
|
||||||
sodipodi:nodetypes="czccc" />
|
style="fill:#676767;fill-opacity:1;stroke:#000000;stroke-width:0.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="csssc"
|
||||||
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"
|
inkscape:connector-curvature="0"
|
||||||
id="path2583"
|
id="path2583"
|
||||||
inkscape:connector-curvature="0"
|
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"
|
||||||
sodipodi:nodetypes="csssc" />
|
style="fill:#989898;fill-opacity:1;stroke:none;stroke-width:0.265;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<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"
|
inkscape:connector-curvature="0"
|
||||||
d="M 9.6192654,3.7561084 18.999166,3.2834424 26.326292,2.1234846"
|
|
||||||
id="path2579"
|
id="path2579"
|
||||||
inkscape:connector-curvature="0" />
|
d="M 9.6192654,3.7561084 18.999166,3.2834424 26.326292,2.1234846"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 8.6 KiB |
|
@ -1,6 +1,4 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
<svg
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
@ -9,40 +7,41 @@
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
width="28.045834mm"
|
sodipodi:docname="blue_camo_jeans.svg"
|
||||||
height="29.633333mm"
|
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||||
viewBox="0 0 28.045834 29.633333"
|
|
||||||
version="1.1"
|
|
||||||
id="svg2007"
|
id="svg2007"
|
||||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
version="1.1"
|
||||||
sodipodi:docname="blue_camo_jeans.svg">
|
viewBox="0 0 29.356467 34.312774"
|
||||||
|
height="34.312775mm"
|
||||||
|
width="29.356466mm">
|
||||||
<defs
|
<defs
|
||||||
id="defs2001" />
|
id="defs2001" />
|
||||||
<sodipodi:namedview
|
<sodipodi:namedview
|
||||||
id="base"
|
inkscape:document-rotation="0"
|
||||||
pagecolor="#ffffff"
|
inkscape:lockguides="true"
|
||||||
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:window-maximized="1"
|
||||||
inkscape:lockguides="true" />
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
showguides="false"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-top="0"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:cy="50.729766"
|
||||||
|
inkscape:cx="68.730496"
|
||||||
|
inkscape:zoom="5.6"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
id="base" />
|
||||||
<metadata
|
<metadata
|
||||||
id="metadata2004">
|
id="metadata2004">
|
||||||
<rdf:RDF>
|
<rdf:RDF>
|
||||||
|
@ -56,36 +55,83 @@
|
||||||
</rdf:RDF>
|
</rdf:RDF>
|
||||||
</metadata>
|
</metadata>
|
||||||
<g
|
<g
|
||||||
inkscape:groupmode="layer"
|
sodipodi:insensitive="true"
|
||||||
id="layer2"
|
transform="translate(0.2625277,-0.1588812)"
|
||||||
inkscape:label="Re-ink"
|
inkscape:label="legs"
|
||||||
|
id="layer1"
|
||||||
|
inkscape:groupmode="layer">
|
||||||
|
<g
|
||||||
|
transform="translate(-0.2625277,-1.026511)"
|
||||||
|
id="g892">
|
||||||
|
<g
|
||||||
style="display:inline"
|
style="display:inline"
|
||||||
sodipodi:insensitive="true">
|
transform="translate(-81.705925,-154.45556)"
|
||||||
|
id="layer1-7"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(-5.1279453,-51.149461)"
|
||||||
|
inkscape:label="Color"
|
||||||
|
id="layer3">
|
||||||
<path
|
<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"
|
sodipodi:nodetypes="cccccccc"
|
||||||
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"
|
inkscape:connector-curvature="0"
|
||||||
|
id="path831-5"
|
||||||
|
d="m 31.277528,52.54814 c 0.123737,9.510183 1.595727,14.061304 0.897694,24.75744 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 7.053048,-18.83034 9.506101,-26.36384 6.269062,0.288149 10.768952,-0.71195 16.00729,-1.748141 z"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="zczczzcczscz"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path857"
|
||||||
|
d="m 15.270238,54.296281 c -0.52762,2.533268 6.446629,6.5124 8.920238,7.984749 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.379703,-10.376276 1.852083,-7.843008 z"
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-5.1279453,-51.149461)"
|
||||||
|
style="display:inline"
|
||||||
|
inkscape:label="Re-ink"
|
||||||
|
id="layer2-4">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path831"
|
||||||
|
d="m 31.277528,52.54814 c 1.05918,9.510183 1.595725,14.061303 0.897695,24.75744 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 C 10.853501,74.396286 12.817185,61.82978 15.270238,54.296281"
|
||||||
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(0.2625277,-0.1588812)"
|
||||||
|
style="display:inline"
|
||||||
|
inkscape:label="Re-ink"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:groupmode="layer">
|
||||||
|
<g
|
||||||
|
id="g919">
|
||||||
|
<path
|
||||||
|
style="fill:#003366;fill-opacity:1;stroke:#000000;stroke-width:0.997624;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 0.7201694,27.454536 C 6.1772493,19.62999 8.9207649,2.5232009 9.6761903,2.4050384 12.809926,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"
|
id="path2567"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="ssssscss" />
|
sodipodi:nodetypes="ssssscss" />
|
||||||
<path
|
<path
|
||||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.16287224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.162872px;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"
|
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"
|
id="path2614"
|
||||||
inkscape:connector-curvature="0" />
|
inkscape:connector-curvature="0" />
|
||||||
<path
|
<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"
|
style="fill:none;stroke:#000000;stroke-width:0.8;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"
|
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"
|
id="path2571"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="czc" />
|
sodipodi:nodetypes="czc" />
|
||||||
<path
|
<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"
|
style="fill:none;stroke:#000000;stroke-width:0.8;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"
|
d="M 19.627919,9.5159193 20.501823,2.9925194"
|
||||||
id="path2573"
|
id="path2573"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="cc" />
|
sodipodi:nodetypes="cc" />
|
||||||
<path
|
<path
|
||||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;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"
|
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"
|
id="path2612"
|
||||||
inkscape:connector-curvature="0" />
|
inkscape:connector-curvature="0" />
|
||||||
|
@ -101,67 +147,67 @@
|
||||||
id="path2579"
|
id="path2579"
|
||||||
inkscape:connector-curvature="0" />
|
inkscape:connector-curvature="0" />
|
||||||
<path
|
<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"
|
style="fill:none;stroke:#000000;stroke-width:0.3;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"
|
d="M 17.378461,10.423336 C 18.358853,9.5255596 20.263676,8.8393651 21.548606,9.4878927"
|
||||||
id="path2598"
|
id="path2598"
|
||||||
inkscape:connector-curvature="0" />
|
inkscape:connector-curvature="0" />
|
||||||
<path
|
<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"
|
style="fill:none;stroke:#000000;stroke-width:0.3;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"
|
d="m 18.37478,11.191736 c -1.268353,0.549435 -2.308696,1.415572 -3.474504,2.071338"
|
||||||
id="path2600"
|
id="path2600"
|
||||||
inkscape:connector-curvature="0" />
|
inkscape:connector-curvature="0" />
|
||||||
<path
|
<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"
|
style="fill:none;stroke:#000000;stroke-width:0.3;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"
|
d="m 20.713388,10.256292 c 0.114075,1.271813 0.770932,2.519239 1.135896,3.674956"
|
||||||
id="path2602"
|
id="path2602"
|
||||||
inkscape:connector-curvature="0" />
|
inkscape:connector-curvature="0" />
|
||||||
<path
|
<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"
|
style="fill:none;stroke:#000000;stroke-width:0.3;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"
|
d="m 20.112032,12.661718 c 0.198181,0.379098 0.133634,0.857634 0.133634,1.302939"
|
||||||
id="path2610"
|
id="path2610"
|
||||||
inkscape:connector-curvature="0" />
|
inkscape:connector-curvature="0" />
|
||||||
<path
|
<path
|
||||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;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"
|
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"
|
id="path2616"
|
||||||
inkscape:connector-curvature="0" />
|
inkscape:connector-curvature="0" />
|
||||||
<path
|
<path
|
||||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;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"
|
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"
|
id="path2618"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="cssc" />
|
sodipodi:nodetypes="cssc" />
|
||||||
<path
|
<path
|
||||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;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"
|
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"
|
id="path2620"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="cscsssc" />
|
sodipodi:nodetypes="cscsssc" />
|
||||||
<path
|
<path
|
||||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;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"
|
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"
|
id="path2622"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="csscc" />
|
sodipodi:nodetypes="csscc" />
|
||||||
<path
|
<path
|
||||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;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"
|
d="m 3.0067821,24.555212 c 5.2682351,2.02902 0.5412926,5.21361 -1.6184389,2.932734"
|
||||||
id="path2630"
|
id="path2630"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="cc" />
|
sodipodi:nodetypes="cc" />
|
||||||
<path
|
<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"
|
style="fill:none;stroke:#000000;stroke-width:0.3;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"
|
d="m 2.4722431,27.261317 c 2.4690673,0.273878 4.4470478,-0.03985 6.6483295,-0.734991"
|
||||||
id="path2624"
|
id="path2624"
|
||||||
inkscape:connector-curvature="0" />
|
inkscape:connector-curvature="0" />
|
||||||
<path
|
<path
|
||||||
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.264583px;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"
|
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"
|
id="path2632"
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="ccc" />
|
sodipodi:nodetypes="ccc" />
|
||||||
<path
|
<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"
|
style="fill:none;stroke:#000000;stroke-width:0.3;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"
|
d="m 19.510675,26.259055 c 2.42248,0.323735 4.741824,0.77491 6.748556,-0.801809"
|
||||||
id="path2626"
|
id="path2626"
|
||||||
inkscape:connector-curvature="0" />
|
inkscape:connector-curvature="0" />
|
||||||
|
@ -171,14 +217,14 @@
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
id="path2604"
|
id="path2604"
|
||||||
d="m 18.999166,3.2834423 c -0.04805,1.5545165 -0.562287,2.9032809 -1.459603,4.0997026"
|
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" />
|
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
<ellipse
|
<ellipse
|
||||||
ry="0.28397387"
|
ry="0.28397387"
|
||||||
rx="0.25056517"
|
rx="0.25056517"
|
||||||
cy="7.3664403"
|
cy="7.3664403"
|
||||||
cx="17.472746"
|
cx="17.472746"
|
||||||
id="path2634"
|
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" />
|
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.313172;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
</g>
|
</g>
|
||||||
<g
|
<g
|
||||||
id="g2653">
|
id="g2653">
|
||||||
|
@ -186,14 +232,15 @@
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
id="path2606"
|
id="path2606"
|
||||||
d="m 20.501823,2.9925195 c 0.561916,1.1250721 1.083725,2.4049651 1.848591,3.3883647"
|
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" />
|
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
<ellipse
|
<ellipse
|
||||||
ry="0.28397387"
|
ry="0.28397387"
|
||||||
rx="0.25056517"
|
rx="0.25056517"
|
||||||
cy="6.3808842"
|
cy="6.3808842"
|
||||||
cx="22.367119"
|
cx="22.367119"
|
||||||
id="path2634-8"
|
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" />
|
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.313172;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 14 KiB |
|
@ -1,6 +1,4 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
|
||||||
|
|
||||||
<svg
|
<svg
|
||||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
xmlns:cc="http://creativecommons.org/ns#"
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
@ -9,39 +7,40 @@
|
||||||
xmlns="http://www.w3.org/2000/svg"
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
width="28.045834mm"
|
sodipodi:docname="blue_skirt.svg"
|
||||||
height="29.633333mm"
|
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
|
||||||
viewBox="0 0 28.045834 29.633333"
|
|
||||||
version="1.1"
|
|
||||||
id="svg2007"
|
id="svg2007"
|
||||||
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
version="1.1"
|
||||||
sodipodi:docname="blue_skirt.svg">
|
viewBox="0 0 29.356467 34.948318"
|
||||||
|
height="34.948318mm"
|
||||||
|
width="29.356466mm">
|
||||||
<defs
|
<defs
|
||||||
id="defs2001" />
|
id="defs2001" />
|
||||||
<sodipodi:namedview
|
<sodipodi:namedview
|
||||||
id="base"
|
inkscape:document-rotation="0"
|
||||||
pagecolor="#ffffff"
|
inkscape:window-maximized="1"
|
||||||
bordercolor="#666666"
|
|
||||||
borderopacity="1.0"
|
|
||||||
inkscape:pageopacity="0.0"
|
|
||||||
inkscape:pageshadow="2"
|
|
||||||
inkscape:zoom="7.9195959"
|
|
||||||
inkscape:cx="78.143852"
|
|
||||||
inkscape:cy="76.635925"
|
|
||||||
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="1911"
|
|
||||||
inkscape:window-y="-9"
|
inkscape:window-y="-9"
|
||||||
inkscape:window-maximized="1" />
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
showguides="false"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-top="0"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:cy="90.492535"
|
||||||
|
inkscape:cx="73.671713"
|
||||||
|
inkscape:zoom="7.9195959"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
borderopacity="1.0"
|
||||||
|
bordercolor="#666666"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
id="base" />
|
||||||
<metadata
|
<metadata
|
||||||
id="metadata2004">
|
id="metadata2004">
|
||||||
<rdf:RDF>
|
<rdf:RDF>
|
||||||
|
@ -50,54 +49,94 @@
|
||||||
<dc:format>image/svg+xml</dc:format>
|
<dc:format>image/svg+xml</dc:format>
|
||||||
<dc:type
|
<dc:type
|
||||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
<dc:title />
|
<dc:title></dc:title>
|
||||||
</cc:Work>
|
</cc:Work>
|
||||||
</rdf:RDF>
|
</rdf:RDF>
|
||||||
</metadata>
|
</metadata>
|
||||||
<g
|
<g
|
||||||
inkscape:label="Layer 1"
|
transform="translate(-78.906361,-133.95857)"
|
||||||
inkscape:groupmode="layer"
|
|
||||||
id="layer1"
|
id="layer1"
|
||||||
transform="translate(-78.959229,-134.01666)" />
|
|
||||||
<g
|
|
||||||
inkscape:groupmode="layer"
|
inkscape:groupmode="layer"
|
||||||
id="layer2"
|
inkscape:label="Layer 1">
|
||||||
inkscape:label="Re-ink">
|
<g
|
||||||
|
transform="translate(78.906361,133.40872)"
|
||||||
|
id="g1480">
|
||||||
|
<g
|
||||||
|
style="display:inline"
|
||||||
|
transform="translate(-81.705925,-154.45556)"
|
||||||
|
id="layer1-7"
|
||||||
|
inkscape:label="Layer 1" />
|
||||||
|
<g
|
||||||
|
transform="translate(-5.1279453,-51.149461)"
|
||||||
|
inkscape:label="Color"
|
||||||
|
id="layer3">
|
||||||
<path
|
<path
|
||||||
style="fill:#4791ff;fill-opacity:1;stroke:#000000;stroke-width:0.99800003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
sodipodi:nodetypes="cccccccc"
|
||||||
d="M 10.089425,2.5388847 26.192414,0.50095454 c 0,0 1.102652,8.28470726 1.570209,16.00276246 0.0682,1.125724 -2.223008,0.683836 -3.34087,0.53454 -0.375462,-0.05015 -0.656939,-0.460713 -1.03567,-0.467722 -1.238515,-0.02292 -2.203485,1.455757 -3.441095,1.403165 -0.587163,-0.02495 -0.983564,-0.766695 -1.570208,-0.801809 -1.255555,-0.07515 -2.06806,1.45325 -3.541321,1.302939 -0.411705,-0.042 -0.722174,-0.491133 -1.135896,-0.50113 -1.240516,-0.02998 -2.234561,1.288171 -3.474503,1.336348 C 9.131624,19.352455 8.1694591,18.48351 7.0826425,18.374604 5.9700902,18.263119 3.2661714,19.687213 3.7417734,18.675282 8.4283356,8.7037569 10.089425,2.5388847 10.089425,2.5388847 Z"
|
|
||||||
id="path824"
|
|
||||||
inkscape:connector-curvature="0"
|
inkscape:connector-curvature="0"
|
||||||
sodipodi:nodetypes="ccssssssssssc" />
|
id="path831-5"
|
||||||
|
d="m 31.277528,52.54814 c 0.123737,9.510183 1.595727,14.061304 0.897694,24.75744 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 7.053048,-18.83034 9.506101,-26.36384 5.589016,-0.938714 10.922157,-1.641493 16.00729,-1.748141 z"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
<path
|
<path
|
||||||
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
sodipodi:nodetypes="zczczzcczscz"
|
||||||
d="M 8.3187639,16.904622 C 13.931424,5.2783972 12.795528,5.6458929 12.795528,5.6458929"
|
inkscape:connector-curvature="0"
|
||||||
|
id="path857"
|
||||||
|
d="m 15.270238,54.296281 c -0.52762,2.533268 6.446629,6.5124 8.920238,7.984749 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.379703,-10.376276 1.852083,-7.843008 z"
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(-5.1279453,-51.149461)"
|
||||||
|
style="display:inline"
|
||||||
|
inkscape:label="Re-ink"
|
||||||
|
id="layer2-7">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path831"
|
||||||
|
d="m 31.277528,52.54814 c 1.05918,9.510183 1.595725,14.061303 0.897695,24.75744 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 C 10.853501,74.396286 12.817185,61.82978 15.270238,54.296281"
|
||||||
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
transform="translate(0.052868,0.05808953)"
|
||||||
|
inkscape:label="Re-ink"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:groupmode="layer">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ccssssssssssc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path824"
|
||||||
|
d="m 9.942268,2.5388847 16.23706,-2.03793016 c 0,0 1.111833,8.28470726 1.583283,16.00276246 0.06877,1.125724 -2.241517,0.683836 -3.368686,0.53454 -0.378588,-0.05015 -0.662409,-0.460713 -1.044293,-0.467722 -1.248827,-0.02292 -2.221831,1.455757 -3.469745,1.403165 -0.592052,-0.02495 -0.991753,-0.766695 -1.583281,-0.801809 -1.266009,-0.07515 -2.085279,1.45325 -3.570806,1.302939 -0.415133,-0.042 -0.728187,-0.491133 -1.145353,-0.50113 -1.250845,-0.02998 -2.253166,1.288171 -3.503431,1.336348 C 8.9764925,19.352455 8.0063167,18.48351 6.9104514,18.374604 5.7886362,18.263119 3.0622049,19.687213 3.5417667,18.675282 8.2673486,8.7037569 9.942268,2.5388847 9.942268,2.5388847 Z"
|
||||||
|
style="fill:#4791ff;fill-opacity:1;stroke:#000000;stroke-width:1.00215;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
id="path826"
|
id="path826"
|
||||||
inkscape:connector-curvature="0" />
|
d="M 8.3187639,16.904622 C 13.931424,5.2783972 12.795528,5.6458929 12.795528,5.6458929"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
<path
|
<path
|
||||||
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
inkscape:connector-curvature="0"
|
||||||
d="m 12.828937,9.3542576 c -0.7684,4.2763124 -0.233861,7.3165034 -0.233861,7.3165034"
|
|
||||||
id="path828"
|
id="path828"
|
||||||
inkscape:connector-curvature="0" />
|
d="m 12.828937,9.3542576 c -0.7684,4.2763124 -0.233861,7.3165034 -0.233861,7.3165034"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
<path
|
<path
|
||||||
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
inkscape:connector-curvature="0"
|
||||||
d="M 15.935946,16.069405 C 17.907058,9.187214 17.071841,5.6124842 17.071841,5.6124842"
|
|
||||||
id="path830"
|
id="path830"
|
||||||
inkscape:connector-curvature="0" />
|
d="M 15.935946,16.069405 C 17.907058,9.187214 17.071841,5.6124842 17.071841,5.6124842"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
<path
|
<path
|
||||||
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
inkscape:connector-curvature="0"
|
||||||
d="m 17.895223,8.575149 c 0.360691,4.329803 1.661365,7.129221 1.661365,7.129221"
|
|
||||||
id="path828-1"
|
id="path828-1"
|
||||||
inkscape:connector-curvature="0" />
|
d="m 17.895223,8.575149 c 0.360691,4.329803 1.661365,7.129221 1.661365,7.129221"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
<path
|
<path
|
||||||
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
inkscape:connector-curvature="0"
|
||||||
d="M 23.175166,15.213039 C 22.814475,10.883236 21.513801,8.0838183 21.513801,8.0838183"
|
|
||||||
id="path828-1-6"
|
id="path828-1-6"
|
||||||
inkscape:connector-curvature="0" />
|
d="M 23.175166,15.213039 C 22.814475,10.883236 21.513801,8.0838183 21.513801,8.0838183"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
<path
|
<path
|
||||||
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
inkscape:connector-curvature="0"
|
||||||
d="M 24.578978,15.782268 C 22.607866,8.9000772 23.443083,5.3253473 23.443083,5.3253473"
|
|
||||||
id="path830-6"
|
id="path830-6"
|
||||||
inkscape:connector-curvature="0" />
|
d="M 24.578978,15.782268 C 22.607866,8.9000772 23.443083,5.3253473 23.443083,5.3253473"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.264583px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
</g>
|
</g>
|
||||||
</svg>
|
</svg>
|
||||||
|
|
Before Width: | Height: | Size: 4.6 KiB After Width: | Height: | Size: 7.3 KiB |
|
@ -1,34 +0,0 @@
|
||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="StreamTexture"
|
|
||||||
path="res://.import/classic_dress_up_blurred_bg.png-21899d83f42ae1cd02cd106046f74e05.stex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://sprites/clothes/classic_dress_up_blurred_bg.png"
|
|
||||||
dest_files=[ "res://.import/classic_dress_up_blurred_bg.png-21899d83f42ae1cd02cd106046f74e05.stex" ]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_mode=0
|
|
||||||
compress/bptc_ldr=0
|
|
||||||
compress/normal_map=0
|
|
||||||
flags/repeat=0
|
|
||||||
flags/filter=false
|
|
||||||
flags/mipmaps=false
|
|
||||||
flags/anisotropic=false
|
|
||||||
flags/srgb=2
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/HDR_as_SRGB=false
|
|
||||||
process/invert_color=false
|
|
||||||
stream=false
|
|
||||||
size_limit=0
|
|
||||||
detect_3d=false
|
|
||||||
svg/scale=1.0
|
|
|
@ -1,34 +0,0 @@
|
||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="StreamTexture"
|
|
||||||
path="res://.import/modern_dress_up_bg.png-2ec62cdd8ee1c5f60b5faa53f704458f.stex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://sprites/clothes/modern_dress_up_bg.png"
|
|
||||||
dest_files=[ "res://.import/modern_dress_up_bg.png-2ec62cdd8ee1c5f60b5faa53f704458f.stex" ]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_mode=0
|
|
||||||
compress/bptc_ldr=0
|
|
||||||
compress/normal_map=0
|
|
||||||
flags/repeat=0
|
|
||||||
flags/filter=false
|
|
||||||
flags/mipmaps=false
|
|
||||||
flags/anisotropic=false
|
|
||||||
flags/srgb=2
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/HDR_as_SRGB=false
|
|
||||||
process/invert_color=false
|
|
||||||
stream=false
|
|
||||||
size_limit=0
|
|
||||||
detect_3d=false
|
|
||||||
svg/scale=1.0
|
|
|
@ -1,34 +0,0 @@
|
||||||
[remap]
|
|
||||||
|
|
||||||
importer="texture"
|
|
||||||
type="StreamTexture"
|
|
||||||
path="res://.import/modern_dress_up_blurred_bg.png-75dc54176153d3b2378312626047f013.stex"
|
|
||||||
metadata={
|
|
||||||
"vram_texture": false
|
|
||||||
}
|
|
||||||
|
|
||||||
[deps]
|
|
||||||
|
|
||||||
source_file="res://sprites/clothes/modern_dress_up_blurred_bg.png"
|
|
||||||
dest_files=[ "res://.import/modern_dress_up_blurred_bg.png-75dc54176153d3b2378312626047f013.stex" ]
|
|
||||||
|
|
||||||
[params]
|
|
||||||
|
|
||||||
compress/mode=0
|
|
||||||
compress/lossy_quality=0.7
|
|
||||||
compress/hdr_mode=0
|
|
||||||
compress/bptc_ldr=0
|
|
||||||
compress/normal_map=0
|
|
||||||
flags/repeat=0
|
|
||||||
flags/filter=false
|
|
||||||
flags/mipmaps=false
|
|
||||||
flags/anisotropic=false
|
|
||||||
flags/srgb=2
|
|
||||||
process/fix_alpha_border=true
|
|
||||||
process/premult_alpha=false
|
|
||||||
process/HDR_as_SRGB=false
|
|
||||||
process/invert_color=false
|
|
||||||
stream=false
|
|
||||||
size_limit=0
|
|
||||||
detect_3d=false
|
|
||||||
svg/scale=1.0
|
|
34
sprites/new_character_base.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/new_character_base.svg-e37d5232b11c88359270a1b5f7a925f8.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/new_character_base.svg"
|
||||||
|
dest_files=[ "res://.import/new_character_base.svg-e37d5232b11c88359270a1b5f7a925f8.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=false
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=false
|
||||||
|
svg/scale=1.0
|
BIN
sprites/world.blend
Normal file
BIN
sprites/world.blend1
Normal file
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
|
@ -2,15 +2,15 @@
|
||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="StreamTexture"
|
type="StreamTexture"
|
||||||
path="res://.import/background.svg-53a5ac36b87b243d4a54ca15a9574f97.stex"
|
path="res://.import/background.svg-9a13379093158c4dd6765036ae620619.stex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://sprites/clothes/background.svg"
|
source_file="res://sprites/world/background.svg"
|
||||||
dest_files=[ "res://.import/background.svg-53a5ac36b87b243d4a54ca15a9574f97.stex" ]
|
dest_files=[ "res://.import/background.svg-9a13379093158c4dd6765036ae620619.stex" ]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
34
sprites/world/classic_dress_up_bg.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/classic_dress_up_bg.png-91243fdfc1a4ed4c9d92cd705c19bfd4.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/world/classic_dress_up_bg.png"
|
||||||
|
dest_files=[ "res://.import/classic_dress_up_bg.png-91243fdfc1a4ed4c9d92cd705c19bfd4.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=false
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=false
|
||||||
|
svg/scale=1.0
|
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
34
sprites/world/classic_dress_up_blurred_bg.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/classic_dress_up_blurred_bg.png-ce6fef332733ba210937c36735d40783.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/world/classic_dress_up_blurred_bg.png"
|
||||||
|
dest_files=[ "res://.import/classic_dress_up_blurred_bg.png-ce6fef332733ba210937c36735d40783.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=false
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=false
|
||||||
|
svg/scale=1.0
|
Before Width: | Height: | Size: 30 KiB After Width: | Height: | Size: 30 KiB |
|
@ -2,15 +2,15 @@
|
||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="StreamTexture"
|
type="StreamTexture"
|
||||||
path="res://.import/classic_dress_up_bg.png-594c00eaf14ad58cdedc1824d8f59a5c.stex"
|
path="res://.import/dressup_blurred_wardrobe.png-ccd2427a9b242dfea390fb0dba1cb8b6.stex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://sprites/clothes/classic_dress_up_bg.png"
|
source_file="res://sprites/world/dressup_blurred_wardrobe.png"
|
||||||
dest_files=[ "res://.import/classic_dress_up_bg.png-594c00eaf14ad58cdedc1824d8f59a5c.stex" ]
|
dest_files=[ "res://.import/dressup_blurred_wardrobe.png-ccd2427a9b242dfea390fb0dba1cb8b6.stex" ]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
@ -2,15 +2,15 @@
|
||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="StreamTexture"
|
type="StreamTexture"
|
||||||
path="res://.import/dressup_panel.svg-10ad40ebf590034174b6f525bb791368.stex"
|
path="res://.import/dressup_panel.svg-8a41151cb84a8483a6bad92f218a33e8.stex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://sprites/clothes/dressup_panel.svg"
|
source_file="res://sprites/world/dressup_panel.svg"
|
||||||
dest_files=[ "res://.import/dressup_panel.svg-10ad40ebf590034174b6f525bb791368.stex" ]
|
dest_files=[ "res://.import/dressup_panel.svg-8a41151cb84a8483a6bad92f218a33e8.stex" ]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
Before Width: | Height: | Size: 8.3 KiB After Width: | Height: | Size: 8.3 KiB |
|
@ -2,15 +2,15 @@
|
||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="StreamTexture"
|
type="StreamTexture"
|
||||||
path="res://.import/dressup_wardrobe.png-c4a59bdd169c023e961e92917f5fd969.stex"
|
path="res://.import/dressup_wardrobe.png-3622bbe4ab99a88bf60cd058eb099f9f.stex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://sprites/clothes/dressup_wardrobe.png"
|
source_file="res://sprites/world/dressup_wardrobe.png"
|
||||||
dest_files=[ "res://.import/dressup_wardrobe.png-c4a59bdd169c023e961e92917f5fd969.stex" ]
|
dest_files=[ "res://.import/dressup_wardrobe.png-3622bbe4ab99a88bf60cd058eb099f9f.stex" ]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
Before Width: | Height: | Size: 2.9 KiB After Width: | Height: | Size: 2.9 KiB |
|
@ -2,15 +2,15 @@
|
||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="StreamTexture"
|
type="StreamTexture"
|
||||||
path="res://.import/dressup_wardrobe.svg-469d705b19d4010c02c75ae841bf12a7.stex"
|
path="res://.import/dressup_wardrobe.svg-50694cf0e1b6e5ed9fafb867a0443a2e.stex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://sprites/clothes/dressup_wardrobe.svg"
|
source_file="res://sprites/world/dressup_wardrobe.svg"
|
||||||
dest_files=[ "res://.import/dressup_wardrobe.svg-469d705b19d4010c02c75ae841bf12a7.stex" ]
|
dest_files=[ "res://.import/dressup_wardrobe.svg-50694cf0e1b6e5ed9fafb867a0443a2e.stex" ]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 5.3 KiB |
34
sprites/world/modern_dress_up_bg.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/modern_dress_up_bg.png-27905358c41c27aeb52d5d89ce00ae1c.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/world/modern_dress_up_bg.png"
|
||||||
|
dest_files=[ "res://.import/modern_dress_up_bg.png-27905358c41c27aeb52d5d89ce00ae1c.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=false
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=false
|
||||||
|
svg/scale=1.0
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 10 KiB |
|
@ -2,15 +2,15 @@
|
||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="StreamTexture"
|
type="StreamTexture"
|
||||||
path="res://.import/dressup_blurred_wardrobe.png-8d6b33052b265436c0bddfa109913146.stex"
|
path="res://.import/modern_dress_up_blurred_bg.png-a91fc2889db09eed8864cdf2b9441122.stex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://sprites/clothes/dressup_blurred_wardrobe.png"
|
source_file="res://sprites/world/modern_dress_up_blurred_bg.png"
|
||||||
dest_files=[ "res://.import/dressup_blurred_wardrobe.png-8d6b33052b265436c0bddfa109913146.stex" ]
|
dest_files=[ "res://.import/modern_dress_up_blurred_bg.png-a91fc2889db09eed8864cdf2b9441122.stex" ]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|