feat: made sure the aspect ration fit a pixel art game and added useful addons
All checks were successful
Create tag and build when new code gets to main / BumpTag (push) Successful in 6s
Create tag and build when new code gets to main / Export (push) Successful in 3m16s

This commit is contained in:
2025-06-27 15:19:12 +02:00
parent 4ec91c1277
commit 9a79715e47
550 changed files with 18812 additions and 0 deletions

View File

@ -0,0 +1,70 @@
@tool
extends Control
signal action_changed()
@onready var _line_edit:LineEdit = %LineEdit
@onready var _type_icon:TextureRect = %TypeIcon
var index:int
var action:GUIDEAction:
set(value):
if is_instance_valid(action):
action.changed.disconnect(_refresh)
action = value
if is_instance_valid(action):
action.changed.connect(_refresh)
# action_changed can only be emitted by
# dragging an action into this, not when setting
# the property
_refresh()
func _refresh():
if not is_instance_valid(action):
_line_edit.text = "<none>"
_line_edit.tooltip_text = ""
_type_icon.texture = preload("missing_action.svg")
_type_icon.tooltip_text = "Missing action"
else:
_line_edit.text = action._editor_name()
_line_edit.tooltip_text = action.resource_path
## Update the icon to reflect the given value type.
match action.action_value_type:
GUIDEAction.GUIDEActionValueType.AXIS_1D:
_type_icon.texture = preload("action_value_type_axis1d.svg")
_type_icon.tooltip_text = "Axis1D"
GUIDEAction.GUIDEActionValueType.AXIS_2D:
_type_icon.texture = preload("action_value_type_axis2d.svg")
_type_icon.tooltip_text = "Axis2D"
GUIDEAction.GUIDEActionValueType.AXIS_3D:
_type_icon.texture = preload("action_value_type_axis3d.svg")
_type_icon.tooltip_text = "Axis3D"
_:
# fallback is bool
_type_icon.texture = preload("action_value_type_bool.svg")
_type_icon.tooltip_text = "Boolean"
func _gui_input(event):
if event is InputEventMouseButton:
if event.pressed and event.button_index == MOUSE_BUTTON_LEFT:
if is_instance_valid(action):
EditorInterface.edit_resource(action)
func _on_line_edit_action_dropped(new_action:GUIDEAction):
action = new_action
action_changed.emit()
func _on_line_edit_focus_entered():
if is_instance_valid(action):
EditorInterface.edit_resource(action)

View File

@ -0,0 +1 @@
uid://ysrbdsqui5cn

View File

@ -0,0 +1,29 @@
[gd_scene load_steps=3 format=3 uid="uid://du4x7ng6ntuk4"]
[ext_resource type="Script" path="res://addons/guide/editor/action_slot/action_slot.gd" id="1_w5nxd"]
[ext_resource type="Script" path="res://addons/guide/editor/action_slot/action_slot_line_edit.gd" id="2_ram7b"]
[node name="ActionSlot" type="HBoxContainer"]
offset_right = 40.0
offset_bottom = 40.0
size_flags_horizontal = 3
script = ExtResource("1_w5nxd")
[node name="TypeIcon" type="TextureRect" parent="."]
unique_name_in_owner = true
layout_mode = 2
expand_mode = 3
stretch_mode = 4
[node name="LineEdit" type="LineEdit" parent="."]
unique_name_in_owner = true
layout_mode = 2
size_flags_horizontal = 3
size_flags_vertical = 0
text = "Name"
editable = false
selecting_enabled = false
script = ExtResource("2_ram7b")
[connection signal="action_dropped" from="LineEdit" to="." method="_on_line_edit_action_dropped"]
[connection signal="focus_entered" from="LineEdit" to="." method="_on_line_edit_focus_entered"]

View File

@ -0,0 +1,24 @@
@tool
extends LineEdit
signal action_dropped(action:GUIDEAction)
func _can_drop_data(at_position, data) -> bool:
if not data is Dictionary:
return false
if data.has("files"):
for file in data["files"]:
if ResourceLoader.load(file) is GUIDEAction:
return true
return false
func _drop_data(at_position, data) -> void:
for file in data["files"]:
var item = ResourceLoader.load(file)
if item is GUIDEAction:
action_dropped.emit(item)

View File

