mirror of
https://github.com/tonytins/dressupzack
synced 2025-05-05 13:34:48 -04:00
In-game news straight from my website
This is new feature trying out JSON-RPC requests.
This commit is contained in:
parent
9db6589717
commit
ec79a57f96
15 changed files with 628 additions and 17 deletions
4
.gitignore
vendored
4
.gitignore
vendored
|
@ -149,4 +149,6 @@ $RECYCLE.BIN/
|
|||
# Windows shortcuts
|
||||
*.lnk
|
||||
|
||||
# End of https://www.toptal.com/developers/gitignore/api/macos,linux,godot,backup,windows,dotnetcore,executable,monodevelop,visualstudiocode,web
|
||||
# End of https://www.toptal.com/developers/gitignore/api/macos,linux,godot,backup,windows,dotnetcore,executable,monodevelop,visualstudiocode,web
|
||||
|
||||
/export
|
69
scenes/NewsWin.tscn
Normal file
69
scenes/NewsWin.tscn
Normal file
|
@ -0,0 +1,69 @@
|
|||
[gd_scene load_steps=4 format=2]
|
||||
|
||||
[ext_resource path="res://sprites/symbols/sync.svg" type="Texture" id=1]
|
||||
[ext_resource path="res://sprites/pawprint-logo.svg" type="Texture" id=2]
|
||||
[ext_resource path="res://scripts/news_window.gd" type="Script" id=3]
|
||||
|
||||
[node name="NewsWin" type="WindowDialog"]
|
||||
visible = true
|
||||
anchor_left = 0.15375
|
||||
anchor_top = 0.144
|
||||
anchor_right = 0.84625
|
||||
anchor_bottom = 0.856
|
||||
rect_min_size = Vector2( 540, 340 )
|
||||
window_title = "News"
|
||||
script = ExtResource( 3 )
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": true
|
||||
}
|
||||
|
||||
[node name="News" type="ItemList" parent="."]
|
||||
anchor_top = 0.179775
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
margin_top = -3.8147e-06
|
||||
max_text_lines = 5
|
||||
auto_height = true
|
||||
same_column_width = true
|
||||
icon_mode = 0
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": true
|
||||
}
|
||||
|
||||
[node name="NewsBtns" type="HBoxContainer" parent="."]
|
||||
anchor_top = 0.0280899
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 0.13764
|
||||
margin_top = 0.748672
|
||||
margin_bottom = 0.748837
|
||||
custom_constants/separation = 30
|
||||
alignment = 1
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": true
|
||||
}
|
||||
|
||||
[node name="HTTPRequest" type="HTTPRequest" parent="NewsBtns"]
|
||||
|
||||
[node name="Logo" type="TextureRect" parent="NewsBtns"]
|
||||
margin_left = 79.0
|
||||
margin_right = 367.0
|
||||
margin_bottom = 39.0
|
||||
texture = ExtResource( 2 )
|
||||
stretch_mode = 4
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": true
|
||||
}
|
||||
|
||||
[node name="VSeparator" type="VSeparator" parent="NewsBtns"]
|
||||
margin_left = 397.0
|
||||
margin_right = 401.0
|
||||
margin_bottom = 39.0
|
||||
|
||||
[node name="SyncBtn" type="Button" parent="NewsBtns"]
|
||||
margin_left = 431.0
|
||||
margin_right = 475.0
|
||||
margin_bottom = 39.0
|
||||
icon = ExtResource( 1 )
|
||||
|
||||
[connection signal="request_completed" from="NewsBtns/HTTPRequest" to="." method="_on_HTTPRequest_request_completed"]
|
||||
[connection signal="pressed" from="NewsBtns/SyncBtn" to="." method="_on_SyncBtn_pressed"]
|
|
@ -1,6 +1,6 @@
|
|||
[gd_scene load_steps=15 format=2]
|
||||
[gd_scene load_steps=18 format=2]
|
||||
|
||||
[ext_resource path="res://scenes/character_base.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://scenes/CharacterBase.tscn" type="PackedScene" id=1]
|
||||
[ext_resource path="res://sprites/world/background.svg" type="Texture" id=2]
|
||||
[ext_resource path="res://sprites/symbols/trash.svg" type="Texture" id=3]
|
||||
[ext_resource path="res://scenes/wardrobe.tscn" type="PackedScene" id=4]
|
||||
|
@ -14,6 +14,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]
|
||||
[ext_resource path="res://sprites/symbols/newspaper.svg" type="Texture" id=15]
|
||||
[ext_resource path="res://scenes/NewsWin.tscn" type="PackedScene" id=16]
|
||||
[ext_resource path="res://sprites/symbols/newspaper-disabled.svg" type="Texture" id=17]
|
||||
|
||||
[node name="game" type="Node2D"]
|
||||
script = ExtResource( 14 )
|
||||
|
@ -74,39 +77,55 @@ __meta__ = {
|
|||
wait_time = 2.0
|
||||
|
||||
[node name="CenterBtns" type="CenterContainer" parent="Controls/Container"]
|
||||
anchor_left = 0.35875
|
||||
anchor_top = 0.792
|
||||
anchor_right = 0.99625
|
||||
anchor_bottom = 0.886
|
||||
anchor_left = 0.35125
|
||||
anchor_top = 0.78
|
||||
anchor_right = 0.9925
|
||||
anchor_bottom = 0.874
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": true
|
||||
}
|
||||
|
||||
[node name="ButtonCtr" type="HBoxContainer" parent="Controls/Container/CenterBtns"]
|
||||
margin_left = 197.0
|
||||
margin_left = 157.0
|
||||
margin_top = 7.0
|
||||
margin_right = 312.0
|
||||
margin_right = 356.0
|
||||
margin_bottom = 39.0
|
||||
custom_constants/separation = 20
|
||||
|
||||
[node name="NewsBtn" type="TextureButton" parent="Controls/Container/CenterBtns/ButtonCtr"]
|
||||
margin_right = 40.0
|
||||
margin_bottom = 32.0
|
||||
hint_tooltip = "News"
|
||||
texture_normal = ExtResource( 15 )
|
||||
texture_disabled = ExtResource( 17 )
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": true
|
||||
}
|
||||
|
||||
[node name="VSeparator" type="VSeparator" parent="Controls/Container/CenterBtns/ButtonCtr"]
|
||||
margin_left = 60.0
|
||||
margin_right = 64.0
|
||||
margin_bottom = 32.0
|
||||
|
||||
[node name="ExportBtn" type="TextureButton" parent="Controls/Container/CenterBtns/ButtonCtr"]
|
||||
margin_right = 25.0
|
||||
margin_left = 84.0
|
||||
margin_right = 109.0
|
||||
margin_bottom = 32.0
|
||||
hint_tooltip = "Export"
|
||||
texture_normal = ExtResource( 7 )
|
||||
texture_disabled = ExtResource( 10 )
|
||||
|
||||
[node name="ImportBtn" type="TextureButton" parent="Controls/Container/CenterBtns/ButtonCtr"]
|
||||
margin_left = 45.0
|
||||
margin_right = 70.0
|
||||
margin_left = 129.0
|
||||
margin_right = 154.0
|
||||
margin_bottom = 32.0
|
||||
hint_tooltip = "Import"
|
||||
texture_normal = ExtResource( 9 )
|
||||
texture_disabled = ExtResource( 11 )
|
||||
|
||||
[node name="ClearBtn" type="TextureButton" parent="Controls/Container/CenterBtns/ButtonCtr"]
|
||||
margin_left = 90.0
|
||||
margin_right = 115.0
|
||||
margin_left = 174.0
|
||||
margin_right = 199.0
|
||||
margin_bottom = 32.0
|
||||
hint_tooltip = "Clear"
|
||||
texture_normal = ExtResource( 3 )
|
||||
|
@ -123,7 +142,11 @@ __meta__ = {
|
|||
"_edit_use_anchors_": true
|
||||
}
|
||||
|
||||
[node name="NewsWin" parent="Controls/Container" instance=ExtResource( 16 )]
|
||||
visible = false
|
||||
|
||||
[connection signal="timeout" from="Controls/Container/Spinner/Timer" to="Controls/Container/Spinner" method="_on_Timer_timeout"]
|
||||
[connection signal="pressed" from="Controls/Container/CenterBtns/ButtonCtr/NewsBtn" to="Controls/Container" method="_on_NewsBtn_pressed"]
|
||||
[connection signal="pressed" from="Controls/Container/CenterBtns/ButtonCtr/ExportBtn" to="characterBase" method="_on_SaveBtn_pressed"]
|
||||
[connection signal="pressed" from="Controls/Container/CenterBtns/ButtonCtr/ImportBtn" to="characterBase" method="_on_LoadBtn_pressed"]
|
||||
[connection signal="pressed" from="Controls/Container/CenterBtns/ButtonCtr/ClearBtn" to="characterBase" method="_on_clearBtn_pressed"]
|
||||
|
|
|
@ -12,7 +12,6 @@ onready var base_bottom = preload("res://sprites/character/character_base_legs.s
|
|||
|
||||
onready var export_win = $Controls/Container/ExportWin
|
||||
onready var import_win = $Controls/Container/ImportWin
|
||||
onready var unsupported_win = $Controls/Container/NotSupportedWin
|
||||
|
||||
onready var accessory = $Body/Accessory
|
||||
#onready var underwear = $Undies
|
||||
|
|
19
scripts/news_window.gd
Normal file
19
scripts/news_window.gd
Normal file
|
@ -0,0 +1,19 @@
|
|||
extends WindowDialog
|
||||
|
||||
const _NEWS_API = "https://static.tonybark.com/news/dressup.json"
|
||||
|
||||
onready var news_list = $News
|
||||
onready var http_request = $NewsBtns/HTTPRequest
|
||||
|
||||
func _on_HTTPRequest_request_completed(result, response_code, headers, body):
|
||||
var api_request = parse_json(body.get_string_from_utf8())
|
||||
|
||||
if api_request["feed"] != null:
|
||||
var news_items = api_request["feed"]
|
||||
|
||||
for news in news_items:
|
||||
news_list.add_item(news)
|
||||
|
||||
func _on_SyncBtn_pressed():
|
||||
news_list.clear()
|
||||
http_request.request(_NEWS_API)
|
|
@ -2,6 +2,8 @@
|
|||
# See the LICENSE file in the project root for more information.
|
||||
extends Control
|
||||
|
||||
const _NEWS_API = "https://static.tonybark.com/news/dressup.json"
|
||||
|
||||
export var version: String = "1.0.0"
|
||||
|
||||
onready var character = preload("res://resources/character.tres")
|
||||
|
@ -11,12 +13,23 @@ onready var base_bottom = preload("res://sprites/character/character_base_legs.s
|
|||
|
||||
onready var export_btn = $CenterBtns/ButtonCtr/ExportBtn
|
||||
onready var import_btn = $CenterBtns/ButtonCtr/ImportBtn
|
||||
onready var news_win = $NewsWin
|
||||
onready var news_btn = $CenterBtns/ButtonCtr/NewsBtn
|
||||
onready var http_request = $NewsWin/NewsBtns/HTTPRequest
|
||||
|
||||
func _ready():
|
||||
var verLabel = $versionLbl
|
||||
verLabel.text = "v" + version
|
||||
GameData.version = version
|
||||
|
||||
var err = http_request.request(_NEWS_API)
|
||||
|
||||
if err != OK:
|
||||
news_btn.disabled = true
|
||||
|
||||
if OS.get_name() == "HTML5":
|
||||
export_btn.disabled == true
|
||||
import_btn.disabled == true
|
||||
export_btn.disabled = true
|
||||
import_btn.disabled = true
|
||||
|
||||
func _on_NewsBtn_pressed():
|
||||
news_win.show()
|
||||
|
|
165
sprites/pawprint-logo.svg
Normal file
165
sprites/pawprint-logo.svg
Normal file
|
@ -0,0 +1,165 @@
|
|||
<?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="76.225838mm"
|
||||
height="10.530579mm"
|
||||
viewBox="0 0 76.22584 10.530579"
|
||||
version="1.1"
|
||||
id="svg8"
|
||||
inkscape:version="1.0.2 (e86c8708, 2021-01-15)"
|
||||
sodipodi:docname="pawprint-logo.svg"
|
||||
inkscape:export-filename="tpaw-black.png"
|
||||
inkscape:export-xdpi="25.146"
|
||||
inkscape:export-ydpi="25.146">
|
||||
<defs
|
||||
id="defs2" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#000000"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="2.4881314"
|
||||
inkscape:cx="58.047217"
|
||||
inkscape:cy="38.038055"
|
||||
inkscape:document-units="mm"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
showguides="true"
|
||||
inkscape:pagecheckerboard="true"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="987"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="23"
|
||||
inkscape:window-maximized="0"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
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(-189.42537,318.35553)">
|
||||
<g
|
||||
id="g4705"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.46132;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
transform="matrix(0.11890803,-7.945104e-4,0.00668622,0.11984867,162.3449,-378.03018)">
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.46132;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 592.49553,524.1496 c 0,7.61279 -4.71627,9.2516 -10.98875,11.23585 -6.59099,2.085 -15.47882,-5.24473 -15.47882,-12.85752 0,-7.6128 7.94255,-17.95418 14.53356,-17.95418 6.59097,0 11.93401,11.96306 11.93401,19.57585 z"
|
||||
id="path3950"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.46132;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 568.86377,547.48385 c 0,7.61279 -4.71626,9.25159 -10.98876,11.23584 -6.59099,2.08499 -15.4788,-5.24473 -15.4788,-12.85752 0,-7.61279 7.94254,-17.95418 14.53353,-17.95418 6.59098,0 11.93403,11.96307 11.93403,19.57586 z"
|
||||
id="path3950-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.46132;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 622.03523,521.53715 c 0,7.6128 -4.71628,9.25161 -10.98878,11.23584 -6.59098,2.085 -15.4788,-5.24472 -15.4788,-12.85751 0,-7.61279 7.94254,-17.95418 14.53354,-17.95418 6.59098,0 11.93404,11.96306 11.93404,19.57585 z"
|
||||
id="path3950-8-8"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.46132;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 642.59487,546.09385 c 0,7.61278 -4.71627,9.25159 -10.98877,11.23584 -6.59099,2.085 -15.4788,-5.24472 -15.4788,-12.85752 0,-7.61278 7.94254,-17.95417 14.53354,-17.95417 6.59097,0 11.93403,11.96306 11.93403,19.57585 z"
|
||||
id="path3950-8-8-2"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
<path
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:2.46132;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
d="m 591.14675,538.99253 c -10.43858,0.10692 -12.43121,1.47616 -20.44817,17.72107 -9.86692,19.99352 9.60144,26.9789 19.14105,27.0626 l 6.08291,0.0134 c 9.53076,-0.0767 30.15822,-7.07228 20.28625,-27.07603 -8.01696,-16.24492 -10.23952,-17.61416 -20.6781,-17.72107 -1.63517,-0.0421 -2.96692,-0.031 -4.38394,0 z"
|
||||
id="path3806"
|
||||
inkscape:connector-curvature="0"
|
||||
sodipodi:nodetypes="csccsccc" />
|
||||
</g>
|
||||
<g
|
||||
id="g2049"
|
||||
transform="matrix(0.67677022,0,0,0.68248465,63.734792,-101.58923)">
|
||||
<path
|
||||
d="m 189.34585,-309.79459 v 2.72025 q 0,0.79582 0.094,1.00563 0.10128,0.20257 0.34726,0.32556 0.25322,0.12299 0.91881,0.12299 v 0.26768 h -4.98472 v -0.26768 q 0.68007,0 0.91881,-0.12299 0.24598,-0.13023 0.34003,-0.3328 0.10129,-0.20257 0.10129,-0.99839 v -6.36655 q 0,-0.79582 -0.10129,-0.99839 -0.094,-0.20981 -0.34003,-0.3328 -0.24598,-0.12299 -0.91881,-0.12299 v -0.26768 h 4.27572 q 2.11254,0 3.03135,0.75241 0.91881,0.75241 0.91881,1.88102 0,0.95499 -0.59325,1.63505 -0.59325,0.68006 -1.63505,0.92604 -0.70177,0.17364 -2.37298,0.17364 z m 0,-4.80386 v 4.23955 q 0.23874,0.0145 0.36173,0.0145 0.88264,0 1.36013,-0.5209 0.47749,-0.52814 0.47749,-1.62781 0,-1.09245 -0.47749,-1.59888 -0.47749,-0.50643 -1.42524,-0.50643 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.8167px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path2001" />
|
||||
<path
|
||||
d="m 198.63522,-306.35087 q -1.23714,1.09244 -2.22106,1.09244 -0.57877,0 -0.96221,-0.3762 -0.38344,-0.38344 -0.38344,-0.95498 0,-0.77412 0.66559,-1.38907 0.66559,-0.62219 2.90112,-1.64952 v -0.68006 q 0,-0.76688 -0.0868,-0.96222 -0.0796,-0.20257 -0.31109,-0.34726 -0.23151,-0.15193 -0.5209,-0.15193 -0.47025,0 -0.77411,0.2098 -0.1881,0.13023 -0.1881,0.30386 0,0.15193 0.20257,0.37621 0.27492,0.31109 0.27492,0.60048 0,0.3545 -0.26769,0.60772 -0.26045,0.24598 -0.6873,0.24598 -0.45578,0 -0.76688,-0.27492 -0.30385,-0.27492 -0.30385,-0.64389 0,-0.5209 0.41237,-0.99116 0.41238,-0.47749 1.15032,-0.73071 0.73795,-0.25321 1.53376,-0.25321 0.96222,0 1.5193,0.41238 0.5643,0.40514 0.7307,0.88263 0.10129,0.30386 0.10129,1.3963 v 2.62621 q 0,0.46302 0.0362,0.58601 0.0362,0.11575 0.10852,0.17363 0.0724,0.0579 0.1664,0.0579 0.1881,0 0.38344,-0.26768 l 0.21704,0.17363 q -0.36173,0.53537 -0.75241,0.78135 -0.38344,0.23874 -0.8754,0.23874 -0.57878,0 -0.90434,-0.26768 -0.32556,-0.27492 -0.39791,-0.82476 z m 0,-0.52813 v -2.26447 q -0.8754,0.51367 -1.30225,1.09968 -0.28215,0.39067 -0.28215,0.78858 0,0.3328 0.23874,0.58601 0.18087,0.19534 0.50643,0.19534 0.36174,0 0.83923,-0.40514 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.8167px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path2003" />
|
||||
<path
|
||||
d="m 209.01704,-305.14991 -1.85209,-4.96301 -1.81591,4.96301 h -0.37621 l -1.80144,-4.90513 q -0.40515,-1.12139 -0.6873,-1.46142 -0.18087,-0.23151 -0.54984,-0.33279 v -0.26769 h 3.41479 v 0.26769 q -0.34727,0 -0.47749,0.10128 -0.13023,0.10129 -0.13023,0.23151 0,0.12299 0.23151,0.73794 l 0.99116,2.64068 0.95498,-2.64068 -0.0723,-0.17363 q -0.21705,-0.5426 -0.38344,-0.6873 -0.15917,-0.15193 -0.4992,-0.2098 v -0.26769 h 3.46543 v 0.26769 q -0.40515,0.0217 -0.51367,0.11575 -0.10852,0.0868 -0.10852,0.25322 0,0.15916 0.20981,0.70176 l 0.95498,2.64068 0.86817,-2.43087 q 0.1881,-0.5209 0.1881,-0.709 0,-0.28216 -0.13746,-0.41238 -0.13746,-0.13022 -0.53537,-0.15916 v -0.26769 h 2.00402 v 0.26769 q -0.3328,0.0434 -0.52814,0.23874 -0.19533,0.1881 -0.50643,1.08521 l -1.89549,5.37539 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.8167px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path2005" />
|
||||
<path
|
||||
d="m 215.63681,-306.03978 v 2.51769 q 0,0.52089 0.0796,0.709 0.0868,0.1881 0.26045,0.27492 0.17363,0.0868 0.68006,0.0868 v 0.26769 h -3.8561 v -0.26769 q 0.44855,-0.0145 0.66559,-0.25321 0.14469,-0.1664 0.14469,-0.86093 v -7.14067 q 0,-0.71624 -0.16639,-0.91157 -0.1664,-0.20257 -0.64389,-0.23151 v -0.26769 h 2.83601 v 0.88987 q 0.3545,-0.5209 0.72347,-0.75241 0.52813,-0.34003 1.15032,-0.34003 0.74517,0 1.35289,0.47026 0.61495,0.47025 0.93328,1.30225 0.31833,0.82475 0.31833,1.77974 0,1.02733 -0.3328,1.88102 -0.32556,0.84646 -0.95498,1.29502 -0.62219,0.44131 -1.38907,0.44131 -0.55707,0 -1.0418,-0.24598 -0.36174,-0.1881 -0.75964,-0.64389 z m 0,-0.7307 q 0.62218,0.88263 1.33118,0.88263 0.39068,0 0.64389,-0.41238 0.37621,-0.60771 0.37621,-2.31511 0,-1.7508 -0.41238,-2.39469 -0.27492,-0.42684 -0.73794,-0.42684 -0.73071,0 -1.20096,1.05626 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.8167px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path2007" />
|
||||
<path
|
||||
d="m 224.07249,-312.11694 v 1.53376 q 0.67282,-1.04903 1.17925,-1.38906 0.50643,-0.34727 0.97669,-0.34727 0.40515,0 0.64389,0.25321 0.24598,0.24599 0.24598,0.70177 0,0.48473 -0.23874,0.75241 -0.23152,0.26769 -0.56431,0.26769 -0.38344,0 -0.6656,-0.24598 -0.28215,-0.24598 -0.33279,-0.27492 -0.0724,-0.0434 -0.1664,-0.0434 -0.20981,0 -0.39791,0.15916 -0.29662,0.24598 -0.44855,0.70177 -0.23151,0.70177 -0.23151,1.54823 v 1.55546 l 0.007,0.40515 q 0,0.41238 0.0506,0.52813 0.0868,0.19534 0.25322,0.28939 0.17363,0.0868 0.57878,0.10852 v 0.26045 h -3.65354 v -0.26045 q 0.44132,-0.0362 0.59325,-0.23874 0.15916,-0.20981 0.15916,-1.09245 v -3.74034 q 0,-0.57878 -0.0579,-0.73795 -0.0724,-0.20257 -0.20981,-0.29662 -0.13746,-0.0941 -0.48473,-0.13022 v -0.26769 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.8167px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path2009" />
|
||||
<path
|
||||
d="m 229.46235,-315.39426 q 0.47026,0 0.79582,0.33279 0.32556,0.32556 0.32556,0.78859 0,0.46302 -0.3328,0.78858 -0.32556,0.32556 -0.78858,0.32556 -0.46302,0 -0.78858,-0.32556 -0.32557,-0.32556 -0.32557,-0.78858 0,-0.46303 0.32557,-0.78859 0.32556,-0.33279 0.78858,-0.33279 z m 1.01286,3.27732 v 5.36093 q 0,0.71623 0.1664,0.91881 0.1664,0.19533 0.65112,0.22427 v 0.26045 h -3.65353 v -0.26045 q 0.44855,-0.0145 0.66559,-0.26045 0.1447,-0.1664 0.1447,-0.88263 v -3.95016 q 0,-0.71624 -0.1664,-0.91157 -0.1664,-0.20257 -0.64389,-0.23151 v -0.26769 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.8167px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path2011" />
|
||||
<path
|
||||
d="m 234.70752,-312.11694 v 0.8754 q 0.5209,-0.56431 0.99839,-0.81752 0.47749,-0.26045 1.02733,-0.26045 0.65836,0 1.09244,0.36897 0.43409,0.36174 0.57878,0.90434 0.11576,0.41238 0.11576,1.5844 v 2.63344 q 0,0.78135 0.13746,0.97669 0.14469,0.1881 0.59324,0.23874 v 0.26045 h -3.42202 v -0.26045 q 0.38344,-0.0506 0.54984,-0.31833 0.11576,-0.18086 0.11576,-0.8971 v -3.00964 q 0,-0.83199 -0.0651,-1.04904 -0.0651,-0.21704 -0.22427,-0.33279 -0.15193,-0.12299 -0.34003,-0.12299 -0.62219,0 -1.15756,0.88987 v 3.62459 q 0,0.75965 0.13746,0.96222 0.1447,0.20257 0.52814,0.25321 v 0.26045 h -3.42203 v -0.26045 q 0.42685,-0.0434 0.60772,-0.27492 0.12299,-0.15916 0.12299,-0.94051 v -3.81993 q 0,-0.76688 -0.14469,-0.95498 -0.13746,-0.18811 -0.58602,-0.24598 v -0.26769 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.8167px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path2013" />
|
||||
<path
|
||||
d="m 242.87551,-314.59121 v 2.47427 h 1.60611 v 0.71624 h -1.60611 v 4.17443 q 0,0.58601 0.0507,0.75965 0.0579,0.16639 0.19533,0.27491 0.13746,0.10129 0.25322,0.10129 0.47026,0 0.88987,-0.71624 l 0.21704,0.15917 q -0.58601,1.38906 -1.90273,1.38906 -0.64389,0 -1.09244,-0.3545 -0.44132,-0.36173 -0.56431,-0.80305 -0.0724,-0.24598 -0.0724,-1.33119 v -3.65353 h -0.88263 v -0.25322 q 0.91157,-0.64389 1.54823,-1.35289 0.64389,-0.709 1.12138,-1.5844 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.8167px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path2015" />
|
||||
</g>
|
||||
<g
|
||||
id="g2056"
|
||||
transform="matrix(0.67677022,0,0,0.68248465,55.236042,-101.58923)">
|
||||
<path
|
||||
d="m 281.97916,-309.79459 v 2.72025 q 0,0.79582 0.0941,1.00563 0.10129,0.20257 0.34727,0.32556 0.25321,0.12299 0.91881,0.12299 v 0.26768 h -4.98472 v -0.26768 q 0.68006,0 0.91881,-0.12299 0.24598,-0.13023 0.34003,-0.3328 0.10129,-0.20257 0.10129,-0.99839 v -6.36655 q 0,-0.79582 -0.10129,-0.99839 -0.094,-0.20981 -0.34003,-0.3328 -0.24598,-0.12299 -0.91881,-0.12299 v -0.26768 h 4.27572 q 2.11253,0 3.03134,0.75241 0.91881,0.75241 0.91881,1.88102 0,0.95499 -0.59325,1.63505 -0.59324,0.68006 -1.63504,0.92604 -0.70177,0.17364 -2.37299,0.17364 z m 0,-4.80386 v 4.23955 q 0.23875,0.0145 0.36174,0.0145 0.88263,0 1.36012,-0.5209 0.4775,-0.52814 0.4775,-1.62781 0,-1.09245 -0.4775,-1.59888 -0.47749,-0.50643 -1.42524,-0.50643 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.8167px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path2017" />
|
||||
<path
|
||||
d="m 290.34249,-312.11694 v 1.53376 q 0.67283,-1.04903 1.17926,-1.38906 0.50643,-0.34727 0.97669,-0.34727 0.40514,0 0.64389,0.25321 0.24598,0.24599 0.24598,0.70177 0,0.48473 -0.23875,0.75241 -0.23151,0.26769 -0.56431,0.26769 -0.38344,0 -0.66559,-0.24598 -0.28216,-0.24598 -0.3328,-0.27492 -0.0724,-0.0434 -0.1664,-0.0434 -0.2098,0 -0.39791,0.15916 -0.29662,0.24598 -0.44855,0.70177 -0.23151,0.70177 -0.23151,1.54823 v 1.55546 l 0.007,0.40515 q 0,0.41238 0.0507,0.52813 0.0868,0.19534 0.25321,0.28939 0.17364,0.0868 0.57878,0.10852 v 0.26045 h -3.65353 v -0.26045 q 0.44132,-0.0362 0.59324,-0.23874 0.15917,-0.20981 0.15917,-1.09245 v -3.74034 q 0,-0.57878 -0.0579,-0.73795 -0.0724,-0.20257 -0.20981,-0.29662 -0.13746,-0.0941 -0.48472,-0.13022 v -0.26769 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.8167px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path2019" />
|
||||
<path
|
||||
d="m 299.57399,-308.97707 h -3.71141 q 0.0651,1.34566 0.71623,2.12701 0.4992,0.60048 1.20097,0.60048 0.43408,0 0.78858,-0.23875 0.3545,-0.24598 0.75965,-0.8754 l 0.24598,0.15916 q -0.54984,1.12139 -1.21544,1.59164 -0.66559,0.46302 -1.54099,0.46302 -1.50482,0 -2.27894,-1.15755 -0.62218,-0.93328 -0.62218,-2.31511 0,-1.69292 0.91157,-2.69131 0.91881,-1.00563 2.14871,-1.00563 1.02733,0 1.77974,0.84646 0.75965,0.83923 0.81753,2.49598 z m -1.77974,-0.48473 q 0,-1.16479 -0.13023,-1.59887 -0.12299,-0.43408 -0.39067,-0.65836 -0.15193,-0.13022 -0.40515,-0.13022 -0.3762,0 -0.61495,0.36897 -0.42685,0.64389 -0.42685,1.76527 v 0.25321 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.8167px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path2021" />
|
||||
<path
|
||||
d="m 304.68894,-312.30504 0.10852,2.30787 h -0.24598 q -0.44132,-1.02733 -0.91881,-1.40353 -0.47026,-0.37621 -0.94051,-0.37621 -0.29663,0 -0.50643,0.20258 -0.20981,0.19533 -0.20981,0.45578 0,0.19534 0.14469,0.37621 0.23151,0.29662 1.29502,1.02009 1.0635,0.71624 1.3963,1.22267 0.34003,0.4992 0.34003,1.12138 0,0.56431 -0.28215,1.10691 -0.28216,0.54261 -0.79582,0.832 -0.51367,0.28938 -1.13585,0.28938 -0.48473,0 -1.29502,-0.30385 -0.21704,-0.0796 -0.29662,-0.0796 -0.23875,0 -0.39791,0.36174 h -0.23875 l -0.11575,-2.43086 h 0.24598 q 0.32556,0.95498 0.88987,1.43247 0.57154,0.47749 1.07797,0.47749 0.34727,0 0.56431,-0.20981 0.22428,-0.21704 0.22428,-0.5209 0,-0.34726 -0.21705,-0.60048 -0.21704,-0.25321 -0.96945,-0.76688 -1.10691,-0.76688 -1.43247,-1.17202 -0.47749,-0.59325 -0.47749,-1.30949 0,-0.78134 0.53537,-1.41077 0.5426,-0.63665 1.56269,-0.63665 0.54984,0 1.06351,0.26768 0.19534,0.10852 0.31833,0.10852 0.13022,0 0.2098,-0.0506 0.0796,-0.0579 0.25322,-0.31109 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.8167px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path2023" />
|
||||
<path
|
||||
d="m 310.44776,-312.30504 0.10853,2.30787 h -0.24598 q -0.44132,-1.02733 -0.91881,-1.40353 -0.47026,-0.37621 -0.94052,-0.37621 -0.29662,0 -0.50643,0.20258 -0.2098,0.19533 -0.2098,0.45578 0,0.19534 0.14469,0.37621 0.23151,0.29662 1.29501,1.02009 1.06351,0.71624 1.3963,1.22267 0.34004,0.4992 0.34004,1.12138 0,0.56431 -0.28216,1.10691 -0.28215,0.54261 -0.79582,0.832 -0.51366,0.28938 -1.13585,0.28938 -0.48472,0 -1.29501,-0.30385 -0.21704,-0.0796 -0.29662,-0.0796 -0.23875,0 -0.39791,0.36174 h -0.23875 l -0.11576,-2.43086 h 0.24599 q 0.32556,0.95498 0.88987,1.43247 0.57154,0.47749 1.07797,0.47749 0.34726,0 0.56431,-0.20981 0.22427,-0.21704 0.22427,-0.5209 0,-0.34726 -0.21704,-0.60048 -0.21704,-0.25321 -0.96945,-0.76688 -1.10691,-0.76688 -1.43248,-1.17202 -0.47749,-0.59325 -0.47749,-1.30949 0,-0.78134 0.53537,-1.41077 0.54261,-0.63665 1.5627,-0.63665 0.54984,0 1.0635,0.26768 0.19534,0.10852 0.31833,0.10852 0.13023,0 0.20981,-0.0506 0.0796,-0.0579 0.25321,-0.31109 z"
|
||||
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:14.8167px;line-height:1.25;font-family:'Times New Roman';-inkscape-font-specification:'Times New Roman, Bold';fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.264583"
|
||||
id="path2025" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
inkscape:groupmode="layer"
|
||||
id="layer2"
|
||||
inkscape:label="Layer 2"
|
||||
transform="translate(-189.42537,318.35553)" />
|
||||
</svg>
|
After Width: | Height: | Size: 19 KiB |
34
sprites/pawprint-logo.svg.import
Normal file
34
sprites/pawprint-logo.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/pawprint-logo.svg-01cd6ea8ad71ffb3d0348f6c08c67cda.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/pawprint-logo.svg"
|
||||
dest_files=[ "res://.import/pawprint-logo.svg-01cd6ea8ad71ffb3d0348f6c08c67cda.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/newspaper-disabled.svg
Normal file
62
sprites/symbols/newspaper-disabled.svg
Normal 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="newspaper-disabled.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.1597222"
|
||||
inkscape:cx="223.32934"
|
||||
inkscape:cy="176.47904"
|
||||
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 38.333332,0 H 6.111111 C 5.190625,0 4.4444445,0.895417 4.4444445,2 V 2.666667 H 1.6666666 C 0.74618055,2.666667 0,3.562083 0,4.666667 V 27.333333 C 0,29.910667 1.741111,32 3.888889,32 H 36.666668 C 38.507638,32 40,30.209167 40,28 V 2 C 40,0.895417 39.253821,0 38.333332,0 Z M 3.888889,28 A 0.55555555,0.66666667 0 0 1 3.3333333,27.333333 V 6.666667 H 4.4444445 V 27.333333 A 0.55555555,0.66666667 0 0 1 3.888889,28 Z M 20.277777,26.666667 H 9.7222223 c -0.4602083,0 -0.8333333,-0.44775 -0.8333333,-1 V 25 c 0,-0.55225 0.373125,-1 0.8333333,-1 H 20.277777 c 0.460209,0 0.833333,0.44775 0.833333,1 v 0.666667 c 0,0.55225 -0.373124,1 -0.833333,1 z m 14.444445,0 H 24.166667 c -0.460208,0 -0.833335,-0.44775 -0.833335,-1 V 25 c 0,-0.55225 0.373127,-1 0.833335,-1 h 10.555555 c 0.460207,0 0.833333,0.44775 0.833333,1 v 0.666667 c 0,0.55225 -0.373126,1 -0.833333,1 z m -14.444445,-8 H 9.7222223 c -0.4602083,0 -0.8333333,-0.44775 -0.8333333,-1 V 17 c 0,-0.55225 0.373125,-1 0.8333333,-1 H 20.277777 c 0.460209,0 0.833333,0.44775 0.833333,1 v 0.666667 c 0,0.55225 -0.373124,1 -0.833333,1 z m 14.444445,0 H 24.166667 c -0.460208,0 -0.833335,-0.44775 -0.833335,-1 V 17 c 0,-0.55225 0.373127,-1 0.833335,-1 h 10.555555 c 0.460207,0 0.833333,0.44775 0.833333,1 v 0.666667 c 0,0.55225 -0.373126,1 -0.833333,1 z m 0,-8 H 9.7222223 c -0.4602083,0 -0.8333333,-0.44775 -0.8333333,-1 V 6.333333 c 0,-0.55225 0.373125,-1 0.8333333,-1 H 34.722222 c 0.460207,0 0.833333,0.44775 0.833333,1 v 3.333334 c 0,0.55225 -0.373126,1 -0.833333,1 z"
|
||||
id="path833"
|
||||
style="stroke-width:0.0760726;fill:#b3b3b3;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
34
sprites/symbols/newspaper-disabled.svg.import
Normal file
34
sprites/symbols/newspaper-disabled.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/newspaper-disabled.svg-4f6a658b170751bc0f75fca2f40c3b06.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/symbols/newspaper-disabled.svg"
|
||||
dest_files=[ "res://.import/newspaper-disabled.svg-4f6a658b170751bc0f75fca2f40c3b06.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/newspaper.svg
Normal file
62
sprites/symbols/newspaper.svg
Normal 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="newspaper.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 />
|
||||
</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.1597222"
|
||||
inkscape:cx="223.32934"
|
||||
inkscape:cy="176.47904"
|
||||
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 38.333332,0 H 6.111111 C 5.190625,0 4.4444445,0.895417 4.4444445,2 V 2.666667 H 1.6666666 C 0.74618055,2.666667 0,3.562083 0,4.666667 V 27.333333 C 0,29.910667 1.741111,32 3.888889,32 H 36.666668 C 38.507638,32 40,30.209167 40,28 V 2 C 40,0.895417 39.253821,0 38.333332,0 Z M 3.888889,28 A 0.55555555,0.66666667 0 0 1 3.3333333,27.333333 V 6.666667 H 4.4444445 V 27.333333 A 0.55555555,0.66666667 0 0 1 3.888889,28 Z M 20.277777,26.666667 H 9.7222223 c -0.4602083,0 -0.8333333,-0.44775 -0.8333333,-1 V 25 c 0,-0.55225 0.373125,-1 0.8333333,-1 H 20.277777 c 0.460209,0 0.833333,0.44775 0.833333,1 v 0.666667 c 0,0.55225 -0.373124,1 -0.833333,1 z m 14.444445,0 H 24.166667 c -0.460208,0 -0.833335,-0.44775 -0.833335,-1 V 25 c 0,-0.55225 0.373127,-1 0.833335,-1 h 10.555555 c 0.460207,0 0.833333,0.44775 0.833333,1 v 0.666667 c 0,0.55225 -0.373126,1 -0.833333,1 z m -14.444445,-8 H 9.7222223 c -0.4602083,0 -0.8333333,-0.44775 -0.8333333,-1 V 17 c 0,-0.55225 0.373125,-1 0.8333333,-1 H 20.277777 c 0.460209,0 0.833333,0.44775 0.833333,1 v 0.666667 c 0,0.55225 -0.373124,1 -0.833333,1 z m 14.444445,0 H 24.166667 c -0.460208,0 -0.833335,-0.44775 -0.833335,-1 V 17 c 0,-0.55225 0.373127,-1 0.833335,-1 h 10.555555 c 0.460207,0 0.833333,0.44775 0.833333,1 v 0.666667 c 0,0.55225 -0.373126,1 -0.833333,1 z m 0,-8 H 9.7222223 c -0.4602083,0 -0.8333333,-0.44775 -0.8333333,-1 V 6.333333 c 0,-0.55225 0.373125,-1 0.8333333,-1 H 34.722222 c 0.460207,0 0.833333,0.44775 0.833333,1 v 3.333334 c 0,0.55225 -0.373126,1 -0.833333,1 z"
|
||||
id="path833"
|
||||
style="stroke-width:0.0760726;fill:#1ea7e1;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 3.4 KiB |
34
sprites/symbols/newspaper.svg.import
Normal file
34
sprites/symbols/newspaper.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/newspaper.svg-c0c10dffd78099ba7b3807021c14924f.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/symbols/newspaper.svg"
|
||||
dest_files=[ "res://.import/newspaper.svg-c0c10dffd78099ba7b3807021c14924f.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/sync.svg
Normal file
61
sprites/symbols/sync.svg
Normal 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 32 32"
|
||||
version="1.1"
|
||||
id="svg835"
|
||||
sodipodi:docname="sync.svg"
|
||||
width="32"
|
||||
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="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.3046875"
|
||||
inkscape:cx="256"
|
||||
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 27.540625,0.78562499 0.25,5.17312491 A 15.4475,15.4475 0 0 0 15.989375,0.49999999 c -7.56875,0 -13.87,5.43249991 -15.22125,12.61375001 A 0.75,0.74999999 0 0 0 1.505625,14 H 4.57125 a 0.75,0.74999999 0 0 0 0.729375,-0.57875 10.994375,10.994375 0 0 1 19.8125,-3.5587502 l -6.34125,-0.30375 A 0.75,0.74999999 0 0 0 17.98625,10.30875 v 2.963125 a 0.75,0.74999999 0 0 0 0.75,0.75 H 31.25 a 0.75,0.74999999 0 0 0 0.75,-0.75 V 0.74999999 A 0.75,0.74999999 0 0 0 31.25,0 h -2.960625 a 0.75,0.74999999 0 0 0 -0.74875,0.78562499 z M 15.989375,27 a 10.975625,10.975625 0 0 1 -9.125,-4.8625 l 6.3625,0.304375 a 0.75,0.74999999 0 0 0 0.785625,-0.75 v -2.9625 a 0.75,0.74999999 0 0 0 -0.75,-0.75 H 0.75 a 0.75,0.74999999 0 0 0 -0.75,0.75 v 12.520624 a 0.75,0.74999999 0 0 0 0.75,0.75 h 2.959375 a 0.75,0.74999999 0 0 0 0.75,-0.7875 L 4.2,26.051875 a 15.448125,15.448125 0 0 0 11.789375,5.448124 C 23.55875,31.499999 29.86,26.0675 31.21125,18.88625 A 0.75,0.74999999 0 0 0 30.47375,18 H 27.408125 A 0.75,0.74999999 0 0 0 26.67875,18.57875 10.99125,10.99125 0 0 1 15.989375,27 Z"
|
||||
id="path833"
|
||||
style="fill:#ffffff;stroke-width:0.0625" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
34
sprites/symbols/sync.svg.import
Normal file
34
sprites/symbols/sync.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/sync.svg-f813d9cd893fe23342f18498df3c01d6.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://sprites/symbols/sync.svg"
|
||||
dest_files=[ "res://.import/sync.svg-f813d9cd893fe23342f18498df3c01d6.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
|
Loading…
Add table
Reference in a new issue