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

Basic saving and loading

- You can finally save and load your different styles!
- Brand new icons from Font Awesome!
- The clear button was refreshed and replaced with the trash can. While I've never gotten complaints about the interface, this should prove to be less confusing.
- Clear button moved next to save/load.
- Introduced a basic indicator when loading and saving
- Bumped version to 1.10
This commit is contained in:
Tony Bark 2021-05-30 17:01:27 -04:00
parent c846932fc8
commit 739692d970
44 changed files with 1093 additions and 313 deletions

View file

@ -17,8 +17,9 @@
## Authors
* **Tony Bark** - *Initial work* - [tonytins](https://github.com/tonytins)
* **Kenney** - *UI assets* - [kenny.nl](https://www.kenney.nl/)
* **Kenney** - *UI* - [kenny.nl](https://www.kenney.nl/)
* **Twemoji** - *Emojis* - [twemoji.twitter.com](https://twemoji.twitter.com/)
* **Font Awesome** - *Icons* - [FortAwesome](https://github.com/FortAwesome)
## License

View file

@ -24,6 +24,11 @@ config/macos_native_icon="res://icon.icns"
config/windows_native_icon="res://icon.ico"
name_sv="Tonys klä upp"
[autoload]
GameData="*res://scripts/autoload/game_data.gd"
GameEvents="*res://scripts/autoload/game_events.gd"
[debug]
gdscript/completion/autocomplete_setters_and_getters=true
@ -40,7 +45,6 @@ window/stretch/aspect="keep"
[gui]
theme/custom="res://resources/Game.theme"
theme/custom_font="res://fonts/kenny_pixel_25.tres"
[importer_defaults]
@ -78,16 +82,18 @@ ui_pause={
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":11,"pressure":0.0,"pressed":false,"script":null)
]
}
ui_cheats={
"deadzone": 0.5,
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":true,"control":false,"meta":true,"command":true,"pressed":false,"scancode":67,"unicode":0,"echo":false,"script":null)
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":true,"command":true,"pressed":false,"scancode":88,"unicode":0,"echo":false,"script":null)
]
}
[locale]
locale_filter=[ 1, [ "en", "sv" ] ]
translations=PoolStringArray( "res://lang/local.en.translation", "res://lang/local.sv.translation" )
[node]
name_casing=1
[rendering]
quality/driver/driver_name="GLES2"

View file

@ -1,4 +1,4 @@
[gd_scene load_steps=32 format=2]
[gd_scene load_steps=33 format=2]
[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]
@ -23,9 +23,10 @@
[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/mouth12.png" type="Texture" id=23]
[ext_resource path="res://sprites/character_base_top.svg" type="Texture" id=25]
[ext_resource path="res://sounds/select_006.ogg" type="AudioStream" id=24]
[ext_resource path="res://sprites/character/character_base_top.svg" type="Texture" id=25]
[ext_resource path="res://sprites/clothes/blank_top.png" type="Texture" id=26]
[ext_resource path="res://sprites/character_base_head.svg" type="Texture" id=27]
[ext_resource path="res://sprites/character/character_base_head.svg" type="Texture" id=27]
[ext_resource path="res://sprites/character/mouth/mouth11.png" type="Texture" id=28]
[sub_resource type="GDScript" id=1]
@ -33,7 +34,14 @@ script/source = "# Anthony Wilcox licenses this file to you under the MPL licens
# See the LICENSE file in the project root for more information.
extends Node2D
const _TDU_VERSION = \"0.2\"
const _SAVE_FILE = \"user://character.tdu\"
onready var character = preload(\"res://resources/character.tres\")
onready var blank_accessory = preload(\"res://sprites/clothes/blank_top.png\")
onready var base_top = preload(\"res://sprites/character/character_base_top.svg\")
onready var base_bottom = preload(\"res://sprites/character/character_base_legs.svg\")
onready var accessory = $body/accessory
#onready var underwear = $Undies
onready var bottom = $body/legs
@ -54,9 +62,80 @@ func _process(delta):
if character.top != null:
top.texture = character.top
func save_game():
var data_file = {
\"version\": _TDU_VERSION,
\"game_ver\": GameData.version,
\"accessory\": \"res://sprites/clothes/blank_top.png\",
\"top\": \"res://sprites/clothes/blank_top.png\",
\"bottom\": \"res://sprites/character/character_base_legs.svg\",
}
data_file[\"accessory\"] = accessory.texture.resource_path
data_file[\"top\"] = top.texture.resource_path
data_file[\"bottom\"] = bottom.texture.resource_path
var file = File.new()
if file.open(_SAVE_FILE, File.WRITE) != 0:
print(\"Error opening file\")
return
var json_file = to_json(data_file)
file.store_line(json_file)
print_debug(json_file)
file.close()
func load_game():
var file = File.new()
if not file.file_exists(_SAVE_FILE):
print(\"File not found!\")
return
if file.open(_SAVE_FILE, File.READ) != 0:
print(\"Error opening file\")
return
var data = parse_json(file.get_line())
var top_texture = ImageTexture.new()
var accessory_texture = ImageTexture.new()
var bottom_texture = ImageTexture.new()
var top_image = Image.new()
var accessory_image = Image.new()
var bottom_image = Image.new()
top_image.load(data[\"top\"])
top_texture.create_from_image(top_image)
top.texture = top_texture
bottom_image.load(data[\"bottom\"])
top_texture.create_from_image(top_image)
bottom.texture = top_texture
accessory_image.load(data[\"accessory\"])
accessory_texture.create_from_image(top_image)
accessory.texture = accessory_texture
file.close()
func _on_clearBtn_pressed():
$Click.play()
character.accessory = blank_accessory
character.bottom = base_bottom
character.top = base_top
func _on_SaveBtn_pressed():
$Click.play()
GameEvents.emit_signal(\"indicate\")
save_game()
func _on_LoadBtn_pressed():
$Click.play()
GameEvents.emit_signal(\"indicate\")
load_game()
"
[sub_resource type="SpriteFrames" id=4]
[sub_resource type="SpriteFrames" id=2]
animations = [ {
"frames": [ ExtResource( 2 ), ExtResource( 3 ), ExtResource( 4 ) ],
"loop": true,
@ -64,7 +143,7 @@ animations = [ {
"speed": 2.0
} ]
[sub_resource type="SpriteFrames" id=2]
[sub_resource type="SpriteFrames" id=3]
animations = [ {
"frames": [ ExtResource( 6 ), ExtResource( 7 ), ExtResource( 8 ), ExtResource( 9 ), ExtResource( 10 ), ExtResource( 11 ), ExtResource( 12 ) ],
"loop": true,
@ -72,7 +151,7 @@ animations = [ {
"speed": 2.0
} ]
[sub_resource type="SpriteFrames" id=3]
[sub_resource type="SpriteFrames" id=4]
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 ) ],
"loop": true,
@ -84,6 +163,9 @@ animations = [ {
position = Vector2( -19, -92 )
script = SubResource( 1 )
[node name="Click" type="AudioStreamPlayer" parent="."]
stream = ExtResource( 24 )
[node name="shadow" type="Sprite" parent="."]
position = Vector2( 4.84271, 244.714 )
texture = ExtResource( 1 )
@ -96,11 +178,11 @@ __meta__ = {
[node name="tail" type="AnimatedSprite" parent="body"]
position = Vector2( -33.7592, 99.4079 )
scale = Vector2( 0.927713, 1 )
frames = SubResource( 4 )
frames = SubResource( 2 )
playing = true
[node name="legs" type="Sprite" parent="body"]
position = Vector2( 1.47027, 192.868 )
position = Vector2( 1.47027, 191.868 )
texture = ExtResource( 5 )
[node name="top" type="Sprite" parent="body"]
@ -113,13 +195,13 @@ texture = ExtResource( 27 )
[node name="eyes" type="AnimatedSprite" parent="body/head"]
position = Vector2( 17.6857, 4.22147 )
frames = SubResource( 2 )
frame = 3
frames = SubResource( 3 )
frame = 2
playing = true
[node name="mouth" type="AnimatedSprite" parent="body/head"]
position = Vector2( 38.1195, 8.68453 )
frames = SubResource( 3 )
frames = SubResource( 4 )
frame = 5
playing = true

View file

@ -1,23 +1,30 @@
[gd_scene load_steps=10 format=2]
[gd_scene load_steps=13 format=2]
[ext_resource path="res://scenes/character_base.tscn" type="PackedScene" id=1]
[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/symbols/trash.svg" type="Texture" id=3]
[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/lights.png" type="Texture" id=6]
[ext_resource path="res://sprites/ui/grey_boxCross.png" type="Texture" id=7]
[ext_resource path="res://sprites/symbols/file-upload.svg" type="Texture" id=7]
[ext_resource path="res://scripts/ui.gd" type="Script" id=8]
[ext_resource path="res://sounds/select_006.ogg" type="AudioStream" id=9]
[ext_resource path="res://sprites/symbols/file-download.svg" type="Texture" id=9]
[ext_resource path="res://sprites/symbols/spinner.svg" type="Texture" id=12]
[ext_resource path="res://scripts/spinner.gd" type="Script" id=13]
[ext_resource path="res://scripts/game.gd" type="Script" id=14]
[node name="game" type="Node2D"]
script = ExtResource( 14 )
[node name="background" type="Sprite" parent="."]
[node name="Bg" type="Sprite" parent="."]
position = Vector2( 504.046, 202.426 )
texture = ExtResource( 2 )
__meta__ = {
"_edit_lock_": true
}
[node name="picFrame" type="Sprite" parent="."]
position = Vector2( 127.602, 96.8945 )
position = Vector2( 127.602, 111.895 )
texture = ExtResource( 5 )
__meta__ = {
"_edit_group_": true
@ -28,11 +35,11 @@ position = Vector2( 35.118, -14.56 )
texture = ExtResource( 6 )
[node name="characterBase" parent="." instance=ExtResource( 1 )]
position = Vector2( 133.807, 215.615 )
position = Vector2( 133.807, 230.615 )
[node name="ui" type="CanvasLayer" parent="."]
[node name="Controls" type="CanvasLayer" parent="."]
[node name="base" type="Control" parent="ui"]
[node name="DressUp" type="Control" parent="Controls"]
anchor_right = 1.0
anchor_bottom = 1.0
script = ExtResource( 8 )
@ -40,47 +47,82 @@ __meta__ = {
"_edit_lock_": true,
"_edit_use_anchors_": true
}
version = "1.5"
version = "1.10"
[node name="wardrobe" parent="ui/base" instance=ExtResource( 4 )]
anchor_left = 0.345
anchor_top = 0.072
anchor_right = 0.975
anchor_bottom = 0.658
margin_left = -5.0
margin_top = -20.0
margin_right = 60.0
margin_bottom = 109.0
[node name="wardrobe" parent="Controls/DressUp" instance=ExtResource( 4 )]
anchor_left = 0.33875
anchor_top = 0.054
anchor_right = 1.05
anchor_bottom = 0.9
margin_right = 6.10352e-05
[node name="clearBtn" type="TextureButton" parent="ui/base"]
margin_left = 752.0
margin_top = 9.0
margin_right = 788.0
margin_bottom = 45.0
hint_tooltip = "Clear all clothing"
texture_normal = ExtResource( 3 )
texture_pressed = ExtResource( 3 )
texture_hover = ExtResource( 7 )
texture_disabled = ExtResource( 7 )
[node name="Spinner" type="TextureRect" parent="Controls/DressUp"]
visible = false
anchor_left = 0.945785
anchor_top = 0.153026
anchor_right = 0.985785
anchor_bottom = 0.217026
texture = ExtResource( 12 )
script = ExtResource( 13 )
__meta__ = {
"_edit_use_anchors_": false
"_edit_use_anchors_": true
}
[node name="clear" type="AudioStreamPlayer" parent="ui/base"]
stream = ExtResource( 9 )
[node name="Timer" type="Timer" parent="Controls/DressUp/Spinner"]
wait_time = 2.0
[node name="versionLbl" type="Label" parent="ui/base"]
anchor_left = 1.0
anchor_top = 1.0
anchor_right = 1.0
anchor_bottom = 1.0
margin_left = -81.0
margin_top = -28.0
text = "[version]"
[node name="CenterBtns" type="CenterContainer" parent="Controls/DressUp"]
anchor_left = 0.35875
anchor_top = 0.792
anchor_right = 0.99625
anchor_bottom = 0.886
__meta__ = {
"_edit_use_anchors_": true
}
[node name="ButtonCtr" type="HBoxContainer" parent="Controls/DressUp/CenterBtns"]
margin_left = 179.0
margin_top = 4.0
margin_right = 330.0
margin_bottom = 42.0
custom_constants/separation = 20
[node name="SaveBtn" type="Button" parent="Controls/DressUp/CenterBtns/ButtonCtr"]
margin_right = 37.0
margin_bottom = 38.0
hint_tooltip = "Save"
icon = ExtResource( 7 )
flat = true
[node name="LoadBtn" type="Button" parent="Controls/DressUp/CenterBtns/ButtonCtr"]
margin_left = 57.0
margin_right = 94.0
margin_bottom = 38.0
hint_tooltip = "Load"
icon = ExtResource( 9 )
flat = true
[node name="clearBtn" type="Button" parent="Controls/DressUp/CenterBtns/ButtonCtr"]
margin_left = 114.0
margin_right = 151.0
margin_bottom = 38.0
hint_tooltip = "Clear"
icon = ExtResource( 3 )
flat = true
[node name="versionLbl" type="Label" parent="Controls/DressUp"]
anchor_left = 0.88125
anchor_top = 0.944
anchor_right = 0.9825
anchor_bottom = 0.984
text = "0.0.0"
align = 2
valign = 3
__meta__ = {
"_edit_use_anchors_": false
"_edit_use_anchors_": true
}
[connection signal="pressed" from="ui/base/clearBtn" to="ui/base" method="_on_clearBtn_pressed"]
[connection signal="timeout" from="Controls/DressUp/Spinner/Timer" to="Controls/DressUp/Spinner" method="_on_Timer_timeout"]
[connection signal="pressed" from="Controls/DressUp/CenterBtns/ButtonCtr/SaveBtn" to="characterBase" method="_on_SaveBtn_pressed"]
[connection signal="pressed" from="Controls/DressUp/CenterBtns/ButtonCtr/LoadBtn" to="characterBase" method="_on_LoadBtn_pressed"]
[connection signal="pressed" from="Controls/DressUp/CenterBtns/ButtonCtr/clearBtn" to="characterBase" method="_on_clearBtn_pressed"]

View file

@ -1,4 +1,4 @@
[gd_scene load_steps=17 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://sprites/clothes/retro_shirt.svg" type="Texture" id=2]
@ -12,6 +12,7 @@
[ext_resource path="res://scenes/clothing/tops/whatsnew_shirt.tscn" type="PackedScene" id=10]
[ext_resource path="res://scenes/clothing/tops/fullsnack_shirt.tscn" type="PackedScene" id=11]
[ext_resource path="res://scenes/clothing/tops/rawShirt.tscn" type="PackedScene" id=12]
[ext_resource path="res://resources/Game.theme" type="Theme" id=13]
[ext_resource path="res://scenes/clothing/tops/atomic_shirt.tscn" type="PackedScene" id=15]
[ext_resource path="res://scenes/clothing/pants/sweatPants.tscn" type="PackedScene" id=17]
[ext_resource path="res://scenes/clothing/tops/retro_shirt.tscn" type="PackedScene" id=18]
@ -20,6 +21,7 @@
[node name="Wordrobe" type="TabContainer"]
anchor_right = 1.0
anchor_bottom = 1.0
theme = ExtResource( 13 )
custom_colors/font_color_disabled = Color( 0, 0, 0, 1 )
custom_colors/font_color_bg = Color( 0.921569, 0.921569, 0.921569, 1 )
custom_colors/font_color_fg = Color( 1, 1, 1, 1 )
@ -106,10 +108,10 @@ margin_bottom = 258.0
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
margin_left = 4.0
margin_top = 38.0
margin_right = -4.0
margin_bottom = -4.0
[node name="ShirtsScroll" type="ScrollContainer" parent="Shirts"]
anchor_right = 1.0
@ -118,8 +120,8 @@ margin_left = 10.0
margin_top = 10.0
[node name="ShirtsGrid" type="GridContainer" parent="Shirts/ShirtsScroll"]
margin_right = 780.0
margin_bottom = 440.0
margin_right = 782.0
margin_bottom = 448.0
size_flags_horizontal = 3
size_flags_vertical = 3
columns = 4
@ -161,17 +163,17 @@ margin_bottom = 229.0
[node name="whatsNewShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 10 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 220.0
margin_left = 110.0
margin_top = 117.0
margin_right = 326.0
margin_right = 216.0
margin_bottom = 229.0
[node name="retroShirt" parent="Shirts/ShirtsScroll/ShirtsGrid" instance=ExtResource( 18 )]
anchor_right = 0.0
anchor_bottom = 0.0
margin_left = 330.0
margin_left = 220.0
margin_top = 117.0
margin_right = 436.0
margin_right = 326.0
margin_bottom = 229.0
texture_normal = ExtResource( 2 )
@ -179,20 +181,21 @@ texture_normal = ExtResource( 2 )
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
margin_left = 4.0
margin_top = 38.0
margin_right = -4.0
margin_bottom = -4.0
[node name="AccsScroll" type="ScrollContainer" parent="Accessoires"]
margin_left = 19.0
margin_top = 22.0
margin_right = 369.0
margin_bottom = 494.0
anchor_right = 1.0
anchor_bottom = 1.0
__meta__ = {
"_edit_use_anchors_": false
}
[node name="AccsGrid" type="GridContainer" parent="Accessoires/AccsScroll"]
margin_right = 350.0
margin_bottom = 472.0
margin_right = 792.0
margin_bottom = 458.0
size_flags_horizontal = 3
size_flags_vertical = 3
columns = 3
@ -206,6 +209,7 @@ texture_normal = ExtResource( 9 )
margin_left = 110.0
margin_right = 195.0
margin_bottom = 112.0
[connection signal="pressed" from="Pants/PantsScroll/PantsGrid/removePants" to="." method="_on_removePants_pressed"]
[connection signal="pressed" from="Shirts/ShirtsScroll/ShirtsGrid/removeShirt" to="." method="_on_removeShirt_pressed"]
[connection signal="pressed" from="Accessoires/AccsScroll/AccsGrid/removeAccessory" to="." method="_on_removeAccessory_pressed"]

View file

@ -0,0 +1,3 @@
extends Node
var version = "0.0.0"

View file

@ -0,0 +1,3 @@
extends Node
signal indicate

View file

@ -1,6 +1,4 @@
# This project is licensed under the MPL license.
# See the LICENSE file in the project root for more information.
extends Node
extends Node2D
# Declare member variables here. Examples:

13
scripts/spinner.gd Normal file
View file

@ -0,0 +1,13 @@
extends TextureRect
onready var timer = $Timer
func _ready():
GameEvents.connect("indicate", self, "_on_indicate")
func _on_indicate():
show()
timer.start()
func _on_Timer_timeout():
hide()

View file

@ -6,15 +6,10 @@ export var version: String = "1.0.0"
onready var character = preload("res://resources/character.tres")
onready var blank_accessory = preload("res://sprites/clothes/blank_top.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 base_top = preload("res://sprites/character/character_base_top.svg")
onready var base_bottom = preload("res://sprites/character/character_base_legs.svg")
func _ready():
var verLabel = $versionLbl
verLabel.text = "v" + version
func _on_clearBtn_pressed():
$clear.play()
character.accessory = blank_accessory
character.bottom = base_bottom
character.top = base_top
GameData.version = version

View file

@ -4,7 +4,7 @@ extends TabContainer
onready var character = preload("res://resources/character.tres")
onready var blank_accessory = preload("res://sprites/clothes/blank_top.png")
onready var base_top = preload("res://sprites/character_base_top.svg")
onready var base_top = preload("res://sprites/character/character_base_top.svg")
onready var base_bottom = preload("res://sprites/clothes/owo_censor.svg")
onready var pants_grid = $Pants/PantsScroll/PantsGrid
@ -29,7 +29,7 @@ func list_files_in_directory(path):
return files
func check_for_dlc(dlc_pack):
func load_dlc(dlc_pack):
var usr_dir = "user://dlc/"
var dlc_path = usr_dir + dlc_pack
var load_pck = ProjectSettings.load_resource_pack(dlc_path, false)
@ -65,7 +65,7 @@ func check_for_dlc(dlc_pack):
print_debug("Initialized: " + pants_dir + pants)
func _ready():
check_for_dlc("emojidlc.pck")
load_dlc("emojidlc.pck")
pass
func _on_removeAccessory_pressed():

View file

Before

Width:  |  Height:  |  Size: 14 KiB

After

Width:  |  Height:  |  Size: 14 KiB

View file

@ -2,15 +2,15 @@
importer="texture"
type="StreamTexture"
path="res://.import/new_character_base.svg-e37d5232b11c88359270a1b5f7a925f8.stex"
path="res://.import/character_base.png-222c4d0efcff3a294bb1bd39fb74e583.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/new_character_base.svg"
dest_files=[ "res://.import/new_character_base.svg-e37d5232b11c88359270a1b5f7a925f8.stex" ]
source_file="res://sprites/character/character_base.png"
dest_files=[ "res://.import/character_base.png-222c4d0efcff3a294bb1bd39fb74e583.stex" ]
[params]

View file

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/character_base.svg-f62b30364422a0db60ab659817d94da0.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/character/character_base.svg"
dest_files=[ "res://.import/character_base.svg-f62b30364422a0db60ab659817d94da0.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

View file

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View file

@ -0,0 +1,37 @@
[remap]
importer="texture"
type="StreamTexture"
path.s3tc="res://.import/character_base_head.svg-c6ec92d4b0d5afcc554996c82b73eee5.s3tc.stex"
path.etc2="res://.import/character_base_head.svg-c6ec92d4b0d5afcc554996c82b73eee5.etc2.stex"
path.etc="res://.import/character_base_head.svg-c6ec92d4b0d5afcc554996c82b73eee5.etc.stex"
metadata={
"imported_formats": [ "s3tc", "etc2", "etc" ],
"vram_texture": true
}
[deps]
source_file="res://sprites/character/character_base_head.svg"
dest_files=[ "res://.import/character_base_head.svg-c6ec92d4b0d5afcc554996c82b73eee5.s3tc.stex", "res://.import/character_base_head.svg-c6ec92d4b0d5afcc554996c82b73eee5.etc2.stex", "res://.import/character_base_head.svg-c6ec92d4b0d5afcc554996c82b73eee5.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

View file

Before

Width:  |  Height:  |  Size: 4.3 KiB

After

Width:  |  Height:  |  Size: 4.3 KiB

View file

@ -0,0 +1,37 @@
[remap]
importer="texture"
type="StreamTexture"
path.s3tc="res://.import/character_base_legs.svg-8bbc9fe42e444a7c06b2051d0989bd57.s3tc.stex"
path.etc2="res://.import/character_base_legs.svg-8bbc9fe42e444a7c06b2051d0989bd57.etc2.stex"
path.etc="res://.import/character_base_legs.svg-8bbc9fe42e444a7c06b2051d0989bd57.etc.stex"
metadata={
"imported_formats": [ "s3tc", "etc2", "etc" ],
"vram_texture": true
}
[deps]
source_file="res://sprites/character/character_base_legs.svg"
dest_files=[ "res://.import/character_base_legs.svg-8bbc9fe42e444a7c06b2051d0989bd57.s3tc.stex", "res://.import/character_base_legs.svg-8bbc9fe42e444a7c06b2051d0989bd57.etc2.stex", "res://.import/character_base_legs.svg-8bbc9fe42e444a7c06b2051d0989bd57.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

View file

Before

Width:  |  Height:  |  Size: 5.9 KiB

After

Width:  |  Height:  |  Size: 5.9 KiB

View file

@ -0,0 +1,37 @@
[remap]
importer="texture"
type="StreamTexture"
path.s3tc="res://.import/character_base_top.svg-b95961557622279347465696eae8cd3a.s3tc.stex"
path.etc2="res://.import/character_base_top.svg-b95961557622279347465696eae8cd3a.etc2.stex"
path.etc="res://.import/character_base_top.svg-b95961557622279347465696eae8cd3a.etc.stex"
metadata={
"imported_formats": [ "s3tc", "etc2", "etc" ],
"vram_texture": true
}
[deps]
source_file="res://sprites/character/character_base_top.svg"
dest_files=[ "res://.import/character_base_top.svg-b95961557622279347465696eae8cd3a.s3tc.stex", "res://.import/character_base_top.svg-b95961557622279347465696eae8cd3a.etc2.stex", "res://.import/character_base_top.svg-b95961557622279347465696eae8cd3a.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

View file

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 12 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/new_character_base.svg-e17bd63473c7566b3b9184366a11923d.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/character/new_character_base.svg"
dest_files=[ "res://.import/new_character_base.svg-e17bd63473c7566b3b9184366a11923d.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

View file

@ -1,37 +0,0 @@
[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

View file

@ -1,37 +0,0 @@
[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

View file

@ -1,37 +0,0 @@
[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

View file

@ -1,96 +0,0 @@
<?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="56.476265mm"
height="12.531273mm"
viewBox="0 0 56.476265 12.531273"
version="1.1"
id="svg8"
inkscape:version="0.92.3 (2405546, 2018-03-11)"
sodipodi:docname="sixam_wordmark.svg"
inkscape:export-filename="sixam_wiki.png"
inkscape:export-xdpi="34.285717"
inkscape:export-ydpi="34.285717">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="0.98994949"
inkscape:cx="512.74497"
inkscape:cy="81.566596"
inkscape:document-units="mm"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:pagecheckerboard="true"
borderlayer="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1001"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
showguides="false" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-64.198021,-57.855863)">
<g
id="g822"
transform="matrix(0.30493373,0,0,0.31574862,44.621879,48.162494)">
<path
d="m 64.198021,70.387138 v -2.645833 h 23.8125 v 2.645833 z m 0,-5.291666 v -2.645833 h 26.458333 v 2.645833 z m 18.520833,-5.291667 v -2.645833 h 7.9375 v 2.645833 z m -7.9375,-5.291666 v -2.645833 h 10.583333 v 2.645833 z m -5.291666,-5.291667 v -2.645833 h 10.583333 v 2.645833 z m -5.291667,-5.291666 v -2.645833 h 7.9375 v 2.645833 z m 0,-5.291667 v -2.645833 h 26.458333 v 2.645833 z m 2.645834,-5.291666 V 30.69964 h 23.812499 v 2.645833 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.33333206px;line-height:1.25;font-family:'IBM Logo';-inkscape-font-specification:'IBM Logo';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#008dc6;fill-opacity:1;stroke:none;stroke-width:0.26458332"
id="path836"
inkscape:connector-curvature="0" />
<path
d="m 98.593853,70.387138 v -2.645833 h 13.229167 v 2.645833 z m 0,-5.291666 v -2.645833 h 13.229167 v 2.645833 z m 2.645837,-5.291667 v -2.645833 h 7.9375 v 2.645833 z m 0,-5.291666 v -2.645833 h 7.9375 v 2.645833 z m 0,-5.291667 v -2.645833 h 7.9375 v 2.645833 z m 0,-5.291666 v -2.645833 h 7.9375 v 2.645833 z m -2.645837,-5.291667 v -2.645833 h 13.229167 v 2.645833 z m 0,-5.291666 V 30.69964 h 13.229167 v 2.645833 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.33333206px;line-height:1.25;font-family:'IBM Logo';-inkscape-font-specification:'IBM Logo';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#8c398d;fill-opacity:1;stroke:none;stroke-width:0.26458332"
id="path838"
inkscape:connector-curvature="0" />
<path
d="m 119.76052,70.387138 v -2.645833 h 13.22917 v 2.645833 z m 21.16667,0 v -2.645833 h 13.22916 v 2.645833 z m -21.16667,-5.291666 v -2.645833 h 13.22917 v 2.645833 z m 21.16667,0 v -2.645833 h 13.22916 v 2.645833 z m -18.52084,-5.291667 v -2.645833 h 7.9375 v 2.645833 z m 21.16667,0 v -2.645833 h 7.9375 v 2.645833 z m -18.52083,-5.291666 v -2.645833 h 23.8125 v 2.645833 z m 0,-5.291667 v -2.645833 h 23.8125 v 2.645833 z m -2.64584,-5.291666 v -2.645833 h 7.9375 v 2.645833 z m 21.16667,0 v -2.645833 h 7.9375 v 2.645833 z m -23.8125,-5.291667 v -2.645833 h 13.22917 v 2.645833 z m 21.16667,0 v -2.645833 h 13.22916 v 2.645833 z M 119.76052,33.345473 V 30.69964 h 13.22917 v 2.645833 z m 21.16667,0 V 30.69964 h 13.22916 v 2.645833 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.33333206px;line-height:1.25;font-family:'IBM Logo';-inkscape-font-specification:'IBM Logo';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#ab1b1e;fill-opacity:1;stroke:none;stroke-width:0.26458332"
id="path840"
inkscape:connector-curvature="0" />
<path
d="m 162.09385,70.387138 v -2.645833 h 13.22917 v 2.645833 z m 21.16667,0 v -2.645833 h 13.22916 v 2.645833 z m -18.52084,-5.291666 v -2.645833 h 7.9375 v 2.645833 z m 21.16667,0 v -2.645833 h 7.9375 v 2.645833 z m -21.16667,-5.291667 v -2.645833 h 29.10417 v 2.645833 z m 2.64584,-5.291666 v -2.645833 h 23.8125 v 2.645833 z m 0,-5.291667 v -2.645833 h 7.9375 v 2.645833 z m 15.875,0 v -2.645833 h 7.9375 v 2.645833 z m -13.22917,-5.291666 v -2.645833 h 7.9375 v 2.645833 z m 10.58333,0 v -2.645833 h 7.9375 v 2.645833 z m -10.58333,-5.291667 v -2.645833 h 18.52083 v 2.645833 z m -2.64583,-5.291666 V 30.69964 h 23.8125 v 2.645833 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.33333206px;line-height:1.25;font-family:'IBM Logo';-inkscape-font-specification:'IBM Logo';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#be5c08;fill-opacity:1;stroke:none;stroke-width:0.26458332"
id="path842"
inkscape:connector-curvature="0" />
<path
d="m 204.42718,70.387138 v -2.645833 h 13.22916 v 2.645833 z m 21.16666,0 v -2.645833 h 2.64584 v 2.645833 z m 10.58334,0 v -2.645833 h 13.22916 v 2.645833 z m -31.75,-5.291666 v -2.645833 h 13.22916 v 2.645833 z m 18.52083,0 v -2.645833 h 7.9375 v 2.645833 z m 15.875,0 v -2.645833 h 7.9375 v 2.645833 z m -31.75,-5.291667 v -2.645833 h 7.9375 v 2.645833 z m 13.22917,0 v -2.645833 h 13.22916 v 2.645833 z m 18.52083,0 v -2.645833 h 7.9375 v 2.645833 z m -31.75,-5.291666 v -2.645833 h 7.9375 v 2.645833 z m 10.58333,0 v -2.645833 h 18.52084 v 2.645833 z m 21.16667,0 v -2.645833 h 7.9375 v 2.645833 z m -31.75,-5.291667 v -2.645833 h 18.52083 v 2.645833 z m 21.16667,0 v -2.645833 h 18.52083 v 2.645833 z m -21.16667,-5.291666 v -2.645833 h 15.875 v 2.645833 z m 23.8125,0 v -2.645833 h 15.875 v 2.645833 z m -26.45833,-5.291667 v -2.645833 h 15.875 v 2.645833 z m 29.10416,0 v -2.645833 h 15.875 v 2.645833 z M 204.42718,33.345473 V 30.69964 h 13.22916 v 2.645833 z m 31.75,0 V 30.69964 h 13.22916 v 2.645833 z"
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:42.33333206px;line-height:1.25;font-family:'IBM Logo';-inkscape-font-specification:'IBM Logo';text-align:center;letter-spacing:0px;word-spacing:0px;text-anchor:middle;fill:#4a9135;fill-opacity:1;stroke:none;stroke-width:0.26458332"
id="path844"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>

Before

Width:  |  Height:  |  Size: 7.3 KiB

62
sprites/symbols/check.svg Normal file
View file

@ -0,0 +1,62 @@
<?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"
viewBox="0 0 40 32"
version="1.1"
id="svg835"
sodipodi:docname="check.svg"
width="40"
height="32"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)">
<metadata
id="metadata841">
<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="defs839" />
<sodipodi:namedview
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="987"
id="namedview837"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.3046875"
inkscape:cx="255.99975"
inkscape:cy="190.90175"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="svg835"
inkscape:document-rotation="0"
inkscape:pagecheckerboard="true" />
<!-- Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) -->
<path
d="M 13.585775,31.371521 0.58576228,17.425111 c -0.78101637,-0.837875 -0.78101637,-2.196391 0,-3.034349 L 3.4141247,11.35641 c 0.781016,-0.837954 2.0474237,-0.837954 2.8284402,0 l 8.7574301,9.394883 18.75744,-20.12288901 c 0.781017,-0.83787199 2.047424,-0.83787199 2.82844,0 l 2.828363,3.03435191 c 0.781016,0.8378723 0.781016,2.1963908 0,3.0343488 L 16.414215,31.371604 c -0.781095,0.837875 -2.047424,0.837875 -2.82844,-8.3e-5 z"
id="path833"
style="fill:#ffffff;stroke-width:0.0809184" />
</svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

View file

@ -2,15 +2,15 @@
importer="texture"
type="StreamTexture"
path="res://.import/character_base.png-5792404fa83b4fad07f738418ce65c16.stex"
path="res://.import/check.svg-9f44bbeb4b4ba5cd240f570669efca4d.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/character_base.png"
dest_files=[ "res://.import/character_base.png-5792404fa83b4fad07f738418ce65c16.stex" ]
source_file="res://sprites/symbols/check.svg"
dest_files=[ "res://.import/check.svg-9f44bbeb4b4ba5cd240f570669efca4d.stex" ]
[params]

View file

@ -0,0 +1,61 @@
<?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"
viewBox="0 0 25 32"
version="1.1"
id="svg835"
sodipodi:docname="file-download-disabled.svg"
width="25"
height="32"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)">
<metadata
id="metadata841">
<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="defs839" />
<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="987"
id="namedview837"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:pagecheckerboard="true"
inkscape:zoom="1.6464844"
inkscape:cx="173.172"
inkscape:cy="161.86002"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="svg835" />
<!-- Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) -->
<path
d="M 14.583333,8.5 V 0 H 1.5625 C 0.69661458,0 0,0.66875 0,1.5 v 29 C 0,31.33125 0.69661458,32 1.5625,32 h 21.875 C 24.303385,32 25,31.33125 25,30.5 V 10 h -8.854167 c -0.859375,0 -1.5625,-0.675 -1.5625,-1.5 z m 4.977214,13.21 -6.277344,5.98125 c -0.432943,0.413125 -1.132161,0.413125 -1.565104,0 L 5.4407552,21.71 C 4.7799479,21.080625 5.2434896,20 6.1731771,20 h 4.2434899 v -5 c 0,-0.5525 0.466146,-1 1.041666,-1 h 2.083334 c 0.575521,0 1.041666,0.4475 1.041666,1 v 5 h 4.24349 c 0.929687,0 1.393229,1.080625 0.733724,1.71 z M 24.544271,6.5625 18.170573,0.4375 C 17.877604,0.15625 17.480469,0 17.063802,0 H 16.666667 V 8 H 25 V 7.61875 C 25,7.225 24.83724,6.84375 24.544271,6.5625 Z"
id="path833"
style="fill:#b3b3b3;fill-opacity:1;stroke-width:0.0637888" />
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/file-download-disabled.svg-3039085a28180f25134fac3a2e2e908b.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/symbols/file-download-disabled.svg"
dest_files=[ "res://.import/file-download-disabled.svg-3039085a28180f25134fac3a2e2e908b.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

View file

@ -0,0 +1,61 @@
<?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"
viewBox="0 0 25 32"
version="1.1"
id="svg835"
sodipodi:docname="file-download.svg"
width="25"
height="32"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)">
<metadata
id="metadata841">
<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="defs839" />
<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="987"
id="namedview837"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:pagecheckerboard="true"
inkscape:zoom="1.6464844"
inkscape:cx="192"
inkscape:cy="256"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="svg835" />
<!-- Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) -->
<path
d="M 14.583333,8.5 V 0 H 1.5625 C 0.69661458,0 0,0.66875 0,1.5 v 29 C 0,31.33125 0.69661458,32 1.5625,32 h 21.875 C 24.303385,32 25,31.33125 25,30.5 V 10 h -8.854167 c -0.859375,0 -1.5625,-0.675 -1.5625,-1.5 z m 4.977214,13.21 -6.277344,5.98125 c -0.432943,0.413125 -1.132161,0.413125 -1.565104,0 L 5.4407552,21.71 C 4.7799479,21.080625 5.2434896,20 6.1731771,20 h 4.2434899 v -5 c 0,-0.5525 0.466146,-1 1.041666,-1 h 2.083334 c 0.575521,0 1.041666,0.4475 1.041666,1 v 5 h 4.24349 c 0.929687,0 1.393229,1.080625 0.733724,1.71 z M 24.544271,6.5625 18.170573,0.4375 C 17.877604,0.15625 17.480469,0 17.063802,0 H 16.666667 V 8 H 25 V 7.61875 C 25,7.225 24.83724,6.84375 24.544271,6.5625 Z"
id="path833"
style="fill:#1ea7e1;fill-opacity:1;stroke-width:0.0637888" />
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -2,15 +2,15 @@
importer="texture"
type="StreamTexture"
path="res://.import/sixam_wordmark.svg-1b4a7fac4387207343523a24f310f147.stex"
path="res://.import/file-download.svg-450cf2da94964fdd618f765552ef56fa.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/clothes/sixam_wordmark.svg"
dest_files=[ "res://.import/sixam_wordmark.svg-1b4a7fac4387207343523a24f310f147.stex" ]
source_file="res://sprites/symbols/file-download.svg"
dest_files=[ "res://.import/file-download.svg-450cf2da94964fdd618f765552ef56fa.stex" ]
[params]

View file

@ -0,0 +1,61 @@
<?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"
viewBox="0 0 25 32"
version="1.1"
id="svg845"
sodipodi:docname="file-upload-disabled.svg"
width="25"
height="32"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)">
<metadata
id="metadata851">
<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="defs849" />
<sodipodi:namedview
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:window-width="1371"
inkscape:window-height="987"
id="namedview847"
showgrid="false"
inkscape:pagecheckerboard="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.6464844"
inkscape:cx="190.78529"
inkscape:cy="160.03796"
inkscape:window-x="549"
inkscape:window-y="23"
inkscape:window-maximized="0"
inkscape:current-layer="svg845" />
<!-- Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) -->
<path
d="M 14.583333,8.5 V 0 H 1.5625 C 0.69661458,0 0,0.66875 0,1.5 v 29 C 0,31.33125 0.69661458,32 1.5625,32 h 21.875 C 24.303385,32 25,31.33125 25,30.5 V 10 h -8.854167 c -0.859375,0 -1.5625,-0.675 -1.5625,-1.5 z m 4.24349,13.500625 h -4.24349 v 5 c 0,0.5525 -0.466145,1 -1.041666,1 h -2.083334 c -0.57552,0 -1.041666,-0.4475 -1.041666,-1 v -5 H 6.1731771 c -0.9296875,0 -1.3938802,-1.080625 -0.733724,-1.71 l 6.2773439,-5.98125 c 0.432943,-0.413125 1.132161,-0.413125 1.565104,0 l 6.277344,5.98125 c 0.660807,0.629375 0.197265,1.71 -0.732422,1.71 z M 24.544271,6.5625 18.170573,0.4375 C 17.877604,0.15625 17.480469,0 17.063802,0 H 16.666667 V 8 H 25 V 7.61875 C 25,7.225 24.83724,6.84375 24.544271,6.5625 Z"
id="path843"
style="fill:#b3b3b3;stroke-width:0.0637888;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/file-upload-disabled.svg-ba38875b88f3cb31437f95135a66cdca.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/symbols/file-upload-disabled.svg"
dest_files=[ "res://.import/file-upload-disabled.svg-ba38875b88f3cb31437f95135a66cdca.stex" ]
[params]
compress/mode=0
compress/lossy_quality=0.7
compress/hdr_mode=0
compress/bptc_ldr=0
compress/normal_map=0
flags/repeat=0
flags/filter=false
flags/mipmaps=false
flags/anisotropic=false
flags/srgb=2
process/fix_alpha_border=true
process/premult_alpha=false
process/HDR_as_SRGB=false
process/invert_color=false
stream=false
size_limit=0
detect_3d=false
svg/scale=1.0

View file

@ -0,0 +1,61 @@
<?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"
viewBox="0 0 25 32"
version="1.1"
id="svg845"
sodipodi:docname="file-upload.svg"
width="25"
height="32"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)">
<metadata
id="metadata851">
<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="defs849" />
<sodipodi:namedview
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="987"
id="namedview847"
showgrid="false"
inkscape:pagecheckerboard="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.6464844"
inkscape:cx="190.78529"
inkscape:cy="160.03796"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="svg845" />
<!-- Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) -->
<path
d="M 14.583333,8.5 V 0 H 1.5625 C 0.69661458,0 0,0.66875 0,1.5 v 29 C 0,31.33125 0.69661458,32 1.5625,32 h 21.875 C 24.303385,32 25,31.33125 25,30.5 V 10 h -8.854167 c -0.859375,0 -1.5625,-0.675 -1.5625,-1.5 z m 4.24349,13.500625 h -4.24349 v 5 c 0,0.5525 -0.466145,1 -1.041666,1 h -2.083334 c -0.57552,0 -1.041666,-0.4475 -1.041666,-1 v -5 H 6.1731771 c -0.9296875,0 -1.3938802,-1.080625 -0.733724,-1.71 l 6.2773439,-5.98125 c 0.432943,-0.413125 1.132161,-0.413125 1.565104,0 l 6.277344,5.98125 c 0.660807,0.629375 0.197265,1.71 -0.732422,1.71 z M 24.544271,6.5625 18.170573,0.4375 C 17.877604,0.15625 17.480469,0 17.063802,0 H 16.666667 V 8 H 25 V 7.61875 C 25,7.225 24.83724,6.84375 24.544271,6.5625 Z"
id="path843"
style="fill:#1ea7e1;stroke-width:0.0637888;fill-opacity:1" />
</svg>

After

Width:  |  Height:  |  Size: 2.6 KiB

View file

@ -2,15 +2,15 @@
importer="texture"
type="StreamTexture"
path="res://.import/character_base.svg-5ea6954c66ca6e666096a6a63d2174dc.stex"
path="res://.import/file-upload.svg-d051fb9491598b3376ab16f862e70d42.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/character_base.svg"
dest_files=[ "res://.import/character_base.svg-5ea6954c66ca6e666096a6a63d2174dc.stex" ]
source_file="res://sprites/symbols/file-upload.svg"
dest_files=[ "res://.import/file-upload.svg-d051fb9491598b3376ab16f862e70d42.stex" ]
[params]

View file

@ -0,0 +1,62 @@
<?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"
viewBox="0 0 32 32"
version="1.1"
id="svg2068"
sodipodi:docname="spinner.svg"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)"
width="32"
height="32">
<metadata
id="metadata2074">
<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="defs2072" />
<sodipodi:namedview
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="987"
id="namedview2070"
showgrid="false"
inkscape:pagecheckerboard="true"
inkscape:zoom="1.6464844"
inkscape:cx="256"
inkscape:cy="256"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="svg2068"
inkscape:document-rotation="0"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0" />
<!-- Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) -->
<path
d="m 19,3 c 0,1.656875 -1.343125,3 -3,3 -1.656875,0 -3,-1.343125 -3,-3 0,-1.656875 1.343125,-3 3,-3 1.656875,0 3,1.343125 3,3 z m -3,23 c -1.656875,0 -3,1.343125 -3,3 0,1.656875 1.343125,3 3,3 1.656875,0 3,-1.343125 3,-3 0,-1.656875 -1.343125,-3 -3,-3 z M 29,13 c -1.656875,0 -3,1.343125 -3,3 0,1.656875 1.343125,3 3,3 1.656875,0 3,-1.343125 3,-3 0,-1.656875 -1.343125,-3 -3,-3 z M 6,16 c 0,-1.656875 -1.343125,-3 -3,-3 -1.656875,0 -3,1.343125 -3,3 0,1.656875 1.343125,3 3,3 1.656875,0 3,-1.343125 3,-3 z m 0.807625,6.192375 c -1.656875,0 -3,1.343125 -3,3 0,1.656875 1.343125,3 3,3 1.656875,0 3,-1.343125 3,-3 0,-1.656813 -1.3431875,-3 -3,-3 z m 18.38475,0 c -1.656875,0 -3,1.343125 -3,3 0,1.656875 1.343125,3 3,3 1.656875,0 3,-1.343125 3,-3 0,-1.656813 -1.343125,-3 -3,-3 z M 6.807625,3.807625 c -1.656875,0 -3,1.343125 -3,3 0,1.656875 1.343125,3 3,3 1.656875,0 3,-1.343125 3,-3 0,-1.656875 -1.3431875,-3 -3,-3 z"
id="path2066"
style="fill:#1ea7e1;fill-opacity:1;stroke-width:0.0625" />
</svg>

After

Width:  |  Height:  |  Size: 2.8 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/spinner.svg-9c272ad1499efd5be523cbaa7db2de7c.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/symbols/spinner.svg"
dest_files=[ "res://.import/spinner.svg-9c272ad1499efd5be523cbaa7db2de7c.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

61
sprites/symbols/times.svg Normal file
View file

@ -0,0 +1,61 @@
<?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"
viewBox="0 0 36 36"
version="1.1"
id="svg835"
sodipodi:docname="times.svg"
width="36"
height="36"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)">
<metadata
id="metadata841">
<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="defs839" />
<sodipodi:namedview
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="987"
id="namedview837"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.6464844"
inkscape:cx="176"
inkscape:cy="176"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="svg835"
inkscape:document-rotation="0" />
<!-- Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) -->
<path
d="M 24.823636,18 35.058068,7.7655672 c 1.255909,-1.2559068 1.255909,-3.2921568 0,-4.5490896 L 32.783523,0.9419328 c -1.255909,-1.2559104 -3.292159,-1.2559104 -4.549091,0 L 18,11.176362 7.7655682,0.9419328 c -1.2559093,-1.2559104 -3.2921593,-1.2559104 -4.5490909,0 L 0.94193182,3.2164776 c -1.25590909,1.2559104 -1.25590909,3.2921604 0,4.5490896 L 11.176364,18 0.94193182,28.234433 c -1.25590909,1.255907 -1.25590909,3.292157 0,4.549089 l 2.27454548,2.274545 c 1.2559089,1.255911 3.2931816,1.255911 4.5490909,0 L 18,24.823638 28.234432,35.058067 c 1.255909,1.255911 3.293182,1.255911 4.549091,0 l 2.274545,-2.274545 c 1.255909,-1.25591 1.255909,-3.29216 0,-4.549089 z"
id="path833"
style="stroke-width:0.102273;fill:#ffffff" />
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/times.svg-6ac74cf962110ec75d79adcca368c0d6.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/symbols/times.svg"
dest_files=[ "res://.import/times.svg-6ac74cf962110ec75d79adcca368c0d6.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

62
sprites/symbols/trash.svg Normal file
View file

@ -0,0 +1,62 @@
<?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"
viewBox="0 0 25 32"
version="1.1"
id="svg835"
sodipodi:docname="trash.svg"
width="25"
height="32"
inkscape:version="1.0.2 (e86c8708, 2021-01-15)">
<metadata
id="metadata841">
<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="defs839" />
<sodipodi:namedview
pagecolor="#000000"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="1"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="987"
id="namedview837"
showgrid="false"
inkscape:pagecheckerboard="true"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="1.4910714"
inkscape:cx="224"
inkscape:cy="256.00018"
inkscape:window-x="0"
inkscape:window-y="23"
inkscape:window-maximized="1"
inkscape:current-layer="svg835"
inkscape:document-rotation="0" />
<!-- Font Awesome Free 5.15.3 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) -->
<path
d="M 24.107142,2.0000103 H 17.410714 L 16.886161,0.83126068 A 1.3392858,1.4999995 0 0 0 15.686384,1.0955215e-5 H 9.3080359 A 1.3236608,1.4824995 0 0 0 8.1138391,0.83126068 L 7.5892861,2.0000103 H 0.89285719 A 0.89285719,0.99999964 0 0 0 0,3.00001 V 5.0000092 A 0.89285719,0.99999964 0 0 0 0.89285719,6.0000089 H 24.107142 A 0.89285719,0.99999964 0 0 0 25,5.0000092 V 3.00001 A 0.89285719,0.99999964 0 0 0 24.107142,2.0000103 Z M 2.96875,29.1875 A 2.6785714,2.9999989 0 0 0 5.6417411,32 H 19.358259 A 2.6785714,2.9999989 0 0 0 22.03125,29.1875 L 23.214286,8.0000083 H 1.7857142 Z"
id="path833"
style="fill:#1ea7e1;fill-opacity:1;stroke-width:0.059057" />
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

View file

@ -0,0 +1,34 @@
[remap]
importer="texture"
type="StreamTexture"
path="res://.import/trash.svg-2dea8a7a79a1ab3e264e388d8ca19746.stex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://sprites/symbols/trash.svg"
dest_files=[ "res://.import/trash.svg-2dea8a7a79a1ab3e264e388d8ca19746.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