feat: cleaned up, added open font + logo
This commit is contained in:
parent
c4868130eb
commit
91ce8a1cf0
|
@ -1,6 +1,7 @@
|
|||
extends Control
|
||||
|
||||
func _ready():
|
||||
$RichTextLabel/Logo.hide()
|
||||
$VBoxContainer/ButtonTemplate.hide()
|
||||
|
||||
func continue_dialogue():
|
||||
|
@ -12,7 +13,7 @@ func continue_dialogue():
|
|||
$Wol.resume()
|
||||
|
||||
func _on_Wol_line(line):
|
||||
$RichTextLabel.text = line.text
|
||||
$RichTextLabel.bbcode_text = line.text
|
||||
|
||||
$Tween.remove_all()
|
||||
$Tween.interpolate_property(
|
||||
|
|
101
Dialogue.tscn
101
Dialogue.tscn
|
@ -1,8 +1,46 @@
|
|||
[gd_scene load_steps=4 format=2]
|
||||
[gd_scene load_steps=12 format=2]
|
||||
|
||||
[ext_resource path="res://addons/Wol/Ostrich Sans Font.tres" type="DynamicFont" id=1]
|
||||
[ext_resource path="res://addons/Wol/Wol.gd" type="Script" id=2]
|
||||
[ext_resource path="res://addons/Wol/Wol.gd" type="Script" id=1]
|
||||
[ext_resource path="res://addons/Wol/logo.svg" type="Texture" id=3]
|
||||
[ext_resource path="res://addons/Wol/font/Italic.tres" type="DynamicFont" id=4]
|
||||
[ext_resource path="res://addons/Wol/font/Regular.tres" type="DynamicFont" id=5]
|
||||
[ext_resource path="res://addons/Wol/font/Bold.tres" type="DynamicFont" id=6]
|
||||
[ext_resource path="res://Dialogue.gd" type="Script" id=7]
|
||||
[ext_resource path="res://addons/Wol/font/ItalicBold.tres" type="DynamicFont" id=8]
|
||||
|
||||
[sub_resource type="StyleBoxFlat" id=2]
|
||||
bg_color = Color( 0.705882, 0.709804, 0.74902, 1 )
|
||||
corner_radius_top_left = 32
|
||||
corner_radius_top_right = 32
|
||||
corner_radius_bottom_right = 32
|
||||
corner_radius_bottom_left = 32
|
||||
|
||||
[sub_resource type="StyleBoxFlat" id=4]
|
||||
bg_color = Color( 0.2914, 0.29295, 0.31, 1 )
|
||||
corner_radius_top_left = 32
|
||||
corner_radius_top_right = 32
|
||||
corner_radius_bottom_right = 32
|
||||
corner_radius_bottom_left = 32
|
||||
|
||||
[sub_resource type="StyleBoxFlat" id=3]
|
||||
bg_color = Color( 0.490196, 0.501961, 0.619608, 1 )
|
||||
border_width_left = 2
|
||||
border_width_top = 2
|
||||
border_width_right = 2
|
||||
border_width_bottom = 2
|
||||
border_color = Color( 0.705, 0.70875, 0.75, 1 )
|
||||
corner_radius_top_left = 32
|
||||
corner_radius_top_right = 32
|
||||
corner_radius_bottom_right = 32
|
||||
corner_radius_bottom_left = 32
|
||||
|
||||
[sub_resource type="StyleBoxFlat" id=1]
|
||||
bg_color = Color( 0, 0, 0, 1 )
|
||||
border_blend = true
|
||||
corner_radius_top_left = 32
|
||||
corner_radius_top_right = 32
|
||||
corner_radius_bottom_right = 32
|
||||
corner_radius_bottom_left = 32
|
||||
|
||||
[node name="Dialogue" type="Control"]
|
||||
anchor_right = 1.0
|
||||
|
@ -12,13 +50,36 @@ __meta__ = {
|
|||
"_edit_use_anchors_": false
|
||||
}
|
||||
|
||||
[node name="Background" type="ColorRect" parent="."]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": false
|
||||
}
|
||||
|
||||
[node name="Wol" type="Node" parent="."]
|
||||
script = ExtResource( 2 )
|
||||
script = ExtResource( 1 )
|
||||
path = "res://dialogue.yarn"
|
||||
auto_start = true
|
||||
variable_storage = {
|
||||
}
|
||||
|
||||
[node name="Logo" type="TextureRect" parent="."]
|
||||
anchor_left = 1.0
|
||||
anchor_top = 1.0
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
margin_left = -198.0
|
||||
margin_top = -98.0
|
||||
margin_right = -16.0
|
||||
margin_bottom = -16.0
|
||||
texture = ExtResource( 3 )
|
||||
expand = true
|
||||
stretch_mode = 6
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": false
|
||||
}
|
||||
|
||||
[node name="RichTextLabel" type="RichTextLabel" parent="."]
|
||||
anchor_right = 1.0
|
||||
anchor_bottom = 1.0
|
||||
|
@ -26,10 +87,30 @@ margin_left = 16.0
|
|||
margin_top = 16.0
|
||||
margin_right = -16.0
|
||||
margin_bottom = -256.0
|
||||
custom_fonts/normal_font = ExtResource( 1 )
|
||||
custom_colors/default_color = Color( 0, 0, 0, 1 )
|
||||
custom_fonts/bold_italics_font = ExtResource( 8 )
|
||||
custom_fonts/italics_font = ExtResource( 4 )
|
||||
custom_fonts/bold_font = ExtResource( 6 )
|
||||
custom_fonts/normal_font = ExtResource( 5 )
|
||||
bbcode_enabled = true
|
||||
bbcode_text = "Here is where the [i]dialogue[/i] will go.
|
||||
|
||||
[b]Run the scene[/b] in order to see how works."
|
||||
text = "Here is where the dialogue will go.
|
||||
|
||||
Run the scene in order to see how \"wol\" works."
|
||||
Run the scene in order to see how works."
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": false
|
||||
}
|
||||
|
||||
[node name="Logo" type="TextureRect" parent="RichTextLabel"]
|
||||
margin_left = 790.0
|
||||
margin_top = 139.0
|
||||
margin_right = 875.0
|
||||
margin_bottom = 181.0
|
||||
texture = ExtResource( 3 )
|
||||
expand = true
|
||||
stretch_mode = 6
|
||||
__meta__ = {
|
||||
"_edit_use_anchors_": false
|
||||
}
|
||||
|
@ -46,8 +127,12 @@ __meta__ = {
|
|||
|
||||
[node name="ButtonTemplate" type="Button" parent="VBoxContainer"]
|
||||
margin_right = 992.0
|
||||
margin_bottom = 66.0
|
||||
custom_fonts/font = ExtResource( 1 )
|
||||
margin_bottom = 63.0
|
||||
custom_fonts/font = ExtResource( 6 )
|
||||
custom_styles/hover = SubResource( 2 )
|
||||
custom_styles/pressed = SubResource( 4 )
|
||||
custom_styles/focus = SubResource( 3 )
|
||||
custom_styles/normal = SubResource( 1 )
|
||||
text = "This is a dialogue option"
|
||||
|
||||
[node name="Tween" type="Tween" parent="."]
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
[gd_resource type="DynamicFont" load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://addons/Wol/OstrichSans-Heavy.otf" type="DynamicFontData" id=1]
|
||||
|
||||
[resource]
|
||||
size = 64
|
||||
use_mipmaps = true
|
||||
use_filter = true
|
||||
extra_spacing_top = 8
|
||||
extra_spacing_bottom = 8
|
||||
font_data = ExtResource( 1 )
|
|
@ -1,97 +0,0 @@
|
|||
Copyright (c) <dates>, <Copyright Holder> (<URL|email>),
|
||||
with Reserved Font Name <Reserved Font Name>.
|
||||
Copyright (c) <dates>, <additional Copyright Holder> (<URL|email>),
|
||||
with Reserved Font Name <additional Reserved Font Name>.
|
||||
Copyright (c) <dates>, <additional Copyright Holder> (<URL|email>).
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
Binary file not shown.
|
@ -1,6 +1,5 @@
|
|||
tool
|
||||
extends Node
|
||||
class_name Wol
|
||||
|
||||
signal node_started(node)
|
||||
signal node_finished(node)
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 3.2 KiB |
BIN
addons/Wol/font/Aileron-Black.otf
Normal file
BIN
addons/Wol/font/Aileron-Black.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-BlackItalic.otf
Normal file
BIN
addons/Wol/font/Aileron-BlackItalic.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-Bold.otf
Normal file
BIN
addons/Wol/font/Aileron-Bold.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-BoldItalic.otf
Normal file
BIN
addons/Wol/font/Aileron-BoldItalic.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-Heavy.otf
Normal file
BIN
addons/Wol/font/Aileron-Heavy.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-HeavyItalic.otf
Normal file
BIN
addons/Wol/font/Aileron-HeavyItalic.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-Italic.otf
Normal file
BIN
addons/Wol/font/Aileron-Italic.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-Light.otf
Normal file
BIN
addons/Wol/font/Aileron-Light.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-LightItalic.otf
Normal file
BIN
addons/Wol/font/Aileron-LightItalic.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-Regular.otf
Normal file
BIN
addons/Wol/font/Aileron-Regular.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-SemiBold.otf
Normal file
BIN
addons/Wol/font/Aileron-SemiBold.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-SemiBoldItalic.otf
Normal file
BIN
addons/Wol/font/Aileron-SemiBoldItalic.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-Thin.otf
Normal file
BIN
addons/Wol/font/Aileron-Thin.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-ThinItalic.otf
Normal file
BIN
addons/Wol/font/Aileron-ThinItalic.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-UltraLight.otf
Normal file
BIN
addons/Wol/font/Aileron-UltraLight.otf
Normal file
Binary file not shown.
BIN
addons/Wol/font/Aileron-UltraLightItalic.otf
Normal file
BIN
addons/Wol/font/Aileron-UltraLightItalic.otf
Normal file
Binary file not shown.
9
addons/Wol/font/Bold.tres
Normal file
9
addons/Wol/font/Bold.tres
Normal file
|
@ -0,0 +1,9 @@
|
|||
[gd_resource type="DynamicFont" load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://addons/Wol/font/Aileron-SemiBold.otf" type="DynamicFontData" id=1]
|
||||
|
||||
[resource]
|
||||
size = 52
|
||||
use_mipmaps = true
|
||||
use_filter = true
|
||||
font_data = ExtResource( 1 )
|
9
addons/Wol/font/Italic.tres
Normal file
9
addons/Wol/font/Italic.tres
Normal file
|
@ -0,0 +1,9 @@
|
|||
[gd_resource type="DynamicFont" load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://addons/Wol/font/Aileron-LightItalic.otf" type="DynamicFontData" id=1]
|
||||
|
||||
[resource]
|
||||
size = 52
|
||||
use_mipmaps = true
|
||||
use_filter = true
|
||||
font_data = ExtResource( 1 )
|
9
addons/Wol/font/ItalicBold.tres
Normal file
9
addons/Wol/font/ItalicBold.tres
Normal file
|
@ -0,0 +1,9 @@
|
|||
[gd_resource type="DynamicFont" load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://addons/Wol/font/Aileron-SemiBoldItalic.otf" type="DynamicFontData" id=1]
|
||||
|
||||
[resource]
|
||||
size = 52
|
||||
use_mipmaps = true
|
||||
use_filter = true
|
||||
font_data = ExtResource( 1 )
|
9
addons/Wol/font/Regular.tres
Normal file
9
addons/Wol/font/Regular.tres
Normal file
|
@ -0,0 +1,9 @@
|
|||
[gd_resource type="DynamicFont" load_steps=2 format=2]
|
||||
|
||||
[ext_resource path="res://addons/Wol/font/Aileron-Light.otf" type="DynamicFontData" id=1]
|
||||
|
||||
[resource]
|
||||
size = 52
|
||||
use_mipmaps = true
|
||||
use_filter = true
|
||||
font_data = ExtResource( 1 )
|
76
addons/Wol/icon-white-with-stroke.svg
Normal file
76
addons/Wol/icon-white-with-stroke.svg
Normal file
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="124"
|
||||
width="124"
|
||||
fill="#000000"
|
||||
version="1.1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 41.333333 41.333333"
|
||||
enable-background="new 0 0 100 100"
|
||||
xml:space="preserve"
|
||||
id="svg65"
|
||||
sodipodi:docname="icon-white-with-stroke.svg"
|
||||
inkscape:version="1.1.1 (c3084ef, 2021-09-22)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs69" /><sodipodi:namedview
|
||||
id="namedview67"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
lock-margins="false"
|
||||
fit-margin-top="8"
|
||||
fit-margin-left="8"
|
||||
fit-margin-right="8"
|
||||
fit-margin-bottom="8"
|
||||
inkscape:zoom="2.1912291"
|
||||
inkscape:cx="22.590062"
|
||||
inkscape:cy="70.736556"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="772"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="1"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="g63" /><g
|
||||
id="g63"
|
||||
transform="translate(5.7288458,31.154242)"><path
|
||||
id="path61"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.33333333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
d="m 17.536011,-24.730999 c -4.167625,-0.03092 -8.2855168,1.905987 -10.9396097,5.115111 -2.5465826,3.009935 -3.7419641,7.110245 -3.1923412,11.0163184 0.4944726,3.8050517 2.6076537,7.3645791 5.7250153,9.6046281 0.3079294,0.2342803 0.6307945,0.4470853 0.9527416,0.661349 C 9.0228229,1.9974413 7.8581126,2.0273504 6.8210141,1.5989175 4.9525985,0.88995465 3.5435848,-0.65539715 1.6256603,-1.279831 c -1.0740248,-0.3260963 -2.33252384,-0.3192502 -3.3035436,0.28652765 -0.5243207,0.4541963 -0.00891,1.419333 0.6581484,1.2605342 0.90047346,-0.4056109 1.96299388,-0.3219774 2.8312886,0.1305362 1.8431569,0.96840525 3.436646,2.50284015 5.5398984,2.90632805 1.5138898,0.3081725 3.0935799,-0.05817 4.4524709,-0.7477227 4.014906,1.7904903 8.866004,1.5718562 12.682184,-0.6210229 3.520943,-1.96568715 6.1489,-5.4763416 6.963944,-9.4337521 0.869126,-3.9615664 -0.05933,-8.2797714 -2.522326,-11.5081874 -2.238302,-3.012065 -5.698807,-5.090451 -9.425065,-5.585062 -0.651335,-0.09171 -1.308809,-0.136879 -1.966649,-0.139342 z m 0.476088,1.499156 c 0.260299,0.01867 0.571657,0.0287 0.802433,0.06501 -1.437985,1.149501 -2.813035,2.380628 -4.073517,3.723554 -0.663157,-0.943116 -1.261831,-1.931839 -1.787818,-2.957792 1.570013,-0.587673 3.342272,-0.907048 5.058902,-0.830766 z m 2.998403,0.477117 c 1.333452,0.380624 2.654477,1.01597 3.83457,1.823756 0.371258,0.139579 0.08349,0.279806 -0.140598,0.418475 -2.207693,1.518631 -4.25103,3.278954 -6.064516,5.252431 -1.080383,-0.900685 -2.077154,-1.901716 -2.977295,-2.982411 1.566757,-1.686024 3.299517,-3.218818 5.169117,-4.560913 0.05956,0.01626 0.119155,0.03241 0.17872,0.04867 z m -9.23474,1.323783 c 2.325788,4.457773 6.08623,8.164355 10.627279,10.339086 2.435538,1.1759554 5.098877,1.9416534 7.77711,2.2106234 -0.21551,1.599492 -0.708644,3.1012012 -1.475412,4.5337792 -0.09023,0.1951273 -0.453415,-0.00143 -0.665093,1.475e-4 -5.651264,-0.9515685 -10.954961,-3.6672937 -15.01031,-7.7156591 -2.012816,-2.002437 -3.7425404,-4.324641 -5.0735806,-6.852231 1.0385485,-1.151997 2.2696976,-2.139913 3.6458556,-2.858431 0.05804,0.114229 0.1161,0.228463 0.17415,0.342693 z m 14.7218,1.890617 c 0.886805,0.901124 1.657967,1.918152 2.263775,3.028623 -1.849217,1.281843 -3.578744,2.736457 -5.159526,4.337958 -1.326339,-0.600394 -2.590671,-1.335242 -3.780494,-2.17356 1.916783,-2.060091 4.096106,-3.897682 6.447849,-5.413525 0.07613,0.07349 0.152264,0.147004 0.228396,0.220504 z M 6.9918399,-17.5659 c 1.362894,2.387113 3.0226531,4.61262 4.9834851,6.543737 4.077568,4.0681444 9.375479,6.8908985 15.031224,7.987564 0.255018,0.048981 0.508956,0.1032267 0.764979,0.1463874 -1.116385,1.4589747 -2.517577,2.71104225 -4.13349,3.59209405 -2.473979,-0.6935185 -4.901777,-1.6854049 -7.130309,-2.91714425 -4.585484,-2.5387559 -8.5968688,-6.2090608 -11.5297784,-10.5784792 0.3062598,-1.656589 0.9573503,-3.307515 1.934249,-4.761758 0.044358,-0.04763 0.042492,-0.128526 0.079639,-0.01241 z m 22.4108061,2.423803 c 0.582169,1.524875 0.882257,3.179074 0.878253,4.784977 -1.770442,-0.203967 -3.5147,-0.622123 -5.194388,-1.215477 1.34276,-1.292958 2.784388,-2.534136 4.316134,-3.569496 z m -24.4024511,4.914613 c 0.8222115,1.0531494 1.6804948,2.0809284 2.6119144,3.0401404 -0.3335827,1.1834212 -0.5984463,2.3850341 -0.8225,3.5938612 -1.179066,-1.855258 -1.8964227,-4.0536812 -2.0011562,-6.2119812 0.014409,-0.175866 -0.089436,-0.7633834 0.04212,-0.6424974 0.056532,0.07349 0.1130851,0.146985 0.1696251,0.220478 z m 4.232086,4.6077976 c 0.7732941,0.68564 1.5590581,1.3580542 2.3828601,1.9826225 -0.254367,1.3804044 -0.416514,2.77666075 -0.514897,4.17669045 -1.1216998,-0.6888413 -2.1673833,-1.5128863 -3.0496215,-2.49291915 0.1818862,-1.3500149 0.4420403,-2.6990533 0.7869016,-4.0292668 0.131588,0.120955 0.2631715,0.241915 0.3947568,0.362873 z m 3.7855511,2.9971508 c 1.100417,0.7374136 2.23534,1.4236681 3.404782,2.04640105 -0.01663,0.9352888 0.002,1.87111965 0.04983,2.80515785 -1.342379,-0.1265285 -2.670034,-0.4435611 -3.914598,-0.9650154 0.07206,-1.32428235 0.191859,-2.6202685 0.40417,-3.924629 l 0.04103,0.028004 z m 4.980508,2.82972775 c 1.162982,0.5231411 2.347065,1.00076865 3.552428,1.41708485 -1.16217,0.3577763 -2.366744,0.591616 -3.583333,0.6382651 -0.03691,-0.7049027 -0.05455,-1.38534915 -0.054,-2.09455885 l 0.04509,0.020877 z" /><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:13.3333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33333333;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
x="4.9648085"
|
||||
y="80.471268"
|
||||
id="text10433"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan10431"
|
||||
style="stroke-width:0.33333333;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
x="4.9648085"
|
||||
y="80.471268"></tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:13.3333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33333333;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
x="-7.8609462"
|
||||
y="77.781998"
|
||||
id="text13153"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan13151"
|
||||
style="stroke-width:0.33333333;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
x="-7.8609462"
|
||||
y="77.781998" /></text><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:13.3333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.33333333;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
x="18.516191"
|
||||
y="82.793831"
|
||||
id="text17653"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan17651"
|
||||
style="stroke-width:0.33333333;stroke-miterlimit:4;stroke-dasharray:none"
|
||||
x="18.516191"
|
||||
y="82.793831" /></text></g></svg>
|
After Width: | Height: | Size: 7.1 KiB |
35
addons/Wol/icon-white-with-stroke.svg.import
Normal file
35
addons/Wol/icon-white-with-stroke.svg.import
Normal file
|
@ -0,0 +1,35 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/icon-white-with-stroke.svg-2fdadd9c0464018b0aea56f84a74a9b6.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://addons/Wol/icon-white-with-stroke.svg"
|
||||
dest_files=[ "res://.import/icon-white-with-stroke.svg-2fdadd9c0464018b0aea56f84a74a9b6.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
process/normal_map_invert_y=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
76
addons/Wol/icon-white.svg
Normal file
76
addons/Wol/icon-white.svg
Normal file
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="124"
|
||||
width="124"
|
||||
fill="#000000"
|
||||
version="1.1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 41.333333 41.333333"
|
||||
enable-background="new 0 0 100 100"
|
||||
xml:space="preserve"
|
||||
id="svg65"
|
||||
sodipodi:docname="icon-white.svg"
|
||||
inkscape:version="1.1.1 (c3084ef, 2021-09-22)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs69" /><sodipodi:namedview
|
||||
id="namedview67"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
lock-margins="false"
|
||||
fit-margin-top="8"
|
||||
fit-margin-left="8"
|
||||
fit-margin-right="8"
|
||||
fit-margin-bottom="8"
|
||||
inkscape:zoom="1.2754554"
|
||||
inkscape:cx="-24.69706"
|
||||
inkscape:cy="97.220174"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="772"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="1"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="g63" /><g
|
||||
id="g63"
|
||||
transform="translate(5.7288458,31.154242)"><path
|
||||
id="path61"
|
||||
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.165591;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
d="m 17.536011,-24.730999 c -4.167625,-0.03092 -8.2855168,1.905987 -10.9396097,5.115111 -2.5465826,3.009935 -3.7419641,7.110245 -3.1923412,11.0163184 0.4944726,3.8050517 2.6076537,7.3645791 5.7250153,9.6046281 0.3079294,0.2342803 0.6307945,0.4470853 0.9527416,0.661349 C 9.0228229,1.9974413 7.8581126,2.0273504 6.8210141,1.5989175 4.9525985,0.88995465 3.5435848,-0.65539715 1.6256603,-1.279831 c -1.0740248,-0.3260963 -2.33252384,-0.3192502 -3.3035436,0.28652765 -0.5243207,0.4541963 -0.00891,1.419333 0.6581484,1.2605342 0.90047346,-0.4056109 1.96299388,-0.3219774 2.8312886,0.1305362 1.8431569,0.96840525 3.436646,2.50284015 5.5398984,2.90632805 1.5138898,0.3081725 3.0935799,-0.05817 4.4524709,-0.7477227 4.014906,1.7904903 8.866004,1.5718562 12.682184,-0.6210229 3.520943,-1.96568715 6.1489,-5.4763416 6.963944,-9.4337521 0.869126,-3.9615664 -0.05933,-8.2797714 -2.522326,-11.5081874 -2.238302,-3.012065 -5.698807,-5.090451 -9.425065,-5.585062 -0.651335,-0.09171 -1.308809,-0.136879 -1.966649,-0.139342 z m 0.476088,1.499156 c 0.260299,0.01867 0.571657,0.0287 0.802433,0.06501 -1.437985,1.149501 -2.813035,2.380628 -4.073517,3.723554 -0.663157,-0.943116 -1.261831,-1.931839 -1.787818,-2.957792 1.570013,-0.587673 3.342272,-0.907048 5.058902,-0.830766 z m 2.998403,0.477117 c 1.333452,0.380624 2.654477,1.01597 3.83457,1.823756 0.371258,0.139579 0.08349,0.279806 -0.140598,0.418475 -2.207693,1.518631 -4.25103,3.278954 -6.064516,5.252431 -1.080383,-0.900685 -2.077154,-1.901716 -2.977295,-2.982411 1.566757,-1.686024 3.299517,-3.218818 5.169117,-4.560913 0.05956,0.01626 0.119155,0.03241 0.17872,0.04867 z m -9.23474,1.323783 c 2.325788,4.457773 6.08623,8.164355 10.627279,10.339086 2.435538,1.1759554 5.098877,1.9416534 7.77711,2.2106234 -0.21551,1.599492 -0.708644,3.1012012 -1.475412,4.5337792 -0.09023,0.1951273 -0.453415,-0.00143 -0.665093,1.475e-4 -5.651264,-0.9515685 -10.954961,-3.6672937 -15.01031,-7.7156591 -2.012816,-2.002437 -3.7425404,-4.324641 -5.0735806,-6.852231 1.0385485,-1.151997 2.2696976,-2.139913 3.6458556,-2.858431 0.05804,0.114229 0.1161,0.228463 0.17415,0.342693 z m 14.7218,1.890617 c 0.886805,0.901124 1.657967,1.918152 2.263775,3.028623 -1.849217,1.281843 -3.578744,2.736457 -5.159526,4.337958 -1.326339,-0.600394 -2.590671,-1.335242 -3.780494,-2.17356 1.916783,-2.060091 4.096106,-3.897682 6.447849,-5.413525 0.07613,0.07349 0.152264,0.147004 0.228396,0.220504 z M 6.9918399,-17.5659 c 1.362894,2.387113 3.0226531,4.61262 4.9834851,6.543737 4.077568,4.0681444 9.375479,6.8908985 15.031224,7.987564 0.255018,0.048981 0.508956,0.1032267 0.764979,0.1463874 -1.116385,1.4589747 -2.517577,2.71104225 -4.13349,3.59209405 -2.473979,-0.6935185 -4.901777,-1.6854049 -7.130309,-2.91714425 -4.585484,-2.5387559 -8.5968688,-6.2090608 -11.5297784,-10.5784792 0.3062598,-1.656589 0.9573503,-3.307515 1.934249,-4.761758 0.044358,-0.04763 0.042492,-0.128526 0.079639,-0.01241 z m 22.4108061,2.423803 c 0.582169,1.524875 0.882257,3.179074 0.878253,4.784977 -1.770442,-0.203967 -3.5147,-0.622123 -5.194388,-1.215477 1.34276,-1.292958 2.784388,-2.534136 4.316134,-3.569496 z m -24.4024511,4.914613 c 0.8222115,1.0531494 1.6804948,2.0809284 2.6119144,3.0401404 -0.3335827,1.1834212 -0.5984463,2.3850341 -0.8225,3.5938612 -1.179066,-1.855258 -1.8964227,-4.0536812 -2.0011562,-6.2119812 0.014409,-0.175866 -0.089436,-0.7633834 0.04212,-0.6424974 0.056532,0.07349 0.1130851,0.146985 0.1696251,0.220478 z m 4.232086,4.6077976 c 0.7732941,0.68564 1.5590581,1.3580542 2.3828601,1.9826225 -0.254367,1.3804044 -0.416514,2.77666075 -0.514897,4.17669045 -1.1216998,-0.6888413 -2.1673833,-1.5128863 -3.0496215,-2.49291915 0.1818862,-1.3500149 0.4420403,-2.6990533 0.7869016,-4.0292668 0.131588,0.120955 0.2631715,0.241915 0.3947568,0.362873 z m 3.7855511,2.9971508 c 1.100417,0.7374136 2.23534,1.4236681 3.404782,2.04640105 -0.01663,0.9352888 0.002,1.87111965 0.04983,2.80515785 -1.342379,-0.1265285 -2.670034,-0.4435611 -3.914598,-0.9650154 0.07206,-1.32428235 0.191859,-2.6202685 0.40417,-3.924629 l 0.04103,0.028004 z m 4.980508,2.82972775 c 1.162982,0.5231411 2.347065,1.00076865 3.552428,1.41708485 -1.16217,0.3577763 -2.366744,0.591616 -3.583333,0.6382651 -0.03691,-0.7049027 -0.05455,-1.38534915 -0.054,-2.09455885 l 0.04509,0.020877 z" /><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:13.3333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.333333"
|
||||
x="4.9648085"
|
||||
y="80.471268"
|
||||
id="text10433"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan10431"
|
||||
style="stroke-width:0.333333"
|
||||
x="4.9648085"
|
||||
y="80.471268"></tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:13.3333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.333333"
|
||||
x="-7.8609462"
|
||||
y="77.781998"
|
||||
id="text13153"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan13151"
|
||||
style="stroke-width:0.333333"
|
||||
x="-7.8609462"
|
||||
y="77.781998" /></text><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:13.3333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.333333"
|
||||
x="18.516191"
|
||||
y="82.793831"
|
||||
id="text17653"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan17651"
|
||||
style="stroke-width:0.333333"
|
||||
x="18.516191"
|
||||
y="82.793831" /></text></g></svg>
|
After Width: | Height: | Size: 6.9 KiB |
35
addons/Wol/icon-white.svg.import
Normal file
35
addons/Wol/icon-white.svg.import
Normal file
|
@ -0,0 +1,35 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/icon-white.svg-c9027de825c45801066398a50f83be46.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://addons/Wol/icon-white.svg"
|
||||
dest_files=[ "res://.import/icon-white.svg-c9027de825c45801066398a50f83be46.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
process/normal_map_invert_y=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=0.3
|
76
addons/Wol/icon.svg
Normal file
76
addons/Wol/icon.svg
Normal file
|
@ -0,0 +1,76 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="124"
|
||||
width="124"
|
||||
fill="#000000"
|
||||
version="1.1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 41.333333 41.333333"
|
||||
enable-background="new 0 0 100 100"
|
||||
xml:space="preserve"
|
||||
id="svg65"
|
||||
sodipodi:docname="icon.svg"
|
||||
inkscape:version="1.1.1 (c3084ef, 2021-09-22)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs69" /><sodipodi:namedview
|
||||
id="namedview67"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
lock-margins="false"
|
||||
fit-margin-top="8"
|
||||
fit-margin-left="8"
|
||||
fit-margin-right="8"
|
||||
fit-margin-bottom="8"
|
||||
inkscape:zoom="1.2754554"
|
||||
inkscape:cx="-24.69706"
|
||||
inkscape:cy="97.220174"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="772"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="1"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="g63" /><g
|
||||
id="g63"
|
||||
transform="translate(5.7288458,31.154242)"><path
|
||||
id="path61"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.165591;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
d="m 17.536011,-24.730999 c -4.167625,-0.03092 -8.2855168,1.905987 -10.9396097,5.115111 -2.5465826,3.009935 -3.7419641,7.110245 -3.1923412,11.0163184 0.4944726,3.8050517 2.6076537,7.3645791 5.7250153,9.6046281 0.3079294,0.2342803 0.6307945,0.4470853 0.9527416,0.661349 C 9.0228229,1.9974413 7.8581126,2.0273504 6.8210141,1.5989175 4.9525985,0.88995465 3.5435848,-0.65539715 1.6256603,-1.279831 c -1.0740248,-0.3260963 -2.33252384,-0.3192502 -3.3035436,0.28652765 -0.5243207,0.4541963 -0.00891,1.419333 0.6581484,1.2605342 0.90047346,-0.4056109 1.96299388,-0.3219774 2.8312886,0.1305362 1.8431569,0.96840525 3.436646,2.50284015 5.5398984,2.90632805 1.5138898,0.3081725 3.0935799,-0.05817 4.4524709,-0.7477227 4.014906,1.7904903 8.866004,1.5718562 12.682184,-0.6210229 3.520943,-1.96568715 6.1489,-5.4763416 6.963944,-9.4337521 0.869126,-3.9615664 -0.05933,-8.2797714 -2.522326,-11.5081874 -2.238302,-3.012065 -5.698807,-5.090451 -9.425065,-5.585062 -0.651335,-0.09171 -1.308809,-0.136879 -1.966649,-0.139342 z m 0.476088,1.499156 c 0.260299,0.01867 0.571657,0.0287 0.802433,0.06501 -1.437985,1.149501 -2.813035,2.380628 -4.073517,3.723554 -0.663157,-0.943116 -1.261831,-1.931839 -1.787818,-2.957792 1.570013,-0.587673 3.342272,-0.907048 5.058902,-0.830766 z m 2.998403,0.477117 c 1.333452,0.380624 2.654477,1.01597 3.83457,1.823756 0.371258,0.139579 0.08349,0.279806 -0.140598,0.418475 -2.207693,1.518631 -4.25103,3.278954 -6.064516,5.252431 -1.080383,-0.900685 -2.077154,-1.901716 -2.977295,-2.982411 1.566757,-1.686024 3.299517,-3.218818 5.169117,-4.560913 0.05956,0.01626 0.119155,0.03241 0.17872,0.04867 z m -9.23474,1.323783 c 2.325788,4.457773 6.08623,8.164355 10.627279,10.339086 2.435538,1.1759554 5.098877,1.9416534 7.77711,2.2106234 -0.21551,1.599492 -0.708644,3.1012012 -1.475412,4.5337792 -0.09023,0.1951273 -0.453415,-0.00143 -0.665093,1.475e-4 -5.651264,-0.9515685 -10.954961,-3.6672937 -15.01031,-7.7156591 -2.012816,-2.002437 -3.7425404,-4.324641 -5.0735806,-6.852231 1.0385485,-1.151997 2.2696976,-2.139913 3.6458556,-2.858431 0.05804,0.114229 0.1161,0.228463 0.17415,0.342693 z m 14.7218,1.890617 c 0.886805,0.901124 1.657967,1.918152 2.263775,3.028623 -1.849217,1.281843 -3.578744,2.736457 -5.159526,4.337958 -1.326339,-0.600394 -2.590671,-1.335242 -3.780494,-2.17356 1.916783,-2.060091 4.096106,-3.897682 6.447849,-5.413525 0.07613,0.07349 0.152264,0.147004 0.228396,0.220504 z M 6.9918399,-17.5659 c 1.362894,2.387113 3.0226531,4.61262 4.9834851,6.543737 4.077568,4.0681444 9.375479,6.8908985 15.031224,7.987564 0.255018,0.048981 0.508956,0.1032267 0.764979,0.1463874 -1.116385,1.4589747 -2.517577,2.71104225 -4.13349,3.59209405 -2.473979,-0.6935185 -4.901777,-1.6854049 -7.130309,-2.91714425 -4.585484,-2.5387559 -8.5968688,-6.2090608 -11.5297784,-10.5784792 0.3062598,-1.656589 0.9573503,-3.307515 1.934249,-4.761758 0.044358,-0.04763 0.042492,-0.128526 0.079639,-0.01241 z m 22.4108061,2.423803 c 0.582169,1.524875 0.882257,3.179074 0.878253,4.784977 -1.770442,-0.203967 -3.5147,-0.622123 -5.194388,-1.215477 1.34276,-1.292958 2.784388,-2.534136 4.316134,-3.569496 z m -24.4024511,4.914613 c 0.8222115,1.0531494 1.6804948,2.0809284 2.6119144,3.0401404 -0.3335827,1.1834212 -0.5984463,2.3850341 -0.8225,3.5938612 -1.179066,-1.855258 -1.8964227,-4.0536812 -2.0011562,-6.2119812 0.014409,-0.175866 -0.089436,-0.7633834 0.04212,-0.6424974 0.056532,0.07349 0.1130851,0.146985 0.1696251,0.220478 z m 4.232086,4.6077976 c 0.7732941,0.68564 1.5590581,1.3580542 2.3828601,1.9826225 -0.254367,1.3804044 -0.416514,2.77666075 -0.514897,4.17669045 -1.1216998,-0.6888413 -2.1673833,-1.5128863 -3.0496215,-2.49291915 0.1818862,-1.3500149 0.4420403,-2.6990533 0.7869016,-4.0292668 0.131588,0.120955 0.2631715,0.241915 0.3947568,0.362873 z m 3.7855511,2.9971508 c 1.100417,0.7374136 2.23534,1.4236681 3.404782,2.04640105 -0.01663,0.9352888 0.002,1.87111965 0.04983,2.80515785 -1.342379,-0.1265285 -2.670034,-0.4435611 -3.914598,-0.9650154 0.07206,-1.32428235 0.191859,-2.6202685 0.40417,-3.924629 l 0.04103,0.028004 z m 4.980508,2.82972775 c 1.162982,0.5231411 2.347065,1.00076865 3.552428,1.41708485 -1.16217,0.3577763 -2.366744,0.591616 -3.583333,0.6382651 -0.03691,-0.7049027 -0.05455,-1.38534915 -0.054,-2.09455885 l 0.04509,0.020877 z" /><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:13.3333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.333333"
|
||||
x="4.9648085"
|
||||
y="80.471268"
|
||||
id="text10433"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan10431"
|
||||
style="stroke-width:0.333333"
|
||||
x="4.9648085"
|
||||
y="80.471268"></tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:13.3333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.333333"
|
||||
x="-7.8609462"
|
||||
y="77.781998"
|
||||
id="text13153"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan13151"
|
||||
style="stroke-width:0.333333"
|
||||
x="-7.8609462"
|
||||
y="77.781998" /></text><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:13.3333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.333333"
|
||||
x="18.516191"
|
||||
y="82.793831"
|
||||
id="text17653"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan17651"
|
||||
style="stroke-width:0.333333"
|
||||
x="18.516191"
|
||||
y="82.793831" /></text></g></svg>
|
After Width: | Height: | Size: 6.9 KiB |
|
@ -2,15 +2,15 @@
|
|||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/icon.png-79ec48c27aef60cbae9d34f0545addad.stex"
|
||||
path="res://.import/icon.svg-df71f9fa105bf9f1f19c23a7a9986838.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://addons/Wol/assets/icon.png"
|
||||
dest_files=[ "res://.import/icon.png-79ec48c27aef60cbae9d34f0545addad.stex" ]
|
||||
source_file="res://addons/Wol/icon.svg"
|
||||
dest_files=[ "res://.import/icon.svg-df71f9fa105bf9f1f19c23a7a9986838.stex" ]
|
||||
|
||||
[params]
|
||||
|
85
addons/Wol/logo.svg
Normal file
85
addons/Wol/logo.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="138.34663"
|
||||
width="275.52161"
|
||||
fill="#000000"
|
||||
version="1.1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 91.840535 46.115544"
|
||||
enable-background="new 0 0 100 100"
|
||||
xml:space="preserve"
|
||||
id="svg65"
|
||||
sodipodi:docname="logo.svg"
|
||||
inkscape:version="1.1.1 (c3084ef, 2021-09-22)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs69" /><sodipodi:namedview
|
||||
id="namedview67"
|
||||
pagecolor="#505050"
|
||||
bordercolor="#eeeeee"
|
||||
borderopacity="1"
|
||||
inkscape:pageshadow="0"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
lock-margins="false"
|
||||
fit-margin-top="8"
|
||||
fit-margin-left="8"
|
||||
fit-margin-right="8"
|
||||
fit-margin-bottom="8"
|
||||
inkscape:zoom="1.5492592"
|
||||
inkscape:cx="130.70763"
|
||||
inkscape:cy="54.219462"
|
||||
inkscape:window-width="1280"
|
||||
inkscape:window-height="772"
|
||||
inkscape:window-x="1"
|
||||
inkscape:window-y="1"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="text4563" /><g
|
||||
id="g63"
|
||||
transform="translate(47.283911,43.44888)"><path
|
||||
id="path61"
|
||||
style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.165591;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;image-rendering:auto"
|
||||
d="m 15.358855,-28.487211 c -4.167625,-0.03092 -8.2855188,1.905987 -10.9396117,5.115111 -2.5465826,3.009935 -3.74196405,7.110245 -3.1923412,11.016318 0.4944726,3.8050517 2.6076537,7.3645791 5.7250153,9.6046281 0.3079294,0.2342803 0.6307945,0.4470853 0.9527418,0.661349 -1.0589943,0.3310338 -2.2237046,0.3609429 -3.2608031,-0.06749 -1.8684156,-0.7089628 -3.2774293,-2.2543146 -5.19535363,-2.8787485 -1.07402487,-0.3260963 -2.33252397,-0.3192502 -3.30354377,0.2865277 -0.5243207,0.4541963 -0.00891,1.419333 0.6581484,1.2605342 0.9004735,-0.4056109 1.962994,-0.3219774 2.83128874,0.1305362 1.84315676,0.9684052 3.43664586,2.50284017 5.53989826,2.90632807 1.5138898,0.3081725 3.0935797,-0.05817 4.4524717,-0.74772277 4.0149072,1.79049035 8.8660052,1.57185629 12.6821852,-0.6210229 3.520943,-1.9656871 6.1489,-5.4763416 6.963944,-9.4337521 0.869126,-3.961566 -0.05933,-8.279771 -2.522326,-11.508187 -2.238302,-3.012065 -5.698807,-5.090451 -9.425065,-5.585062 -0.651335,-0.09171 -1.308809,-0.136879 -1.966649,-0.139342 z m 0.476088,1.499156 c 0.260299,0.01867 0.571657,0.0287 0.802433,0.06501 -1.437985,1.149501 -2.813035,2.380628 -4.073517,3.723554 -0.663157,-0.943116 -1.261831,-1.931839 -1.787818,-2.957792 1.570013,-0.587673 3.342272,-0.907048 5.058902,-0.830766 z m 2.998403,0.477117 c 1.333452,0.380624 2.654477,1.01597 3.83457,1.823756 0.371258,0.139579 0.08349,0.279806 -0.140598,0.418475 -2.207693,1.518631 -4.25103,3.278954 -6.064516,5.252431 -1.080383,-0.900685 -2.077154,-1.901716 -2.977295,-2.982411 1.566757,-1.686024 3.299517,-3.218818 5.169117,-4.560913 0.05956,0.01626 0.119155,0.03241 0.17872,0.04867 z m -9.2347413,1.323783 c 2.3257893,4.457773 6.0862313,8.164355 10.6272803,10.339086 2.435538,1.175955 5.098877,1.941653 7.77711,2.210623 -0.21551,1.599492 -0.708644,3.1012012 -1.475412,4.5337792 -0.09023,0.1951273 -0.453415,-0.00143 -0.665093,1.475e-4 -5.651264,-0.9515685 -10.954961,-3.6672937 -15.01031,-7.7156587 -2.0128179,-2.002437 -3.7425424,-4.324641 -5.0735826,-6.852231 1.0385485,-1.151997 2.269698,-2.139913 3.6458559,-2.858431 0.058042,0.114229 0.1161005,0.228463 0.1741505,0.342693 z m 14.7218013,1.890617 c 0.886805,0.901124 1.657967,1.918152 2.263775,3.028623 -1.849217,1.281843 -3.578744,2.736457 -5.159526,4.337958 -1.326339,-0.600394 -2.590671,-1.335242 -3.780494,-2.17356 1.916783,-2.060091 4.096106,-3.897682 6.447849,-5.413525 0.07613,0.07349 0.152264,0.147004 0.228396,0.220504 z m -19.5057241,1.974426 c 1.362894,2.387113 3.0226536,4.61262 4.9834866,6.543737 4.0775685,4.068144 9.3754795,6.8908981 15.0312245,7.9875636 0.255018,0.048981 0.508956,0.1032267 0.764979,0.1463874 -1.116385,1.4589747 -2.517577,2.7110423 -4.13349,3.5920941 C 18.986903,-3.7458484 16.559105,-4.7377348 14.330573,-5.9694742 9.7450882,-8.5082301 5.7337022,-12.178535 2.8007926,-16.547953 c 0.3062598,-1.656589 0.9573503,-3.307515 1.934249,-4.761758 0.044358,-0.04763 0.042492,-0.128526 0.079639,-0.01241 z m 22.4108081,2.423803 c 0.582169,1.524875 0.882257,3.179074 0.878253,4.784977 -1.770442,-0.203967 -3.5147,-0.622123 -5.194388,-1.215477 1.34276,-1.292958 2.784388,-2.534136 4.316134,-3.569496 z m -24.4024531,4.914613 c 0.8222115,1.053149 1.6804948,2.080928 2.6119144,3.04014 -0.3335827,1.1834212 -0.5984463,2.3850341 -0.8225,3.5938612 -1.179066,-1.855258 -1.8964227,-4.0536812 -2.0011562,-6.2119812 0.014409,-0.175866 -0.089436,-0.763383 0.04212,-0.642497 0.056532,0.07349 0.1130851,0.146985 0.1696251,0.220478 z m 4.232086,4.6077972 c 0.7732944,0.68564 1.5590577,1.3580542 2.3828612,1.9826225 -0.2543677,1.3804044 -0.4165148,2.7766608 -0.5148978,4.1766905 -1.1217001,-0.6888413 -2.1673836,-1.5128863 -3.0496218,-2.4929192 0.1818862,-1.3500149 0.4420403,-2.6990533 0.7869016,-4.0292668 0.131588,0.120955 0.2631715,0.241915 0.3947568,0.362873 z m 3.7855531,2.9971508 c 1.100417,0.7374136 2.23534,1.4236681 3.404782,2.0464011 -0.01663,0.9352888 0.002,1.8711196 0.04983,2.8051578 -1.342379,-0.1265285 -2.670034,-0.4435611 -3.914598,-0.9650154 0.07206,-1.3242823 0.191859,-2.6202685 0.40417,-3.924629 l 0.04103,0.028004 z m 4.980508,2.8297278 c 1.162982,0.5231411 2.347065,1.0007686 3.552428,1.4170848 -1.16217,0.3577763 -2.366744,0.591616 -3.583333,0.6382651 -0.03691,-0.7049027 -0.05455,-1.3853491 -0.054,-2.0945588 l 0.04509,0.020877 z" /><g
|
||||
aria-label="W l"
|
||||
id="text4563"
|
||||
style="font-size:55.1111px;line-height:1.25;stroke-width:0.333333"><path
|
||||
d="m 1.1249682,-38.302214 h -2.1493329 l -9.4791093,35.9875478 -9.754664,-35.4364368 h -2.865777 l -10.305776,35.4915479 -8.872887,-36.0426589 h -2.314666 l 9.644442,38.02665851 h 2.810666 l 10.415998,-35.43643651 9.809776,35.43643651 h 2.7004435 z"
|
||||
style="font-family:Aileron;-inkscape-font-specification:Aileron"
|
||||
id="path21504" /><path
|
||||
d="m 38.638404,-40.782213 h -2.094222 v 33.5075479 c 0,1.9288885 0,2.9208883 0.05511,4.0231102 C 36.709515,-0.71644429 38.032182,0 39.850848,0 c 0.661333,0 1.377777,0 2.039111,-0.16533329 V -1.8186663 c -2.369778,0.2755555 -3.086222,-0.1653333 -3.196444,-1.9839995 -0.05511,-0.8266665 -0.05511,-1.8737774 -0.05511,-3.5271104 z"
|
||||
style="font-family:Aileron;-inkscape-font-specification:Aileron"
|
||||
id="path21506" /></g><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:13.3333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.333333"
|
||||
x="4.9648085"
|
||||
y="80.471268"
|
||||
id="text10433"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan10431"
|
||||
style="stroke-width:0.333333"
|
||||
x="4.9648085"
|
||||
y="80.471268"></tspan></text><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:13.3333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.333333"
|
||||
x="-7.8609462"
|
||||
y="77.781998"
|
||||
id="text13153"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan13151"
|
||||
style="stroke-width:0.333333"
|
||||
x="-7.8609462"
|
||||
y="77.781998" /></text><text
|
||||
xml:space="preserve"
|
||||
style="font-style:normal;font-weight:normal;font-size:13.3333px;line-height:1.25;font-family:sans-serif;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.333333"
|
||||
x="18.516191"
|
||||
y="82.793831"
|
||||
id="text17653"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan17651"
|
||||
style="stroke-width:0.333333"
|
||||
x="18.516191"
|
||||
y="82.793831" /></text></g></svg>
|
After Width: | Height: | Size: 7.8 KiB |
35
addons/Wol/logo.svg.import
Normal file
35
addons/Wol/logo.svg.import
Normal file
|
@ -0,0 +1,35 @@
|
|||
[remap]
|
||||
|
||||
importer="texture"
|
||||
type="StreamTexture"
|
||||
path="res://.import/logo.svg-2b0b087c9dfe071a47003cdf4fc4b536.stex"
|
||||
metadata={
|
||||
"vram_texture": false
|
||||
}
|
||||
|
||||
[deps]
|
||||
|
||||
source_file="res://addons/Wol/logo.svg"
|
||||
dest_files=[ "res://.import/logo.svg-2b0b087c9dfe071a47003cdf4fc4b536.stex" ]
|
||||
|
||||
[params]
|
||||
|
||||
compress/mode=0
|
||||
compress/lossy_quality=0.7
|
||||
compress/hdr_mode=0
|
||||
compress/bptc_ldr=0
|
||||
compress/normal_map=0
|
||||
flags/repeat=0
|
||||
flags/filter=true
|
||||
flags/mipmaps=false
|
||||
flags/anisotropic=false
|
||||
flags/srgb=2
|
||||
process/fix_alpha_border=true
|
||||
process/premult_alpha=false
|
||||
process/HDR_as_SRGB=false
|
||||
process/invert_color=false
|
||||
process/normal_map_invert_y=false
|
||||
stream=false
|
||||
size_limit=0
|
||||
detect_3d=true
|
||||
svg/scale=1.0
|
|
@ -6,7 +6,7 @@ func _enter_tree():
|
|||
'Wol',
|
||||
'Node',
|
||||
load('res://addons/Wol/Wol.gd'),
|
||||
load('res://addons/Wol/assets/icon.png')
|
||||
load('res://addons/Wol/icon-white.svg')
|
||||
)
|
||||
|
||||
func _exit_tree():
|
||||
|
|
|
@ -8,16 +8,6 @@
|
|||
|
||||
config_version=4
|
||||
|
||||
_global_script_classes=[ {
|
||||
"base": "Node",
|
||||
"class": "Wol",
|
||||
"language": "GDScript",
|
||||
"path": "res://addons/Wol/Wol.gd"
|
||||
} ]
|
||||
_global_script_class_icons={
|
||||
"Wol": ""
|
||||
}
|
||||
|
||||
[application]
|
||||
|
||||
config/name="Wol"
|
||||
|
|
Reference in a new issue