mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-07 22:04:49 -04:00
X button
- Replaced "Remove [clothing type]" text with an X button. Common visuals are easier to understand and universal, regardless of language or country.
This commit is contained in:
parent
6aac8c0dec
commit
8364b235a6
8 changed files with 282 additions and 82 deletions
|
@ -3,8 +3,6 @@ KENG,English,Engelsk
|
|||
KSWD,Swedish,Svenska
|
||||
KBOT,Pants,Byxor
|
||||
KTOP,Shirts,Skjorta
|
||||
KRTP,Remove Shirt,Ta av skjortan
|
||||
KRBT,Remove Pants,Ta bort byxor
|
||||
KCLS,Classic,Klassisk
|
||||
KUND,Underwear,Underkläder
|
||||
KRUS,Resume,Återuppta
|
||||
|
|
|
Binary file not shown.
Binary file not shown.
|
@ -1,4 +1,4 @@
|
|||
[gd_scene load_steps=29 format=2]
|
||||
[gd_scene load_steps=30 format=2]
|
||||
|
||||
[ext_resource path="res://src/Clothes.gd" type="Script" id=1]
|
||||
[ext_resource path="res://sprites/dressup_wardrobe.png" type="Texture" id=2]
|
||||
|
@ -8,23 +8,24 @@
|
|||
[ext_resource path="res://sprites/sweat_pants.svg" type="Texture" id=6]
|
||||
[ext_resource path="res://sprites/blue_camo_jeans.svg" type="Texture" id=7]
|
||||
[ext_resource path="res://sprites/beat_up_jeans.svg" type="Texture" id=8]
|
||||
[ext_resource path="res://sprites/old_sweatshirt.png" type="Texture" id=9]
|
||||
[ext_resource path="res://sprites/dj_shirt.png" type="Texture" id=10]
|
||||
[ext_resource path="res://sprites/raw_shirt.svg" type="Texture" id=11]
|
||||
[ext_resource path="res://sprites/atomic_shirt.svg" type="Texture" id=12]
|
||||
[ext_resource path="res://sprites/z_shirt.png" type="Texture" id=13]
|
||||
[ext_resource path="res://sprites/biker_jacket.png" type="Texture" id=14]
|
||||
[ext_resource path="res://sprites/nl_jacket.png" type="Texture" id=15]
|
||||
[ext_resource path="res://sprites/train_hoodie.png" type="Texture" id=16]
|
||||
[ext_resource path="res://sprites/korm_shirt.png" type="Texture" id=17]
|
||||
[ext_resource path="res://sprites/whatsnew_shirt.png" type="Texture" id=18]
|
||||
[ext_resource path="res://sprites/owo_censor.svg" type="Texture" id=19]
|
||||
[ext_resource path="res://sprites/briefs.svg" type="Texture" id=20]
|
||||
[ext_resource path="res://sprites/z_briefs.svg" type="Texture" id=21]
|
||||
[ext_resource path="res://sprites/fundosi.svg" type="Texture" id=22]
|
||||
[ext_resource path="res://sprites/camera.png" type="Texture" id=23]
|
||||
[ext_resource path="res://sprites/bottoms_placeholder.png" type="Texture" id=24]
|
||||
[ext_resource path="res://sprites/tops_placeholder.png" type="Texture" id=25]
|
||||
[ext_resource path="res://sprites/x_button.svg" type="Texture" id=9]
|
||||
[ext_resource path="res://sprites/old_sweatshirt.png" type="Texture" id=10]
|
||||
[ext_resource path="res://sprites/dj_shirt.png" type="Texture" id=11]
|
||||
[ext_resource path="res://sprites/raw_shirt.svg" type="Texture" id=12]
|
||||
[ext_resource path="res://sprites/atomic_shirt.svg" type="Texture" id=13]
|
||||
[ext_resource path="res://sprites/z_shirt.png" type="Texture" id=14]
|
||||
[ext_resource path="res://sprites/biker_jacket.png" type="Texture" id=15]
|
||||
[ext_resource path="res://sprites/nl_jacket.png" type="Texture" id=16]
|
||||
[ext_resource path="res://sprites/train_hoodie.png" type="Texture" id=17]
|
||||
[ext_resource path="res://sprites/korm_shirt.png" type="Texture" id=18]
|
||||
[ext_resource path="res://sprites/whatsnew_shirt.png" type="Texture" id=19]
|
||||
[ext_resource path="res://sprites/owo_censor.svg" type="Texture" id=20]
|
||||
[ext_resource path="res://sprites/briefs.svg" type="Texture" id=21]
|
||||
[ext_resource path="res://sprites/z_briefs.svg" type="Texture" id=22]
|
||||
[ext_resource path="res://sprites/fundosi.svg" type="Texture" id=23]
|
||||
[ext_resource path="res://sprites/camera.png" type="Texture" id=24]
|
||||
[ext_resource path="res://sprites/bottoms_placeholder.png" type="Texture" id=25]
|
||||
[ext_resource path="res://sprites/tops_placeholder.png" type="Texture" id=26]
|
||||
|
||||
[sub_resource type="StyleBoxEmpty" id=1]
|
||||
|
||||
|
@ -78,11 +79,11 @@ margin_top = 29.0
|
|||
custom_constants/hseparation = 0
|
||||
|
||||
[node name="PantsGrid" type="GridContainer" parent="RefRect/Wordrobe/Pants"]
|
||||
margin_left = -15.0
|
||||
margin_left = 32.0
|
||||
margin_top = 22.0
|
||||
margin_right = 536.0
|
||||
margin_right = 489.0
|
||||
margin_bottom = 322.0
|
||||
columns = 5
|
||||
columns = 4
|
||||
|
||||
[node name="Jeans" type="TextureButton" parent="RefRect/Wordrobe/Pants/PantsGrid"]
|
||||
margin_right = 106.0
|
||||
|
@ -91,38 +92,39 @@ texture_normal = ExtResource( 4 )
|
|||
|
||||
[node name="DJ Shorts" type="TextureButton" parent="RefRect/Wordrobe/Pants/PantsGrid"]
|
||||
margin_left = 110.0
|
||||
margin_right = 216.0
|
||||
margin_right = 228.0
|
||||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 5 )
|
||||
|
||||
[node name="Sweats" type="TextureButton" parent="RefRect/Wordrobe/Pants/PantsGrid"]
|
||||
margin_left = 220.0
|
||||
margin_right = 326.0
|
||||
margin_left = 232.0
|
||||
margin_right = 338.0
|
||||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 6 )
|
||||
|
||||
[node name="Blue Camo Jeans" type="TextureButton" parent="RefRect/Wordrobe/Pants/PantsGrid"]
|
||||
margin_left = 330.0
|
||||
margin_right = 436.0
|
||||
margin_left = 342.0
|
||||
margin_right = 448.0
|
||||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 7 )
|
||||
|
||||
[node name="Beat Up Jeans" type="TextureButton" parent="RefRect/Wordrobe/Pants/PantsGrid"]
|
||||
margin_left = 440.0
|
||||
margin_right = 546.0
|
||||
margin_bottom = 112.0
|
||||
margin_top = 116.0
|
||||
margin_right = 106.0
|
||||
margin_bottom = 234.0
|
||||
texture_normal = ExtResource( 8 )
|
||||
|
||||
[node name="Remove Pants" type="Button" parent="RefRect/Wordrobe/Pants/PantsGrid"]
|
||||
margin_left = 110.0
|
||||
margin_top = 116.0
|
||||
margin_right = 106.0
|
||||
margin_bottom = 228.0
|
||||
margin_right = 228.0
|
||||
margin_bottom = 234.0
|
||||
rect_min_size = Vector2( 0, 112 )
|
||||
custom_colors/font_color_disabled = Color( 0, 0, 0, 1 )
|
||||
custom_colors/font_color = Color( 0, 0, 0, 1 )
|
||||
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
|
||||
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
|
||||
text = "KRBT"
|
||||
icon = ExtResource( 9 )
|
||||
flat = true
|
||||
|
||||
[node name="Shirts" type="Tabs" parent="RefRect/Wordrobe"]
|
||||
|
@ -139,78 +141,78 @@ margin_bottom = 364.0
|
|||
columns = 5
|
||||
|
||||
[node name="Sweatshirt" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_right = 85.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 9 )
|
||||
|
||||
[node name="DJ Shirt" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 89.0
|
||||
margin_right = 174.0
|
||||
margin_right = 118.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 10 )
|
||||
|
||||
[node name="Raw" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 178.0
|
||||
margin_right = 263.0
|
||||
[node name="DJ Shirt" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 122.0
|
||||
margin_right = 207.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 11 )
|
||||
|
||||
[node name="Atomic" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 267.0
|
||||
margin_right = 352.0
|
||||
[node name="Raw" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 211.0
|
||||
margin_right = 296.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 12 )
|
||||
|
||||
[node name="Z Shirt" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 356.0
|
||||
margin_right = 441.0
|
||||
[node name="Atomic" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 300.0
|
||||
margin_right = 385.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 13 )
|
||||
|
||||
[node name="Biker Jacket" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_top = 119.0
|
||||
margin_right = 85.0
|
||||
margin_bottom = 234.0
|
||||
[node name="Z Shirt" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 389.0
|
||||
margin_right = 474.0
|
||||
margin_bottom = 115.0
|
||||
texture_normal = ExtResource( 14 )
|
||||
|
||||
[node name="NL Jacket" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 89.0
|
||||
[node name="Biker Jacket" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_top = 119.0
|
||||
margin_right = 174.0
|
||||
margin_right = 118.0
|
||||
margin_bottom = 234.0
|
||||
texture_normal = ExtResource( 15 )
|
||||
|
||||
[node name="Train Hoodie" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 178.0
|
||||
[node name="NL Jacket" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 122.0
|
||||
margin_top = 119.0
|
||||
margin_right = 263.0
|
||||
margin_right = 207.0
|
||||
margin_bottom = 234.0
|
||||
texture_normal = ExtResource( 16 )
|
||||
|
||||
[node name="Korm Shirt" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 267.0
|
||||
[node name="Train Hoodie" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 211.0
|
||||
margin_top = 119.0
|
||||
margin_right = 352.0
|
||||
margin_right = 296.0
|
||||
margin_bottom = 234.0
|
||||
texture_normal = ExtResource( 17 )
|
||||
|
||||
[node name="What's New Shirt" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 356.0
|
||||
[node name="Korm Shirt" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 300.0
|
||||
margin_top = 119.0
|
||||
margin_right = 441.0
|
||||
margin_right = 385.0
|
||||
margin_bottom = 234.0
|
||||
texture_normal = ExtResource( 18 )
|
||||
|
||||
[node name="What's New Shirt" type="TextureButton" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_left = 389.0
|
||||
margin_top = 119.0
|
||||
margin_right = 474.0
|
||||
margin_bottom = 234.0
|
||||
texture_normal = ExtResource( 19 )
|
||||
|
||||
[node name="Remove Shirt" type="Button" parent="RefRect/Wordrobe/Shirts/ShirtsGrid"]
|
||||
margin_top = 238.0
|
||||
margin_right = 85.0
|
||||
margin_bottom = 350.0
|
||||
margin_right = 118.0
|
||||
margin_bottom = 356.0
|
||||
rect_min_size = Vector2( 0, 112 )
|
||||
custom_colors/font_color_disabled = Color( 0, 0, 0, 1 )
|
||||
custom_colors/font_color = Color( 0, 0, 0, 1 )
|
||||
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
|
||||
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
|
||||
text = "KRTP"
|
||||
icon = ExtResource( 9 )
|
||||
flat = true
|
||||
|
||||
[node name="Underwear" type="Tabs" parent="RefRect/Wordrobe"]
|
||||
|
@ -229,25 +231,25 @@ columns = 5
|
|||
[node name="OwO Censor" type="TextureButton" parent="RefRect/Wordrobe/Underwear/UndiesGrid"]
|
||||
margin_right = 106.0
|
||||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 19 )
|
||||
texture_normal = ExtResource( 20 )
|
||||
|
||||
[node name="Briefs" type="TextureButton" parent="RefRect/Wordrobe/Underwear/UndiesGrid"]
|
||||
margin_left = 110.0
|
||||
margin_right = 216.0
|
||||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 20 )
|
||||
texture_normal = ExtResource( 21 )
|
||||
|
||||
[node name="ZBriefs" type="TextureButton" parent="RefRect/Wordrobe/Underwear/UndiesGrid"]
|
||||
margin_left = 220.0
|
||||
margin_right = 326.0
|
||||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 21 )
|
||||
texture_normal = ExtResource( 22 )
|
||||
|
||||
[node name="Fundosi" type="TextureButton" parent="RefRect/Wordrobe/Underwear/UndiesGrid"]
|
||||
margin_left = 330.0
|
||||
margin_right = 436.0
|
||||
margin_bottom = 112.0
|
||||
texture_normal = ExtResource( 22 )
|
||||
texture_normal = ExtResource( 23 )
|
||||
|
||||
[node name="Accessoires" type="Tabs" parent="RefRect/Wordrobe"]
|
||||
visible = false
|
||||
|
@ -264,19 +266,19 @@ columns = 6
|
|||
|
||||
[node name="Camera" type="TextureButton" parent="RefRect/Wordrobe/Accessoires/AccessoiresGrid"]
|
||||
margin_right = 85.0
|
||||
margin_bottom = 105.0
|
||||
texture_normal = ExtResource( 23 )
|
||||
margin_bottom = 118.0
|
||||
texture_normal = ExtResource( 24 )
|
||||
|
||||
[node name="Remove Accessory" type="Button" parent="RefRect/Wordrobe/Accessoires/AccessoiresGrid"]
|
||||
margin_left = 89.0
|
||||
margin_right = 222.0
|
||||
margin_bottom = 105.0
|
||||
margin_right = 207.0
|
||||
margin_bottom = 118.0
|
||||
rect_min_size = Vector2( 85, 105 )
|
||||
custom_colors/font_color_disabled = Color( 0, 0, 0, 1 )
|
||||
custom_colors/font_color = Color( 0, 0, 0, 1 )
|
||||
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
|
||||
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
|
||||
text = "Remove Accessory"
|
||||
icon = ExtResource( 9 )
|
||||
flat = true
|
||||
|
||||
[node name="Body" type="ReferenceRect" parent="."]
|
||||
|
@ -292,28 +294,28 @@ __meta__ = {
|
|||
|
||||
[node name="Undies" type="Sprite" parent="Body"]
|
||||
position = Vector2( 57.9419, 159.296 )
|
||||
texture = ExtResource( 20 )
|
||||
texture = ExtResource( 21 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="Bottom" type="Sprite" parent="Body"]
|
||||
position = Vector2( 57.9419, 159.296 )
|
||||
texture = ExtResource( 24 )
|
||||
texture = ExtResource( 25 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="Top" type="Sprite" parent="Body"]
|
||||
position = Vector2( 65.0597, 65.3242 )
|
||||
texture = ExtResource( 25 )
|
||||
texture = ExtResource( 26 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
||||
[node name="Accessory" type="Sprite" parent="Body"]
|
||||
position = Vector2( 65.0597, 65.3242 )
|
||||
texture = ExtResource( 25 )
|
||||
texture = ExtResource( 26 )
|
||||
__meta__ = {
|
||||
"_edit_lock_": true
|
||||
}
|
||||
|
|
60
project/sprites/pants_icon.svg
Normal file
60
project/sprites/pants_icon.svg
Normal file
|
@ -0,0 +1,60 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="svg815"
|
||||
width="39"
|
||||
height="33"
|
||||
viewBox="0 0 39 33"
|
||||
sodipodi:docname="pants_icon.svg"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||
<metadata
|
||||
id="metadata821">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs819" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
id="namedview817"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:zoom="6.1212121"
|
||||
inkscape:cx="19.5"
|
||||
inkscape:cy="-9.6386138"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg815" />
|
||||
<path
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.95784992;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="M 6.7807842,28.813088 C 11.813842,20.992324 14.832232,3.8938042 15.52896,3.7756987 18.419201,3.2857617 25.626539,3.4616814 29.908997,2.036699 c 1.688171,-0.5617374 1.488754,15.799088 1.655879,24.486997 0.06138,3.190086 -9.314144,4.364655 -8.802321,1.221999 0.644048,-3.954547 0.348605,-12.407998 0.348605,-12.407998 0,0 -5.477233,7.547529 -6.667106,13.583 -0.302555,1.534666 -11.5352913,2.801285 -9.6632698,-0.107604 z"
|
||||
id="path2567"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="ssssscss" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.2 KiB |
34
project/sprites/pants_icon.svg.import
Normal file
34
project/sprites/pants_icon.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/pants_icon.svg-1504bee50c96f9a58b6f753201be5a91.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/pants_icon.svg"
|
||||
dest_files=[ "res://.import/pants_icon.svg-1504bee50c96f9a58b6f753201be5a91.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
72
project/sprites/x_button.svg
Normal file
72
project/sprites/x_button.svg
Normal file
|
@ -0,0 +1,72 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="28.045834mm"
|
||||
height="29.633333mm"
|
||||
viewBox="0 0 28.045834 29.633333"
|
||||
version="1.1"
|
||||
id="svg2007"
|
||||
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||
sodipodi:docname="x_button.svg">
|
||||
<defs
|
||||
id="defs2001" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.8"
|
||||
inkscape:cx="9.4534785"
|
||||
inkscape:cy="71.8377"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer2"
|
||||
showgrid="false"
|
||||
inkscape:pagecheckerboard="true"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
showguides="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1001"
|
||||
inkscape:window-x="-9"
|
||||
inkscape:window-y="-9"
|
||||
inkscape:window-maximized="1" />
|
||||
<metadata
|
||||
id="metadata2004">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-78.959229,-134.01666)" />
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Re-ink">
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m 2.3920058,23.469698 c 0,-0.385451 1.6180554,-2.320847 3.5956801,-4.300879 C 7.9653094,17.188787 9.871187,15.266222 10.222967,14.896451 10.574748,14.52668 10.209361,12.380293 9.4110174,10.126699 7.7571468,5.458155 7.6063889,3.9057306 8.7480596,3.2999174 10.308476,2.4719013 12.449998,3.6951326 14.247589,6.4412294 l 1.821104,2.7820132 3.419862,-2.8817189 c 2.248675,-1.8948257 3.85386,-2.7387279 4.687133,-2.4641885 1.648664,0.5431876 2.600119,2.6686882 1.354224,3.0252582 -1.414145,0.4047239 -7.267069,8.0520546 -7.255965,9.4805206 0.0053,0.676404 0.836888,2.471797 1.84807,3.989761 0.71322,1.070667 1.671908,1.915542 1.291339,2.496285 l -2.034354,3.104393 c -0.39456,0.602091 -1.851947,-1.003167 -3.578375,-2.561381 L 12.789012,20.693994 9.4503269,24.093569 C 7.614049,25.963334 5.8996973,27.483505 5.6406553,27.471728 5.3816146,27.459895 2.3920058,23.855148 2.3920058,23.469698 Z"
|
||||
style="fill:#aa0000;fill-opacity:1;stroke:none;stroke-width:0.08895873;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
id="X" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3 KiB |
34
project/sprites/x_button.svg.import
Normal file
34
project/sprites/x_button.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/x_button.svg-6cf395375517e4cea385a7bade20ecb1.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/x_button.svg"
|
||||
dest_files=[ "res://.import/x_button.svg-6cf395375517e4cea385a7bade20ecb1.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
Loading…
Add table
Reference in a new issue