@ -0,0 +1 @@
uid://b12uq0dpsgj7u

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
<g transform="matrix(1,0,0,1,-105.29,-40.0231)">
<g id="vt_axis1d" transform="matrix(2.99151,0,0,2.8775,150.452,37.7582)">
<rect x="-15.097" y="0.787" width="10.697" height="11.121" style="fill:none;"/>
<clipPath id="_clip1">
<rect x="-15.097" y="0.787" width="10.697" height="11.121"/>
</clipPath>
<g clip-path="url(#_clip1)">
<g transform="matrix(0.391767,0,0,0.416391,-43.1614,-16.5941)">
<path d="M98.94,48.419L98.94,61.773C98.94,65.458 95.882,68.45 92.114,68.45L78.462,68.45C74.695,68.45 71.636,65.458 71.636,61.773L71.636,48.419C71.636,44.734 74.695,41.743 78.462,41.743L92.114,41.743C95.882,41.743 98.94,44.734 98.94,48.419ZM96.466,48.419C96.466,46.07 94.516,44.163 92.114,44.163L78.462,44.163C76.06,44.163 74.11,46.07 74.11,48.419L74.11,61.773C74.11,64.122 76.06,66.03 78.462,66.03L92.114,66.03C94.516,66.03 96.466,64.122 96.466,61.773L96.466,48.419Z" style="fill:rgb(253,150,0);"/>
</g>
<g transform="matrix(0.334279,0,0,0.347524,-18.3085,-0.144498)">
<g transform="matrix(20.88,0,0,24,11.6286,27.2968)">
<path d="M0.144,-0.068L0.298,-0.068L0.298,-0.557C0.298,-0.571 0.298,-0.586 0.299,-0.601L0.171,-0.492C0.168,-0.489 0.164,-0.487 0.161,-0.486C0.158,-0.485 0.155,-0.484 0.152,-0.484C0.147,-0.484 0.142,-0.485 0.138,-0.487C0.134,-0.489 0.131,-0.492 0.129,-0.495L0.101,-0.534L0.314,-0.718L0.387,-0.718L0.387,-0.068L0.528,-0.068L0.528,-0L0.144,-0L0.144,-0.068Z" style="fill:rgb(253,150,0);fill-rule:nonzero;"/>
</g>
<g transform="matrix(20.88,0,0,24,22.695,27.2968)">
<path d="M0.708,-0.358C0.708,-0.304 0.7,-0.256 0.683,-0.212C0.666,-0.167 0.642,-0.13 0.611,-0.099C0.58,-0.067 0.542,-0.043 0.499,-0.026C0.456,-0.009 0.408,-0 0.355,-0L0.087,-0L0.087,-0.717L0.355,-0.717C0.408,-0.717 0.456,-0.708 0.499,-0.691C0.542,-0.674 0.58,-0.649 0.611,-0.618C0.642,-0.586 0.666,-0.549 0.683,-0.505C0.7,-0.46 0.708,-0.412 0.708,-0.358ZM0.609,-0.358C0.609,-0.402 0.603,-0.441 0.591,-0.476C0.579,-0.511 0.562,-0.54 0.54,-0.564C0.518,-0.588 0.491,-0.606 0.46,-0.619C0.428,-0.632 0.393,-0.638 0.355,-0.638L0.185,-0.638L0.185,-0.079L0.355,-0.079C0.393,-0.079 0.428,-0.085 0.46,-0.098C0.491,-0.11 0.518,-0.128 0.54,-0.152C0.562,-0.176 0.579,-0.205 0.591,-0.24C0.603,-0.275 0.609,-0.314 0.609,-0.358Z" style="fill:rgb(253,150,0);fill-rule:nonzero;"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 3.0 KiB

View File

@ -0,0 +1,38 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://du55fdegui0t0"
path="res://.godot/imported/action_value_type_axis1d.svg-47cde6e873b547282e811542e4ee320d.ctex"
metadata={
"has_editor_variant": true,
"vram_texture": false
}
[deps]
source_file="res://addons/guide/editor/action_slot/action_value_type_axis1d.svg"
dest_files=["res://.godot/imported/action_value_type_axis1d.svg-47cde6e873b547282e811542e4ee320d.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
svg/scale=1.0
editor/scale_with_editor_scale=true
editor/convert_colors_with_editor_theme=false

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
<g transform="matrix(1,0,0,1,0,-77.6972)">
<g id="vt_axis2d" transform="matrix(2.99151,0,0,2.8775,45.1623,75.4322)">
<rect x="-15.097" y="0.787" width="10.697" height="11.121" style="fill:none;"/>
<clipPath id="_clip1">
<rect x="-15.097" y="0.787" width="10.697" height="11.121"/>
</clipPath>
<g clip-path="url(#_clip1)">
<g transform="matrix(0.391767,0,0,0.416391,-43.1614,-16.5941)">
<path d="M98.94,48.419L98.94,61.773C98.94,65.458 95.882,68.45 92.114,68.45L78.462,68.45C74.695,68.45 71.636,65.458 71.636,61.773L71.636,48.419C71.636,44.734 74.695,41.743 78.462,41.743L92.114,41.743C95.882,41.743 98.94,44.734 98.94,48.419ZM96.466,48.419C96.466,46.07 94.516,44.163 92.114,44.163L78.462,44.163C76.06,44.163 74.11,46.07 74.11,48.419L74.11,61.773C74.11,64.122 76.06,66.03 78.462,66.03L92.114,66.03C94.516,66.03 96.466,64.122 96.466,61.773L96.466,48.419Z" style="fill:rgb(253,150,0);"/>
</g>
<g transform="matrix(0.334279,0,0,0.347524,-18.1375,-0.117391)">
<g transform="matrix(20.88,0,0,24,11.6286,27.2968)">
<path d="M0.301,-0.725C0.331,-0.725 0.359,-0.72 0.386,-0.711C0.412,-0.702 0.435,-0.689 0.454,-0.672C0.473,-0.655 0.488,-0.634 0.499,-0.609C0.51,-0.584 0.516,-0.556 0.516,-0.525C0.516,-0.498 0.511,-0.474 0.504,-0.451C0.496,-0.428 0.485,-0.407 0.471,-0.386C0.457,-0.365 0.442,-0.345 0.424,-0.325C0.406,-0.306 0.387,-0.286 0.367,-0.266L0.179,-0.073C0.192,-0.076 0.205,-0.079 0.219,-0.081C0.233,-0.083 0.246,-0.085 0.259,-0.085L0.499,-0.085C0.508,-0.085 0.516,-0.082 0.522,-0.076C0.527,-0.07 0.53,-0.063 0.53,-0.054L0.53,-0L0.052,-0L0.052,-0.031C0.052,-0.037 0.053,-0.043 0.056,-0.05C0.058,-0.057 0.062,-0.063 0.068,-0.069L0.298,-0.299C0.317,-0.318 0.334,-0.337 0.35,-0.355C0.365,-0.373 0.379,-0.391 0.39,-0.409C0.401,-0.427 0.41,-0.445 0.416,-0.463C0.422,-0.482 0.424,-0.501 0.425,-0.523C0.424,-0.544 0.421,-0.562 0.415,-0.578C0.408,-0.594 0.399,-0.607 0.387,-0.617C0.375,-0.627 0.362,-0.635 0.346,-0.64C0.33,-0.645 0.314,-0.648 0.296,-0.648C0.278,-0.648 0.261,-0.645 0.246,-0.64C0.23,-0.635 0.217,-0.627 0.205,-0.618C0.193,-0.608 0.183,-0.597 0.175,-0.584C0.167,-0.571 0.161,-0.557 0.158,-0.541C0.155,-0.531 0.151,-0.524 0.146,-0.52C0.14,-0.516 0.133,-0.514 0.125,-0.514C0.123,-0.514 0.121,-0.514 0.119,-0.514C0.117,-0.514 0.115,-0.514 0.113,-0.515L0.067,-0.523C0.071,-0.555 0.08,-0.584 0.094,-0.609C0.107,-0.634 0.124,-0.656 0.144,-0.673C0.165,-0.69 0.188,-0.702 0.215,-0.711C0.241,-0.72 0.27,-0.725 0.301,-0.725Z" style="fill:rgb(253,150,0);fill-rule:nonzero;"/>
</g>
<g transform="matrix(20.88,0,0,24,22.695,27.2968)">
<path d="M0.708,-0.358C0.708,-0.304 0.7,-0.256 0.683,-0.212C0.666,-0.167 0.642,-0.13 0.611,-0.099C0.58,-0.067 0.542,-0.043 0.499,-0.026C0.456,-0.009 0.408,-0 0.355,-0L0.087,-0L0.087,-0.717L0.355,-0.717C0.408,-0.717 0.456,-0.708 0.499,-0.691C0.542,-0.674 0.58,-0.649 0.611,-0.618C0.642,-0.586 0.666,-0.549 0.683,-0.505C0.7,-0.46 0.708,-0.412 0.708,-0.358ZM0.609,-0.358C0.609,-0.402 0.603,-0.441 0.591,-0.476C0.579,-0.511 0.562,-0.54 0.54,-0.564C0.518,-0.588 0.491,-0.606 0.46,-0.619C0.428,-0.632 0.393,-0.638 0.355,-0.638L0.185,-0.638L0.185,-0.079L0.355,-0.079C0.393,-0.079 0.428,-0.085 0.46,-0.098C0.491,-0.11 0.518,-0.128 0.54,-0.152C0.562,-0.176 0.579,-0.205 0.591,-0.24C0.603,-0.275 0.609,-0.314 0.609,-0.358Z" style="fill:rgb(253,150,0);fill-rule:nonzero;"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.0 KiB

View File

@ -0,0 +1,38 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bw3r81rgkbeic"
path="res://.godot/imported/action_value_type_axis2d.svg-82a12ec01234cc4464e5fb9b94ba28f0.ctex"
metadata={
"has_editor_variant": true,
"vram_texture": false
}
[deps]
source_file="res://addons/guide/editor/action_slot/action_value_type_axis2d.svg"
dest_files=["res://.godot/imported/action_value_type_axis2d.svg-82a12ec01234cc4464e5fb9b94ba28f0.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
svg/scale=1.0
editor/scale_with_editor_scale=true
editor/convert_colors_with_editor_theme=false

View File

@ -0,0 +1,25 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
<g transform="matrix(1,0,0,1,-34.1415,-77.6972)">
<g id="vt_axis3d" transform="matrix(2.99151,0,0,2.8775,79.3037,75.4322)">
<rect x="-15.097" y="0.787" width="10.697" height="11.121" style="fill:none;"/>
<clipPath id="_clip1">
<rect x="-15.097" y="0.787" width="10.697" height="11.121"/>
</clipPath>
<g clip-path="url(#_clip1)">
<g transform="matrix(0.391767,0,0,0.416391,-43.1614,-16.5941)">
<path d="M98.94,48.419L98.94,61.773C98.94,65.458 95.882,68.45 92.114,68.45L78.462,68.45C74.695,68.45 71.636,65.458 71.636,61.773L71.636,48.419C71.636,44.734 74.695,41.743 78.462,41.743L92.114,41.743C95.882,41.743 98.94,44.734 98.94,48.419ZM96.466,48.419C96.466,46.07 94.516,44.163 92.114,44.163L78.462,44.163C76.06,44.163 74.11,46.07 74.11,48.419L74.11,61.773C74.11,64.122 76.06,66.03 78.462,66.03L92.114,66.03C94.516,66.03 96.466,64.122 96.466,61.773L96.466,48.419Z" style="fill:rgb(253,150,0);"/>
</g>
<g transform="matrix(0.334279,0,0,0.347524,-18.1375,-0.117391)">
<g transform="matrix(20.88,0,0,24,11.6286,27.2968)">
<path d="M0.31,-0.725C0.34,-0.725 0.368,-0.72 0.394,-0.712C0.42,-0.703 0.442,-0.691 0.46,-0.675C0.479,-0.659 0.493,-0.639 0.504,-0.617C0.514,-0.594 0.519,-0.569 0.519,-0.541C0.519,-0.518 0.516,-0.498 0.51,-0.48C0.504,-0.462 0.496,-0.447 0.485,-0.433C0.474,-0.42 0.461,-0.408 0.446,-0.399C0.431,-0.39 0.413,-0.382 0.395,-0.377C0.441,-0.364 0.476,-0.343 0.5,-0.315C0.523,-0.286 0.535,-0.249 0.535,-0.206C0.535,-0.173 0.529,-0.143 0.516,-0.117C0.504,-0.09 0.487,-0.068 0.465,-0.049C0.443,-0.031 0.418,-0.017 0.389,-0.007C0.36,0.003 0.33,0.008 0.297,0.008C0.259,0.008 0.226,0.003 0.199,-0.006C0.172,-0.016 0.149,-0.029 0.131,-0.046C0.112,-0.062 0.097,-0.082 0.085,-0.105C0.073,-0.128 0.062,-0.152 0.054,-0.179L0.092,-0.195C0.099,-0.198 0.106,-0.2 0.113,-0.2C0.12,-0.2 0.126,-0.198 0.131,-0.195C0.136,-0.192 0.14,-0.188 0.143,-0.182C0.143,-0.181 0.146,-0.175 0.147,-0.173C0.151,-0.163 0.157,-0.152 0.164,-0.14C0.17,-0.128 0.179,-0.117 0.191,-0.106C0.202,-0.095 0.216,-0.086 0.233,-0.079C0.25,-0.072 0.271,-0.068 0.296,-0.068C0.321,-0.068 0.342,-0.072 0.361,-0.08C0.38,-0.088 0.396,-0.099 0.408,-0.112C0.421,-0.125 0.43,-0.139 0.437,-0.156C0.443,-0.171 0.446,-0.187 0.446,-0.203C0.446,-0.222 0.443,-0.24 0.438,-0.256C0.433,-0.272 0.424,-0.286 0.41,-0.298C0.397,-0.309 0.378,-0.318 0.354,-0.325C0.33,-0.332 0.3,-0.335 0.263,-0.335L0.263,-0.4C0.293,-0.4 0.319,-0.403 0.34,-0.41C0.362,-0.416 0.379,-0.424 0.393,-0.436C0.407,-0.447 0.417,-0.46 0.423,-0.475C0.429,-0.49 0.432,-0.507 0.432,-0.526C0.432,-0.547 0.429,-0.565 0.422,-0.58C0.416,-0.595 0.407,-0.608 0.396,-0.618C0.384,-0.628 0.371,-0.635 0.355,-0.641C0.34,-0.646 0.323,-0.648 0.305,-0.648C0.287,-0.648 0.27,-0.645 0.255,-0.64C0.24,-0.635 0.226,-0.627 0.214,-0.618C0.202,-0.608 0.193,-0.597 0.185,-0.584C0.177,-0.571 0.171,-0.556 0.167,-0.541C0.164,-0.531 0.16,-0.524 0.155,-0.52C0.149,-0.516 0.142,-0.514 0.134,-0.514C0.132,-0.514 0.131,-0.514 0.129,-0.514C0.127,-0.514 0.125,-0.514 0.123,-0.515L0.076,-0.523C0.081,-0.555 0.09,-0.584 0.103,-0.609C0.116,-0.634 0.133,-0.656 0.154,-0.673C0.174,-0.69 0.198,-0.702 0.224,-0.711C0.251,-0.72 0.279,-0.725 0.31,-0.725Z" style="fill:rgb(253,150,0);fill-rule:nonzero;"/>
</g>
<g transform="matrix(20.88,0,0,24,22.695,27.2968)">
<path d="M0.708,-0.358C0.708,-0.304 0.7,-0.256 0.683,-0.212C0.666,-0.167 0.642,-0.13 0.611,-0.099C0.58,-0.067 0.542,-0.043 0.499,-0.026C0.456,-0.009 0.408,-0 0.355,-0L0.087,-0L0.087,-0.717L0.355,-0.717C0.408,-0.717 0.456,-0.708 0.499,-0.691C0.542,-0.674 0.58,-0.649 0.611,-0.618C0.642,-0.586 0.666,-0.549 0.683,-0.505C0.7,-0.46 0.708,-0.412 0.708,-0.358ZM0.609,-0.358C0.609,-0.402 0.603,-0.441 0.591,-0.476C0.579,-0.511 0.562,-0.54 0.54,-0.564C0.518,-0.588 0.491,-0.606 0.46,-0.619C0.428,-0.632 0.393,-0.638 0.355,-0.638L0.185,-0.638L0.185,-0.079L0.355,-0.079C0.393,-0.079 0.428,-0.085 0.46,-0.098C0.491,-0.11 0.518,-0.128 0.54,-0.152C0.562,-0.176 0.579,-0.205 0.591,-0.24C0.603,-0.275 0.609,-0.314 0.609,-0.358Z" style="fill:rgb(253,150,0);fill-rule:nonzero;"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.7 KiB

View File

@ -0,0 +1,38 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://dcsfko8g6vjor"
path="res://.godot/imported/action_value_type_axis3d.svg-6c96e9bad6748ae9f491c37a99292ee2.ctex"
metadata={
"has_editor_variant": true,
"vram_texture": false
}
[deps]
source_file="res://addons/guide/editor/action_slot/action_value_type_axis3d.svg"
dest_files=["res://.godot/imported/action_value_type_axis3d.svg-6c96e9bad6748ae9f491c37a99292ee2.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
svg/scale=1.0
editor/scale_with_editor_scale=true
editor/convert_colors_with_editor_theme=false

View File

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
<g transform="matrix(1,0,0,1,-70.3759,-40.0231)">
<g id="vt_bool" transform="matrix(2.99151,0,0,2.8775,115.538,37.7582)">
<rect x="-15.097" y="0.787" width="10.697" height="11.121" style="fill:none;"/>
<clipPath id="_clip1">
<rect x="-15.097" y="0.787" width="10.697" height="11.121"/>
</clipPath>
<g clip-path="url(#_clip1)">
<g transform="matrix(0.391767,0,0,0.416391,-43.1614,-16.5941)">
<path d="M98.94,48.419L98.94,61.773C98.94,65.458 95.882,68.45 92.114,68.45L78.462,68.45C74.695,68.45 71.636,65.458 71.636,61.773L71.636,48.419C71.636,44.734 74.695,41.743 78.462,41.743L92.114,41.743C95.882,41.743 98.94,44.734 98.94,48.419ZM96.466,48.419C96.466,46.07 94.516,44.163 92.114,44.163L78.462,44.163C76.06,44.163 74.11,46.07 74.11,48.419L74.11,61.773C74.11,64.122 76.06,66.03 78.462,66.03L92.114,66.03C94.516,66.03 96.466,64.122 96.466,61.773L96.466,48.419Z" style="fill:rgb(253,150,0);"/>
</g>
<g transform="matrix(0.334279,0,0,0.347524,-16.1271,-0.158791)">
<g transform="matrix(24,0,0,24,11.6286,27.2968)">
<path d="M0.087,-0L0.087,-0.717L0.316,-0.717C0.36,-0.717 0.397,-0.712 0.429,-0.704C0.461,-0.695 0.487,-0.683 0.508,-0.667C0.528,-0.651 0.543,-0.631 0.553,-0.608C0.563,-0.585 0.568,-0.559 0.568,-0.53C0.568,-0.512 0.565,-0.495 0.56,-0.479C0.554,-0.462 0.546,-0.447 0.535,-0.433C0.524,-0.419 0.51,-0.407 0.493,-0.396C0.476,-0.385 0.456,-0.376 0.434,-0.369C0.486,-0.358 0.525,-0.339 0.552,-0.312C0.579,-0.285 0.592,-0.249 0.592,-0.204C0.592,-0.174 0.586,-0.146 0.575,-0.121C0.564,-0.096 0.548,-0.075 0.526,-0.057C0.505,-0.039 0.478,-0.025 0.447,-0.015C0.416,-0.005 0.381,-0 0.341,-0L0.087,-0ZM0.184,-0.327L0.184,-0.077L0.339,-0.077C0.367,-0.077 0.39,-0.08 0.41,-0.087C0.43,-0.093 0.446,-0.102 0.459,-0.113C0.472,-0.125 0.482,-0.138 0.488,-0.154C0.494,-0.17 0.497,-0.188 0.497,-0.207C0.497,-0.244 0.483,-0.273 0.457,-0.294C0.431,-0.316 0.392,-0.327 0.339,-0.327L0.184,-0.327ZM0.184,-0.396L0.312,-0.396C0.339,-0.396 0.363,-0.399 0.383,-0.405C0.403,-0.411 0.42,-0.419 0.433,-0.43C0.446,-0.44 0.456,-0.453 0.462,-0.468C0.468,-0.483 0.472,-0.5 0.472,-0.518C0.472,-0.56 0.459,-0.591 0.434,-0.611C0.408,-0.63 0.369,-0.64 0.316,-0.64L0.184,-0.64L0.184,-0.396Z" style="fill:rgb(253,150,0);fill-rule:nonzero;"/>
</g>
</g>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.9 KiB

View File

@ -0,0 +1,38 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://bla3yu6pdqyt5"
path="res://.godot/imported/action_value_type_bool.svg-552c954344c23690bcca901351d04f59.ctex"
metadata={
"has_editor_variant": true,
"vram_texture": false
}
[deps]
source_file="res://addons/guide/editor/action_slot/action_value_type_bool.svg"
dest_files=["res://.godot/imported/action_value_type_bool.svg-552c954344c23690bcca901351d04f59.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
svg/scale=1.0
editor/scale_with_editor_scale=true
editor/convert_colors_with_editor_theme=false

View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100%" height="100%" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" xmlns:serif="http://www.serif.com/" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:2;">
<g transform="matrix(1,0,0,1,-70.6587,-77.6972)">
<g id="action_warning" transform="matrix(2.99151,0,0,2.8775,115.821,75.4322)">
<rect x="-15.097" y="0.787" width="10.697" height="11.121" style="fill:none;"/>
<g transform="matrix(0.334279,0,0,0.347524,-14.8308,0.994936)">
<g transform="matrix(20.88,0,0,24,11.6286,27.2968)">
<path d="M0.215,-0.717L0.215,-0.431C0.215,-0.416 0.215,-0.401 0.214,-0.387C0.214,-0.372 0.213,-0.358 0.212,-0.343C0.211,-0.329 0.21,-0.314 0.208,-0.299C0.207,-0.284 0.205,-0.267 0.203,-0.25L0.143,-0.25C0.141,-0.267 0.139,-0.284 0.137,-0.299C0.136,-0.314 0.135,-0.329 0.134,-0.343C0.133,-0.358 0.132,-0.372 0.131,-0.387C0.131,-0.401 0.131,-0.416 0.131,-0.431L0.131,-0.717L0.215,-0.717ZM0.109,-0.055C0.109,-0.064 0.111,-0.072 0.114,-0.08C0.117,-0.087 0.121,-0.094 0.127,-0.1C0.132,-0.105 0.139,-0.11 0.147,-0.113C0.154,-0.116 0.162,-0.118 0.171,-0.118C0.18,-0.118 0.188,-0.116 0.196,-0.113C0.203,-0.11 0.21,-0.105 0.216,-0.1C0.221,-0.094 0.226,-0.087 0.229,-0.08C0.232,-0.072 0.234,-0.064 0.234,-0.055C0.234,-0.046 0.232,-0.038 0.229,-0.03C0.226,-0.023 0.221,-0.016 0.216,-0.011C0.21,-0.005 0.203,-0 0.196,0.003C0.188,0.006 0.18,0.008 0.171,0.008C0.162,0.008 0.154,0.006 0.147,0.003C0.139,-0 0.132,-0.005 0.127,-0.011C0.121,-0.016 0.117,-0.023 0.114,-0.03C0.111,-0.038 0.109,-0.046 0.109,-0.055Z" style="fill:rgb(253,150,0);fill-rule:nonzero;"/>
</g>
</g>
<g transform="matrix(0.604147,0,0,0.347524,-66.4208,-26.2145)">
<path d="M93.806,77.697L102.659,109.697L84.953,109.697L93.806,77.697ZM93.806,83.533L87.289,107.087L100.322,107.087L93.806,83.533Z" style="fill:rgb(253,150,0);"/>
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 2.2 KiB

View File

@ -0,0 +1,37 @@
[remap]
importer="texture"
type="CompressedTexture2D"
uid="uid://cdi5eoc1e8ha0"
path="res://.godot/imported/missing_action.svg-31774fd8d1b787aab90de376faa436ea.ctex"
metadata={
"vram_texture": false
}
[deps]
source_file="res://addons/guide/editor/action_slot/missing_action.svg"
dest_files=["res://.godot/imported/missing_action.svg-31774fd8d1b787aab90de376faa436ea.ctex"]
[params]
compress/mode=0
compress/high_quality=false
compress/lossy_quality=0.7
compress/hdr_compression=1
compress/normal_map=0
compress/channel_pack=0
mipmaps/generate=false
mipmaps/limit=-1
roughness/mode=0
roughness/src_normal=""
process/fix_alpha_border=true
process/premult_alpha=false
process/normal_map_invert_y=false
process/hdr_as_srgb=false
process/hdr_clamp_exposure=false
process/size_limit=0
detect_3d/compress_to=1
svg/scale=1.0
editor/scale_with_editor_scale=false
editor/convert_colors_with_editor_theme=false