diff --git a/lab.tscn b/lab.tscn index f2ecd9b..8fb6871 100644 --- a/lab.tscn +++ b/lab.tscn @@ -1,6 +1,7 @@ -[gd_scene load_steps=10 format=4 uid="uid://chkhsro6w06rg"] +[gd_scene load_steps=11 format=4 uid="uid://chkhsro6w06rg"] [ext_resource type="Texture2D" uid="uid://chqegsqdgeq34" path="res://temp_res/kenney_tiny-town/Tilemap/tilemap_packed.png" id="1_qt51n"] +[ext_resource type="Script" path="res://scripts/Lab.cs" id="1_xcxd5"] [ext_resource type="Texture2D" uid="uid://e1wpflj415hp" path="res://temp_res/kenney_tiny-dungeon/Tilemap/tilemap_packed.png" id="1_yu0wa"] [ext_resource type="Script" path="res://scripts/TestMap.cs" id="3_mca7j"] @@ -553,6 +554,7 @@ sources/0 = SubResource("TileSetAtlasSource_fufp2") sources/1 = SubResource("TileSetAtlasSource_nuiiq") [node name="Lab" type="Node2D"] +script = ExtResource("1_xcxd5") [node name="TestMap" type="TileMapLayer" parent="."] scale = Vector2(10, 10) diff --git a/project.godot b/project.godot index 0ff3726..293f936 100644 --- a/project.godot +++ b/project.godot @@ -27,6 +27,12 @@ Dialogic="*res://addons/dialogic/Core/DialogicGameHandler.gd" directories/dch_directory={} directories/dtl_directory={} +[display] + +window/size/viewport_width=1920 +window/size/viewport_height=1080 +window/stretch/mode="viewport" + [dotnet] project/assembly_name="导师模拟器" diff --git a/scripts/GameManager.cs b/scripts/GameManager.cs index 1bf1b3a..a780c06 100644 --- a/scripts/GameManager.cs +++ b/scripts/GameManager.cs @@ -7,9 +7,11 @@ public partial class GameManager : Node /// Indicates if the game is currently in tutorial mode. /// public static bool IsTutorial { get; private set; } + public static readonly Resource Arrow2x = ResourceLoader.Load("res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_f.png"); // Called when the node enters the scene tree for the first time. public override void _Ready() { + Input.SetCustomMouseCursor(Arrow2x); } // Called every frame. 'delta' is the elapsed time since the previous frame. diff --git a/scripts/Lab.cs b/scripts/Lab.cs new file mode 100644 index 0000000..23663ef --- /dev/null +++ b/scripts/Lab.cs @@ -0,0 +1,15 @@ +using Godot; +using System; + +public partial class Lab : Node2D +{ + // Called when the node enters the scene tree for the first time. + public override void _Ready() + { + } + + // Called every frame. 'delta' is the elapsed time since the previous frame. + public override void _Process(double delta) + { + } +} diff --git a/temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future Narrow.ttf b/temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future Narrow.ttf new file mode 100644 index 0000000..c4cc8a0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future Narrow.ttf differ diff --git a/temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future Narrow.ttf.import b/temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future Narrow.ttf.import new file mode 100644 index 0000000..94b24ce --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future Narrow.ttf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://bam2gyrbqnhp7" +path="res://.godot/imported/Kenney Future Narrow.ttf-8ef08f216b7c5d67f73d56797ebac217.fontdata" + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future Narrow.ttf" +dest_files=["res://.godot/imported/Kenney Future Narrow.ttf-8ef08f216b7c5d67f73d56797ebac217.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future.ttf b/temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future.ttf new file mode 100644 index 0000000..17e2b6c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future.ttf differ diff --git a/temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future.ttf.import b/temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future.ttf.import new file mode 100644 index 0000000..432a10b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future.ttf.import @@ -0,0 +1,34 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://bg50ywb8u672n" +path="res://.godot/imported/Kenney Future.ttf-61f203666a2b2cc08cff0783ebe5c8fe.fontdata" + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Font/Kenney Future.ttf" +dest_files=["res://.godot/imported/Kenney Future.ttf-61f203666a2b2cc08cff0783ebe5c8fe.fontdata"] + +[params] + +Rendering=null +antialiasing=1 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=8 +msdf_size=48 +allow_system_fallback=true +force_autohinter=false +hinting=1 +subpixel_positioning=1 +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/temp_res/kenney_ui-pack-space-expansion/License.txt b/temp_res/kenney_ui-pack-space-expansion/License.txt new file mode 100644 index 0000000..ba34428 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/License.txt @@ -0,0 +1,22 @@ + + + UI Pack: Sci-fi (2.0) + + Created/distributed by Kenney (www.kenney.nl) + Creation date: 19-08-2024 + + ------------------------------ + + License: (Creative Commons Zero, CC0) + http://creativecommons.org/publicdomain/zero/1.0/ + + This content is free to use in personal, educational and commercial projects. + Support us by crediting Kenney or www.kenney.nl (this is not mandatory) + + ------------------------------ + + Donate: http://support.kenney.nl + Patreon: http://patreon.com/kenney/ + + Follow on Twitter for updates: + http://twitter.com/KenneyNL \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large.png new file mode 100644 index 0000000..329f1d6 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large.png.import new file mode 100644 index 0000000..d2aae7c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2x8jmgd33mrl" +path="res://.godot/imported/bar_round_gloss_large.png-025abcae000fca726e42dcebed21fe7b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large.png" +dest_files=["res://.godot/imported/bar_round_gloss_large.png-025abcae000fca726e42dcebed21fe7b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_l.png new file mode 100644 index 0000000..ca0e59d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_l.png.import new file mode 100644 index 0000000..63b56e7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chtctgp07fdtk" +path="res://.godot/imported/bar_round_gloss_large_l.png-f0d6f72fe7dba4d0d8d8839ca2d35609.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.png-f0d6f72fe7dba4d0d8d8839ca2d35609.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_m.png new file mode 100644 index 0000000..aa55907 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_m.png.import new file mode 100644 index 0000000..a4f191a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj272mipwku1m" +path="res://.godot/imported/bar_round_gloss_large_m.png-2385a377bad2c24f0295457e29eaa3c9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.png-2385a377bad2c24f0295457e29eaa3c9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_r.png new file mode 100644 index 0000000..61c0421 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_r.png.import new file mode 100644 index 0000000..ff47fd3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyf8pyrxfvuj0" +path="res://.godot/imported/bar_round_gloss_large_r.png-cac99353e070f3b592681fb8cf6a4cfc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.png-cac99353e070f3b592681fb8cf6a4cfc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_square.png new file mode 100644 index 0000000..073a859 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_square.png.import new file mode 100644 index 0000000..7008b0e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp3err8osnf2p" +path="res://.godot/imported/bar_round_gloss_large_square.png-88dd7c2a39c69a39147bcaaa2d12e371.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.png-88dd7c2a39c69a39147bcaaa2d12e371.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small.png new file mode 100644 index 0000000..2398b4a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small.png.import new file mode 100644 index 0000000..126e460 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do5bx7pccwub8" +path="res://.godot/imported/bar_round_gloss_small.png-11250b0d6eae1cf4039353516354eb3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small.png" +dest_files=["res://.godot/imported/bar_round_gloss_small.png-11250b0d6eae1cf4039353516354eb3d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_l.png new file mode 100644 index 0000000..88d52dc Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_l.png.import new file mode 100644 index 0000000..5699848 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5jd88ndgtusd" +path="res://.godot/imported/bar_round_gloss_small_l.png-70dd25bd5f6319260fa2f860ac363730.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.png-70dd25bd5f6319260fa2f860ac363730.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_m.png new file mode 100644 index 0000000..8cb69e5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_m.png.import new file mode 100644 index 0000000..2744937 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7mnbvx070mm4" +path="res://.godot/imported/bar_round_gloss_small_m.png-22f7a7607c3d8adeef943db504035b0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.png-22f7a7607c3d8adeef943db504035b0f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_r.png new file mode 100644 index 0000000..a32a138 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_r.png.import new file mode 100644 index 0000000..26b4114 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://l3rh06nanipy" +path="res://.godot/imported/bar_round_gloss_small_r.png-f7fa995cc9d496998f1e47c9972a7dfe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.png-f7fa995cc9d496998f1e47c9972a7dfe.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_square.png new file mode 100644 index 0000000..ee0ddda Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_square.png.import new file mode 100644 index 0000000..c7cdb21 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyeppytduugct" +path="res://.godot/imported/bar_round_gloss_small_square.png-1ea3336d04b30b15617e645a86853c56.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.png-1ea3336d04b30b15617e645a86853c56.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large.png new file mode 100644 index 0000000..084c6f8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large.png.import new file mode 100644 index 0000000..6597cc7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hhijftx3xyuu" +path="res://.godot/imported/bar_round_large.png-c3a07362c965619c4ed00a85e2abcaf4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large.png" +dest_files=["res://.godot/imported/bar_round_large.png-c3a07362c965619c4ed00a85e2abcaf4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_l.png new file mode 100644 index 0000000..b5f7e43 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_l.png.import new file mode 100644 index 0000000..00ce716 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db72sm3lvel61" +path="res://.godot/imported/bar_round_large_l.png-5704afea7f5a978aef204536f796bcf6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_l.png" +dest_files=["res://.godot/imported/bar_round_large_l.png-5704afea7f5a978aef204536f796bcf6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_m.png new file mode 100644 index 0000000..43aefbd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_m.png.import new file mode 100644 index 0000000..bca53b0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctdyg1kxjca2v" +path="res://.godot/imported/bar_round_large_m.png-b528dc7423558666c863b69b55627428.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_m.png" +dest_files=["res://.godot/imported/bar_round_large_m.png-b528dc7423558666c863b69b55627428.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_r.png new file mode 100644 index 0000000..9e1bc83 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_r.png.import new file mode 100644 index 0000000..34951ca --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkrahmwuef0qo" +path="res://.godot/imported/bar_round_large_r.png-7083514789d1c988da86df42fcaceab1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_r.png" +dest_files=["res://.godot/imported/bar_round_large_r.png-7083514789d1c988da86df42fcaceab1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_square.png new file mode 100644 index 0000000..fd6d0b8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_square.png.import new file mode 100644 index 0000000..23d86b5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btuldegrdnigr" +path="res://.godot/imported/bar_round_large_square.png-a1e64624184333573c95bab77d839f21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_large_square.png" +dest_files=["res://.godot/imported/bar_round_large_square.png-a1e64624184333573c95bab77d839f21.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small.png new file mode 100644 index 0000000..22fba0b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small.png.import new file mode 100644 index 0000000..29209ef --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ruljkn387ftg" +path="res://.godot/imported/bar_round_small.png-44de89b2b23c1c8ccdfad54dd427c414.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small.png" +dest_files=["res://.godot/imported/bar_round_small.png-44de89b2b23c1c8ccdfad54dd427c414.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_l.png new file mode 100644 index 0000000..80aea2f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_l.png.import new file mode 100644 index 0000000..b2df33f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r00e3u3t6h1n" +path="res://.godot/imported/bar_round_small_l.png-5280fc25c638438695005187e1043dbe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_l.png" +dest_files=["res://.godot/imported/bar_round_small_l.png-5280fc25c638438695005187e1043dbe.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_m.png new file mode 100644 index 0000000..7de4f8a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_m.png.import new file mode 100644 index 0000000..431d8dd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cici103qk5nwd" +path="res://.godot/imported/bar_round_small_m.png-5047963749be2eb93311ef8f2f5e3e5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_m.png" +dest_files=["res://.godot/imported/bar_round_small_m.png-5047963749be2eb93311ef8f2f5e3e5e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_r.png new file mode 100644 index 0000000..5570e82 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_r.png.import new file mode 100644 index 0000000..22784c6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc2ibofmnfq1x" +path="res://.godot/imported/bar_round_small_r.png-7dba2c1852266f2c1c75a6964f70c1f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_r.png" +dest_files=["res://.godot/imported/bar_round_small_r.png-7dba2c1852266f2c1c75a6964f70c1f1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_square.png new file mode 100644 index 0000000..4ca8699 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_square.png.import new file mode 100644 index 0000000..861791e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgvjoh5foq3d6" +path="res://.godot/imported/bar_round_small_square.png-ce14ee8540e11ccd5d97c2ec2bb39e3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_round_small_square.png" +dest_files=["res://.godot/imported/bar_round_small_square.png-ce14ee8540e11ccd5d97c2ec2bb39e3c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large.png new file mode 100644 index 0000000..583099c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large.png.import new file mode 100644 index 0000000..0f852f3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqotn3uf3ogf3" +path="res://.godot/imported/bar_square_gloss_large.png-d6ca2e2f6bc2d7058818e0b85d2ad4cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large.png" +dest_files=["res://.godot/imported/bar_square_gloss_large.png-d6ca2e2f6bc2d7058818e0b85d2ad4cd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_l.png new file mode 100644 index 0000000..d5d2b12 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_l.png.import new file mode 100644 index 0000000..79e82b6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://10t8gunbxpcg" +path="res://.godot/imported/bar_square_gloss_large_l.png-0ab6c271f244c5c9c8b37748a46b0c18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.png-0ab6c271f244c5c9c8b37748a46b0c18.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_m.png new file mode 100644 index 0000000..aa55907 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_m.png.import new file mode 100644 index 0000000..843cf2f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb1ynasrbk5d5" +path="res://.godot/imported/bar_square_gloss_large_m.png-056860d8626db53fc83062b79ad4e26e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.png-056860d8626db53fc83062b79ad4e26e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_r.png new file mode 100644 index 0000000..5b3470e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_r.png.import new file mode 100644 index 0000000..d8aa64d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bohx82bxtcwff" +path="res://.godot/imported/bar_square_gloss_large_r.png-d3c4adf358c65b709e1dc2c96d71c4b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.png-d3c4adf358c65b709e1dc2c96d71c4b8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_square.png new file mode 100644 index 0000000..9ea3ee9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_square.png.import new file mode 100644 index 0000000..74c92f6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddb2b8gxj1u1f" +path="res://.godot/imported/bar_square_gloss_large_square.png-c0fa95a2b48e1b5aac2094a46d32553f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.png-c0fa95a2b48e1b5aac2094a46d32553f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small.png new file mode 100644 index 0000000..1d234ce Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small.png.import new file mode 100644 index 0000000..98082b4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3sdo3uo6i0ag" +path="res://.godot/imported/bar_square_gloss_small.png-f2569ad6852dbf542f26620d701d850a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small.png" +dest_files=["res://.godot/imported/bar_square_gloss_small.png-f2569ad6852dbf542f26620d701d850a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_l.png new file mode 100644 index 0000000..1bb5120 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_l.png.import new file mode 100644 index 0000000..f78a5ac --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbcr6s5o3466b" +path="res://.godot/imported/bar_square_gloss_small_l.png-377fcb9993e23e6771de772574e7ca93.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.png-377fcb9993e23e6771de772574e7ca93.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_m.png new file mode 100644 index 0000000..8cb69e5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_m.png.import new file mode 100644 index 0000000..8e1b4ff --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkug47wctejbn" +path="res://.godot/imported/bar_square_gloss_small_m.png-e34560a8a5af46bb86421e3ca3c03190.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.png-e34560a8a5af46bb86421e3ca3c03190.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_r.png new file mode 100644 index 0000000..7cb4bd7 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_r.png.import new file mode 100644 index 0000000..fa1122f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb5an2j36rehn" +path="res://.godot/imported/bar_square_gloss_small_r.png-a9a82da2ca223b610162b616dfa5239d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.png-a9a82da2ca223b610162b616dfa5239d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_square.png new file mode 100644 index 0000000..f6ed7d6 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_square.png.import new file mode 100644 index 0000000..ea22a73 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt55leopstu6s" +path="res://.godot/imported/bar_square_gloss_small_square.png-3142c79ec1895e261f81e7932590b08b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.png-3142c79ec1895e261f81e7932590b08b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large.png new file mode 100644 index 0000000..962a46d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large.png.import new file mode 100644 index 0000000..eb26c16 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xib6bdn4j5nx" +path="res://.godot/imported/bar_square_large.png-3c8f2ebc6dd5ec00512fd6775e67cced.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large.png" +dest_files=["res://.godot/imported/bar_square_large.png-3c8f2ebc6dd5ec00512fd6775e67cced.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_l.png new file mode 100644 index 0000000..cc4d848 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_l.png.import new file mode 100644 index 0000000..1a28956 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://flnrvvuhhgs3" +path="res://.godot/imported/bar_square_large_l.png-6b4bde56219cea35f8d7bd2236d4d2d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_l.png" +dest_files=["res://.godot/imported/bar_square_large_l.png-6b4bde56219cea35f8d7bd2236d4d2d2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_m.png new file mode 100644 index 0000000..43aefbd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_m.png.import new file mode 100644 index 0000000..519c090 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c583xkfoikpxg" +path="res://.godot/imported/bar_square_large_m.png-4f4fc06f39cfbae6207eef7983e382af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_m.png" +dest_files=["res://.godot/imported/bar_square_large_m.png-4f4fc06f39cfbae6207eef7983e382af.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_r.png new file mode 100644 index 0000000..a85ac79 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_r.png.import new file mode 100644 index 0000000..b241bbf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8b7wtf6okp0c" +path="res://.godot/imported/bar_square_large_r.png-bfe87f1a80aff8ba1a40d260a44c4204.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_r.png" +dest_files=["res://.godot/imported/bar_square_large_r.png-bfe87f1a80aff8ba1a40d260a44c4204.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_square.png new file mode 100644 index 0000000..61c96c2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_square.png.import new file mode 100644 index 0000000..0e863bd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsff7gbu0h5n" +path="res://.godot/imported/bar_square_large_square.png-99320fb316d923c0ad3cba83e470ebfd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_large_square.png" +dest_files=["res://.godot/imported/bar_square_large_square.png-99320fb316d923c0ad3cba83e470ebfd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small.png new file mode 100644 index 0000000..717044b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small.png.import new file mode 100644 index 0000000..131e369 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://27cpfbu163qa" +path="res://.godot/imported/bar_square_small.png-55225d94403d74e4a356a17e3cfb4ceb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small.png" +dest_files=["res://.godot/imported/bar_square_small.png-55225d94403d74e4a356a17e3cfb4ceb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_l.png new file mode 100644 index 0000000..03d7896 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_l.png.import new file mode 100644 index 0000000..01d9953 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buy4ltweempcu" +path="res://.godot/imported/bar_square_small_l.png-115733b76f8d6f5d9feb1116fa2ae5fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_l.png" +dest_files=["res://.godot/imported/bar_square_small_l.png-115733b76f8d6f5d9feb1116fa2ae5fc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_m.png new file mode 100644 index 0000000..7de4f8a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_m.png.import new file mode 100644 index 0000000..323e57e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfodjeanohiw7" +path="res://.godot/imported/bar_square_small_m.png-aa0e8e03f7a84563a0d5c92556b30ecf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_m.png" +dest_files=["res://.godot/imported/bar_square_small_m.png-aa0e8e03f7a84563a0d5c92556b30ecf.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_r.png new file mode 100644 index 0000000..e25abfd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_r.png.import new file mode 100644 index 0000000..2d44d24 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://exkr13khe3jm" +path="res://.godot/imported/bar_square_small_r.png-82394847a4f67c3532ee98e657d5e656.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_r.png" +dest_files=["res://.godot/imported/bar_square_small_r.png-82394847a4f67c3532ee98e657d5e656.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_square.png new file mode 100644 index 0000000..b39a8ca Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_square.png.import new file mode 100644 index 0000000..bb69c5c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6g8sytht0xb3" +path="res://.godot/imported/bar_square_small_square.png-e463fcbf94688bdc10efcc0d099036c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/bar_square_small_square.png" +dest_files=["res://.godot/imported/bar_square_small_square.png-e463fcbf94688bdc10efcc0d099036c7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle.png new file mode 100644 index 0000000..ccc11a9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle.png.import new file mode 100644 index 0000000..8111b48 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqqdse7xjcu8c" +path="res://.godot/imported/button_square_header_blade_rectangle.png-3efec492eadb2ceb48ab8f51beeabe31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.png-3efec492eadb2ceb48ab8f51beeabe31.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle_screws.png new file mode 100644 index 0000000..5618bac Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle_screws.png.import new file mode 100644 index 0000000..b463f85 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xgnlqfu8hjex" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.png-6c52e5f8a651347eb671bede266c208e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.png-6c52e5f8a651347eb671bede266c208e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square.png new file mode 100644 index 0000000..6f8e1db Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square.png.import new file mode 100644 index 0000000..f03a9ac --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c30locsvv2vrx" +path="res://.godot/imported/button_square_header_blade_square.png-fea9308bd41c183ee8e153b5f8df69a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square.png" +dest_files=["res://.godot/imported/button_square_header_blade_square.png-fea9308bd41c183ee8e153b5f8df69a6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square_screws.png new file mode 100644 index 0000000..db65f2d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square_screws.png.import new file mode 100644 index 0000000..7ff2ffa --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr7lj80flglgb" +path="res://.godot/imported/button_square_header_blade_square_screws.png-cb421f0ee55ca32eaf41cce8473afc79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_blade_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.png-cb421f0ee55ca32eaf41cce8473afc79.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle.png new file mode 100644 index 0000000..21ce20a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle.png.import new file mode 100644 index 0000000..328e6e7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfs8l8d5urpy5" +path="res://.godot/imported/button_square_header_large_rectangle.png-1c984a553cb950daeca4d549a818721b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.png-1c984a553cb950daeca4d549a818721b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle_screws.png new file mode 100644 index 0000000..4f4c084 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle_screws.png.import new file mode 100644 index 0000000..838ee40 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcyyfqphgkwkf" +path="res://.godot/imported/button_square_header_large_rectangle_screws.png-9716109b77379120bf87acc69f10f994.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.png-9716109b77379120bf87acc69f10f994.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square.png new file mode 100644 index 0000000..61e48f8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square.png.import new file mode 100644 index 0000000..2bdaaf0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg8y6r6bw7gta" +path="res://.godot/imported/button_square_header_large_square.png-080da678720bb8283ea80a81bc327381.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square.png" +dest_files=["res://.godot/imported/button_square_header_large_square.png-080da678720bb8283ea80a81bc327381.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square_screws.png new file mode 100644 index 0000000..cf7cd25 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square_screws.png.import new file mode 100644 index 0000000..d6cad61 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5dtc8mbeqwl0" +path="res://.godot/imported/button_square_header_large_square_screws.png-95571a484f0208132a9da95b022145b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_large_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.png-95571a484f0208132a9da95b022145b4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle.png new file mode 100644 index 0000000..6eb1338 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle.png.import new file mode 100644 index 0000000..85854aa --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diy1div5rs6d7" +path="res://.godot/imported/button_square_header_notch_rectangle.png-b9422ff771b75bf884209d81ed00ee41.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.png-b9422ff771b75bf884209d81ed00ee41.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle_screws.png new file mode 100644 index 0000000..6bbe2a2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle_screws.png.import new file mode 100644 index 0000000..30eb66c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2lky3fye81li" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.png-1b8013bef4941e74cba6f0f39b3b7a06.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.png-1b8013bef4941e74cba6f0f39b3b7a06.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square.png new file mode 100644 index 0000000..67c9cce Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square.png.import new file mode 100644 index 0000000..05a4eb2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://omthgfyhkdsy" +path="res://.godot/imported/button_square_header_notch_square.png-8838a94b99c756bcbea2482d05609f70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square.png" +dest_files=["res://.godot/imported/button_square_header_notch_square.png-8838a94b99c756bcbea2482d05609f70.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square_screws.png new file mode 100644 index 0000000..28a523a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square_screws.png.import new file mode 100644 index 0000000..ea918e1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhssmpbkre03i" +path="res://.godot/imported/button_square_header_notch_square_screws.png-0a4ebf5bbd94493ef3cbb768662bba7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_notch_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.png-0a4ebf5bbd94493ef3cbb768662bba7e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle.png new file mode 100644 index 0000000..2e87264 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle.png.import new file mode 100644 index 0000000..844b92f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqojihad8hvc7" +path="res://.godot/imported/button_square_header_small_rectangle.png-7867a36593b6b88de2f9d639933de3d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.png-7867a36593b6b88de2f9d639933de3d9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle_screws.png new file mode 100644 index 0000000..0a46798 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle_screws.png.import new file mode 100644 index 0000000..cf20543 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjhcelsq51lbf" +path="res://.godot/imported/button_square_header_small_rectangle_screws.png-e81e0f7629f5408082be25f21ac0799c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.png-e81e0f7629f5408082be25f21ac0799c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square.png new file mode 100644 index 0000000..d6e96a6 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square.png.import new file mode 100644 index 0000000..c50e47c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csfvrql8uqibl" +path="res://.godot/imported/button_square_header_small_square.png-269408cce5c575b28235420849bff335.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square.png" +dest_files=["res://.godot/imported/button_square_header_small_square.png-269408cce5c575b28235420849bff335.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square_screws.png new file mode 100644 index 0000000..06b2097 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square_screws.png.import new file mode 100644 index 0000000..c3a4ce6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3ajh8snn62cx" +path="res://.godot/imported/button_square_header_small_square_screws.png-f14c102f48efb85cfcb4ef7ef0ed7935.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/button_square_header_small_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.png-f14c102f48efb85cfcb4ef7ef0ed7935.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_a.png new file mode 100644 index 0000000..1178ef7 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_a.png.import new file mode 100644 index 0000000..7356d88 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ovroakld8gr7" +path="res://.godot/imported/crosshair_color_a.png-57abd65c5663afa20012e7b074207d01.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_a.png" +dest_files=["res://.godot/imported/crosshair_color_a.png-57abd65c5663afa20012e7b074207d01.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_b.png new file mode 100644 index 0000000..eba4ad1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_b.png.import new file mode 100644 index 0000000..acba7fa --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck7052n52fv6e" +path="res://.godot/imported/crosshair_color_b.png-a31083c8db80c899e4369757961f8792.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_b.png" +dest_files=["res://.godot/imported/crosshair_color_b.png-a31083c8db80c899e4369757961f8792.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_c.png new file mode 100644 index 0000000..5e3ab66 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_c.png.import new file mode 100644 index 0000000..733bca2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnugh1cuhg7d2" +path="res://.godot/imported/crosshair_color_c.png-7db9ae5eefba34ad0485b6e80ec2c9c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_c.png" +dest_files=["res://.godot/imported/crosshair_color_c.png-7db9ae5eefba34ad0485b6e80ec2c9c7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_d.png new file mode 100644 index 0000000..de52a47 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_d.png.import new file mode 100644 index 0000000..6672b28 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba6jpmmh7e0a" +path="res://.godot/imported/crosshair_color_d.png-e9bd346e7ed8e414341880a7a01616aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Default/crosshair_color_d.png" +dest_files=["res://.godot/imported/crosshair_color_d.png-e9bd346e7ed8e414341880a7a01616aa.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large.png new file mode 100644 index 0000000..d8e2033 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large.png.import new file mode 100644 index 0000000..045adcb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvhdxdrol3m1w" +path="res://.godot/imported/bar_round_gloss_large.png-e1b636fd32222ba09390a69b14ee3d9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large.png" +dest_files=["res://.godot/imported/bar_round_gloss_large.png-e1b636fd32222ba09390a69b14ee3d9e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_l.png new file mode 100644 index 0000000..9b2e34e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_l.png.import new file mode 100644 index 0000000..c446e50 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d138mydtt2q23" +path="res://.godot/imported/bar_round_gloss_large_l.png-bd514ccaf42971eedb398fbeeb561519.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.png-bd514ccaf42971eedb398fbeeb561519.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_m.png new file mode 100644 index 0000000..4760ddf Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_m.png.import new file mode 100644 index 0000000..2f48d45 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dppg51qqb30fe" +path="res://.godot/imported/bar_round_gloss_large_m.png-1ca41d1416151a80fa9f7894d4a3e9df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.png-1ca41d1416151a80fa9f7894d4a3e9df.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_r.png new file mode 100644 index 0000000..a699095 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_r.png.import new file mode 100644 index 0000000..4ecb227 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jjkwcv6lkhav" +path="res://.godot/imported/bar_round_gloss_large_r.png-081b3d2a56ee0122b4f9ef5a7438dbfa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.png-081b3d2a56ee0122b4f9ef5a7438dbfa.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_square.png new file mode 100644 index 0000000..52128a1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_square.png.import new file mode 100644 index 0000000..1640bc0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdnx2ah13hnts" +path="res://.godot/imported/bar_round_gloss_large_square.png-4aa09e0c558704bb21f142613c8f864e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.png-4aa09e0c558704bb21f142613c8f864e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small.png new file mode 100644 index 0000000..442d5b0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small.png.import new file mode 100644 index 0000000..924a0c8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dum7uphpbvych" +path="res://.godot/imported/bar_round_gloss_small.png-bd0e80186faea5f07acf131f640e43df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small.png" +dest_files=["res://.godot/imported/bar_round_gloss_small.png-bd0e80186faea5f07acf131f640e43df.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_l.png new file mode 100644 index 0000000..f739d68 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_l.png.import new file mode 100644 index 0000000..e588b3d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q47q0tnju2i0" +path="res://.godot/imported/bar_round_gloss_small_l.png-a4088806600e028fc1b676018e237b04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.png-a4088806600e028fc1b676018e237b04.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_m.png new file mode 100644 index 0000000..ac5452e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_m.png.import new file mode 100644 index 0000000..a6d8194 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ej3aawgwdmpo" +path="res://.godot/imported/bar_round_gloss_small_m.png-190908fecb17e73e2093ffd40ff95885.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.png-190908fecb17e73e2093ffd40ff95885.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_r.png new file mode 100644 index 0000000..0be0130 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_r.png.import new file mode 100644 index 0000000..93ff1aa --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6v0ys11ovta5" +path="res://.godot/imported/bar_round_gloss_small_r.png-df7ca2a7250a1d89169ddfe4b7ee80b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.png-df7ca2a7250a1d89169ddfe4b7ee80b7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_square.png new file mode 100644 index 0000000..3eebe2c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_square.png.import new file mode 100644 index 0000000..00a4468 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ces5suqc2hb0r" +path="res://.godot/imported/bar_round_gloss_small_square.png-6c510f7ee56bc9f6c9f9ca98d359b40b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.png-6c510f7ee56bc9f6c9f9ca98d359b40b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large.png new file mode 100644 index 0000000..58168fa Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large.png.import new file mode 100644 index 0000000..b637d86 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byc0g5tkf1up7" +path="res://.godot/imported/bar_round_large.png-97e3d3866855534e7c23eccd3ea5017e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large.png" +dest_files=["res://.godot/imported/bar_round_large.png-97e3d3866855534e7c23eccd3ea5017e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_l.png new file mode 100644 index 0000000..70422f7 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_l.png.import new file mode 100644 index 0000000..bdfc439 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxu2cuwmgtw3x" +path="res://.godot/imported/bar_round_large_l.png-889d74ca80f49cf0cb5e961bbd2a56bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_l.png" +dest_files=["res://.godot/imported/bar_round_large_l.png-889d74ca80f49cf0cb5e961bbd2a56bd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_m.png new file mode 100644 index 0000000..dee1d17 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_m.png.import new file mode 100644 index 0000000..8c6f63b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr8mogyp3ljkc" +path="res://.godot/imported/bar_round_large_m.png-ea9fe91315d70bdb394cf63159ca2798.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_m.png" +dest_files=["res://.godot/imported/bar_round_large_m.png-ea9fe91315d70bdb394cf63159ca2798.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_r.png new file mode 100644 index 0000000..ce76dfc Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_r.png.import new file mode 100644 index 0000000..9c7790c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cq5jv4dt3paxu" +path="res://.godot/imported/bar_round_large_r.png-0d8d26d18a3d6fc7e232ffe163dbe3f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_r.png" +dest_files=["res://.godot/imported/bar_round_large_r.png-0d8d26d18a3d6fc7e232ffe163dbe3f4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_square.png new file mode 100644 index 0000000..45a340a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_square.png.import new file mode 100644 index 0000000..f3c2b5d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do08x6qppoqgd" +path="res://.godot/imported/bar_round_large_square.png-6f21ec1f156f1c57a5cd76d244ec219b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_large_square.png" +dest_files=["res://.godot/imported/bar_round_large_square.png-6f21ec1f156f1c57a5cd76d244ec219b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small.png new file mode 100644 index 0000000..33b0aaf Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small.png.import new file mode 100644 index 0000000..e7d4cb9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dur4rcbbvd2lo" +path="res://.godot/imported/bar_round_small.png-82d51419ccda1c641dd848a4ea18d709.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small.png" +dest_files=["res://.godot/imported/bar_round_small.png-82d51419ccda1c641dd848a4ea18d709.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_l.png new file mode 100644 index 0000000..a261e08 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_l.png.import new file mode 100644 index 0000000..ff45ac5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tgt1v6ut6odu" +path="res://.godot/imported/bar_round_small_l.png-b7d03038ddc8cf4bc2eef02142e577d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_l.png" +dest_files=["res://.godot/imported/bar_round_small_l.png-b7d03038ddc8cf4bc2eef02142e577d4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_m.png new file mode 100644 index 0000000..08c7c0f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_m.png.import new file mode 100644 index 0000000..4a786d1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgqn4qd2b4kng" +path="res://.godot/imported/bar_round_small_m.png-8ebd4d1dc5675a95bb7cdc81825f3de8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_m.png" +dest_files=["res://.godot/imported/bar_round_small_m.png-8ebd4d1dc5675a95bb7cdc81825f3de8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_r.png new file mode 100644 index 0000000..495dc48 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_r.png.import new file mode 100644 index 0000000..b679df8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tf7n7qsswlua" +path="res://.godot/imported/bar_round_small_r.png-b6579c17cad6e3473a1917badf8c6f8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_r.png" +dest_files=["res://.godot/imported/bar_round_small_r.png-b6579c17cad6e3473a1917badf8c6f8e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_square.png new file mode 100644 index 0000000..e546808 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_square.png.import new file mode 100644 index 0000000..42c1ce0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg0jpvktkgqya" +path="res://.godot/imported/bar_round_small_square.png-83941a9c4e4d5eee1bbd5995fef65068.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_round_small_square.png" +dest_files=["res://.godot/imported/bar_round_small_square.png-83941a9c4e4d5eee1bbd5995fef65068.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large.png new file mode 100644 index 0000000..e917dcd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large.png.import new file mode 100644 index 0000000..18f9e79 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buocji2btjqna" +path="res://.godot/imported/bar_square_gloss_large.png-b2400d24c8783f18b7c7fe220e1643f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large.png" +dest_files=["res://.godot/imported/bar_square_gloss_large.png-b2400d24c8783f18b7c7fe220e1643f5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_l.png new file mode 100644 index 0000000..0449a03 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_l.png.import new file mode 100644 index 0000000..a858d19 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drl211xetj07i" +path="res://.godot/imported/bar_square_gloss_large_l.png-d294d1d7d11a9c1f4a00cd6b8ba4227d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.png-d294d1d7d11a9c1f4a00cd6b8ba4227d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_m.png new file mode 100644 index 0000000..4760ddf Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_m.png.import new file mode 100644 index 0000000..b1cb483 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn6rd4vjbl78s" +path="res://.godot/imported/bar_square_gloss_large_m.png-f22b68f7ea788cabd749e423e18acb8a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.png-f22b68f7ea788cabd749e423e18acb8a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_r.png new file mode 100644 index 0000000..1bfdaee Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_r.png.import new file mode 100644 index 0000000..ffb15f1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qjdlnwtbfgp2" +path="res://.godot/imported/bar_square_gloss_large_r.png-bb8c1d42fc62a2907f440b2e56bc8307.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.png-bb8c1d42fc62a2907f440b2e56bc8307.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_square.png new file mode 100644 index 0000000..451d1a4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_square.png.import new file mode 100644 index 0000000..91eb08d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bakwcglghpx4x" +path="res://.godot/imported/bar_square_gloss_large_square.png-51c853f310c5045d302b922d3964d470.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.png-51c853f310c5045d302b922d3964d470.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small.png new file mode 100644 index 0000000..e8af7d6 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small.png.import new file mode 100644 index 0000000..c769902 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nt5eqy8ipm42" +path="res://.godot/imported/bar_square_gloss_small.png-3bb60591e4c28f222f0d5a569a63cf2f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small.png" +dest_files=["res://.godot/imported/bar_square_gloss_small.png-3bb60591e4c28f222f0d5a569a63cf2f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_l.png new file mode 100644 index 0000000..95ba0c9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_l.png.import new file mode 100644 index 0000000..2210846 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cquwgjku6rsbh" +path="res://.godot/imported/bar_square_gloss_small_l.png-545df985b211808ff02945f2e34e47cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.png-545df985b211808ff02945f2e34e47cb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_m.png new file mode 100644 index 0000000..ac5452e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_m.png.import new file mode 100644 index 0000000..f41557d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do72kx7vdfayu" +path="res://.godot/imported/bar_square_gloss_small_m.png-88c7e39a5610b60df331cd1fc06bc9fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.png-88c7e39a5610b60df331cd1fc06bc9fa.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_r.png new file mode 100644 index 0000000..6b9a3e9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_r.png.import new file mode 100644 index 0000000..d89a315 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fq0816wwbaq3" +path="res://.godot/imported/bar_square_gloss_small_r.png-f6b30bc5044cfc05f0f88bcec3a55b21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.png-f6b30bc5044cfc05f0f88bcec3a55b21.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_square.png new file mode 100644 index 0000000..e6f53b2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_square.png.import new file mode 100644 index 0000000..0b31fda --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwcsnyx5bbpj" +path="res://.godot/imported/bar_square_gloss_small_square.png-f4b95fa3178ef95df6be13c22161e004.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.png-f4b95fa3178ef95df6be13c22161e004.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large.png new file mode 100644 index 0000000..9d1149f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large.png.import new file mode 100644 index 0000000..6bdeb68 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bavefqkx1o1cd" +path="res://.godot/imported/bar_square_large.png-b31c12fa3bacdf2cf24d53192fdef9bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large.png" +dest_files=["res://.godot/imported/bar_square_large.png-b31c12fa3bacdf2cf24d53192fdef9bb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_l.png new file mode 100644 index 0000000..0cabcf4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_l.png.import new file mode 100644 index 0000000..485abe1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfmqt74baw2jq" +path="res://.godot/imported/bar_square_large_l.png-0b63912f4cc8175b5114216a38645e4f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_l.png" +dest_files=["res://.godot/imported/bar_square_large_l.png-0b63912f4cc8175b5114216a38645e4f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_m.png new file mode 100644 index 0000000..dee1d17 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_m.png.import new file mode 100644 index 0000000..a36eb55 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck84ork01pc64" +path="res://.godot/imported/bar_square_large_m.png-b153f7dc4ef6191160cb94058d7e688b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_m.png" +dest_files=["res://.godot/imported/bar_square_large_m.png-b153f7dc4ef6191160cb94058d7e688b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_r.png new file mode 100644 index 0000000..4a98548 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_r.png.import new file mode 100644 index 0000000..f833938 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxtakkhbdiiqt" +path="res://.godot/imported/bar_square_large_r.png-56461854b222d67604ef7509cb9eedfb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_r.png" +dest_files=["res://.godot/imported/bar_square_large_r.png-56461854b222d67604ef7509cb9eedfb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_square.png new file mode 100644 index 0000000..d89078d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_square.png.import new file mode 100644 index 0000000..efd0c1d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dewk42vh6wv63" +path="res://.godot/imported/bar_square_large_square.png-ba0dc00068b61ee849516064786d5ccf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_large_square.png" +dest_files=["res://.godot/imported/bar_square_large_square.png-ba0dc00068b61ee849516064786d5ccf.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small.png new file mode 100644 index 0000000..2f40f17 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small.png.import new file mode 100644 index 0000000..b8bef06 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6o6183wuyfpy" +path="res://.godot/imported/bar_square_small.png-48fdce8dff19fb86ab2cf246d6662238.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small.png" +dest_files=["res://.godot/imported/bar_square_small.png-48fdce8dff19fb86ab2cf246d6662238.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_l.png new file mode 100644 index 0000000..141033f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_l.png.import new file mode 100644 index 0000000..775eadb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba4e4x3bdgqnf" +path="res://.godot/imported/bar_square_small_l.png-a27fef071c33c4177c57a4bfc9a6d283.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_l.png" +dest_files=["res://.godot/imported/bar_square_small_l.png-a27fef071c33c4177c57a4bfc9a6d283.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_m.png new file mode 100644 index 0000000..08c7c0f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_m.png.import new file mode 100644 index 0000000..9dc9f9f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtivc0aivdjhf" +path="res://.godot/imported/bar_square_small_m.png-68606c26e739dded9240c1f71e09be39.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_m.png" +dest_files=["res://.godot/imported/bar_square_small_m.png-68606c26e739dded9240c1f71e09be39.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_r.png new file mode 100644 index 0000000..8acf6fd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_r.png.import new file mode 100644 index 0000000..4be0f25 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2ru4f3ja6ie4" +path="res://.godot/imported/bar_square_small_r.png-aa2a089d1137a86bbc5d986d18494fd1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_r.png" +dest_files=["res://.godot/imported/bar_square_small_r.png-aa2a089d1137a86bbc5d986d18494fd1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_square.png new file mode 100644 index 0000000..a24b2af Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_square.png.import new file mode 100644 index 0000000..ff514d1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4ibwacrglr70" +path="res://.godot/imported/bar_square_small_square.png-d42ce0235bfb35c5a0ac18e4a738e2b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/bar_square_small_square.png" +dest_files=["res://.godot/imported/bar_square_small_square.png-d42ce0235bfb35c5a0ac18e4a738e2b2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle.png new file mode 100644 index 0000000..3ce0201 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle.png.import new file mode 100644 index 0000000..2a0003f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqt6ywi4noi4w" +path="res://.godot/imported/button_square_header_blade_rectangle.png-3926b832949f4636b5665c77d5d000e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.png-3926b832949f4636b5665c77d5d000e4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle_screws.png new file mode 100644 index 0000000..eea3ba2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle_screws.png.import new file mode 100644 index 0000000..db05d9b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5dm43ova6e0m" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.png-4bac76e08ee4668623fa505a13133e17.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.png-4bac76e08ee4668623fa505a13133e17.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square.png new file mode 100644 index 0000000..c56c47c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square.png.import new file mode 100644 index 0000000..0ee3bf5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cleci5llxncdo" +path="res://.godot/imported/button_square_header_blade_square.png-3834790899b0110b251667445001cc02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square.png" +dest_files=["res://.godot/imported/button_square_header_blade_square.png-3834790899b0110b251667445001cc02.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square_screws.png new file mode 100644 index 0000000..5317d5f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square_screws.png.import new file mode 100644 index 0000000..86be57a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://deo7nr5fumqnn" +path="res://.godot/imported/button_square_header_blade_square_screws.png-90c4ca42463caae9df5537b0fe4591ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_blade_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.png-90c4ca42463caae9df5537b0fe4591ff.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle.png new file mode 100644 index 0000000..829eb39 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle.png.import new file mode 100644 index 0000000..50edbcd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba0e0gtrhg3kb" +path="res://.godot/imported/button_square_header_large_rectangle.png-04033480aa0e07712f6d493f2e01ba64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.png-04033480aa0e07712f6d493f2e01ba64.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle_screws.png new file mode 100644 index 0000000..a642a0b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle_screws.png.import new file mode 100644 index 0000000..cfd0f42 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ql4sx7doq7j5" +path="res://.godot/imported/button_square_header_large_rectangle_screws.png-45b1c81e12b0406e3b7860de6b658e4b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.png-45b1c81e12b0406e3b7860de6b658e4b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square.png new file mode 100644 index 0000000..8ed99ee Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square.png.import new file mode 100644 index 0000000..28b756d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6q0hleb5x765" +path="res://.godot/imported/button_square_header_large_square.png-b2e44e1201fb8444704b81485c630d70.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square.png" +dest_files=["res://.godot/imported/button_square_header_large_square.png-b2e44e1201fb8444704b81485c630d70.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square_screws.png new file mode 100644 index 0000000..658fdc5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square_screws.png.import new file mode 100644 index 0000000..5a78809 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4x0s4wy7o7ju" +path="res://.godot/imported/button_square_header_large_square_screws.png-7de4b07801d2d81cf5b3a04666e792d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_large_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.png-7de4b07801d2d81cf5b3a04666e792d3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle.png new file mode 100644 index 0000000..f3e783e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle.png.import new file mode 100644 index 0000000..2390ee6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8ncjpeh82w23" +path="res://.godot/imported/button_square_header_notch_rectangle.png-7a2db3e6bc7d2f86e74629fc4017db24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.png-7a2db3e6bc7d2f86e74629fc4017db24.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle_screws.png new file mode 100644 index 0000000..0a9630e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle_screws.png.import new file mode 100644 index 0000000..a991371 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://beaasow8n7m88" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.png-43c82828e3ebe77e0febf3cecf4b8d14.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.png-43c82828e3ebe77e0febf3cecf4b8d14.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square.png new file mode 100644 index 0000000..7c88a16 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square.png.import new file mode 100644 index 0000000..2cbd8ad --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkx82hjq8h4d8" +path="res://.godot/imported/button_square_header_notch_square.png-d6f28276537a40bcd68da064fa0dca03.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square.png" +dest_files=["res://.godot/imported/button_square_header_notch_square.png-d6f28276537a40bcd68da064fa0dca03.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square_screws.png new file mode 100644 index 0000000..c0ff25d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square_screws.png.import new file mode 100644 index 0000000..3764828 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnq4x251l8wp8" +path="res://.godot/imported/button_square_header_notch_square_screws.png-44a5b64ac241d8da1f2e3f5366543af1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_notch_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.png-44a5b64ac241d8da1f2e3f5366543af1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle.png new file mode 100644 index 0000000..fa58bf9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle.png.import new file mode 100644 index 0000000..d3ff9b0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmhpausprkev0" +path="res://.godot/imported/button_square_header_small_rectangle.png-655b82b651210420ddccd09faa8fbde0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.png-655b82b651210420ddccd09faa8fbde0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle_screws.png new file mode 100644 index 0000000..def341a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle_screws.png.import new file mode 100644 index 0000000..051734a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc7sx2vpt6jti" +path="res://.godot/imported/button_square_header_small_rectangle_screws.png-89f09263ca0a34379eeafbc3f7cfab96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.png-89f09263ca0a34379eeafbc3f7cfab96.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square.png new file mode 100644 index 0000000..9646402 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square.png.import new file mode 100644 index 0000000..c1f2c56 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bug4o3esx7kct" +path="res://.godot/imported/button_square_header_small_square.png-a1247f0916b8e046f5ed48ad26ba878e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square.png" +dest_files=["res://.godot/imported/button_square_header_small_square.png-a1247f0916b8e046f5ed48ad26ba878e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square_screws.png new file mode 100644 index 0000000..42d3153 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square_screws.png.import new file mode 100644 index 0000000..fe0f8c6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s2yy7himodnu" +path="res://.godot/imported/button_square_header_small_square_screws.png-0c5e41c0a689177ad6cbe63c6b910480.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/button_square_header_small_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.png-0c5e41c0a689177ad6cbe63c6b910480.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_a.png new file mode 100644 index 0000000..01dd21c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_a.png.import new file mode 100644 index 0000000..efe1c8d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://txaqsk1s8qet" +path="res://.godot/imported/crosshair_color_a.png-8de6ca338ab08972fea9dbca799b4858.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_a.png" +dest_files=["res://.godot/imported/crosshair_color_a.png-8de6ca338ab08972fea9dbca799b4858.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_b.png new file mode 100644 index 0000000..ccc3b03 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_b.png.import new file mode 100644 index 0000000..b4a24f4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4tcvyc43gg7j" +path="res://.godot/imported/crosshair_color_b.png-ab026559f1a8cec0151e4d0371ff0ef1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_b.png" +dest_files=["res://.godot/imported/crosshair_color_b.png-ab026559f1a8cec0151e4d0371ff0ef1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_c.png new file mode 100644 index 0000000..aad94a2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_c.png.import new file mode 100644 index 0000000..5c7f6e0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuq16es5akmgu" +path="res://.godot/imported/crosshair_color_c.png-6f9167fa365676dbe4b64e00c4d27ac3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_c.png" +dest_files=["res://.godot/imported/crosshair_color_c.png-6f9167fa365676dbe4b64e00c4d27ac3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_d.png new file mode 100644 index 0000000..ba21913 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_d.png.import new file mode 100644 index 0000000..a52e706 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0a6k4qjjtak1" +path="res://.godot/imported/crosshair_color_d.png-d6301e324a4191c2a7ce5f11081599c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Blue/Double/crosshair_color_d.png" +dest_files=["res://.godot/imported/crosshair_color_d.png-d6301e324a4191c2a7ce5f11081599c5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large.png new file mode 100644 index 0000000..0c97fd4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large.png.import new file mode 100644 index 0000000..5a6805c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjsayl0pa7qt8" +path="res://.godot/imported/bar_shadow_round_large.png-243e586221188f53277f5aecbb33e3b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large.png" +dest_files=["res://.godot/imported/bar_shadow_round_large.png-243e586221188f53277f5aecbb33e3b8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_l.png new file mode 100644 index 0000000..e6df322 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_l.png.import new file mode 100644 index 0000000..5ce0b18 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5a4jbbt6xy57" +path="res://.godot/imported/bar_shadow_round_large_l.png-9321c200023b9af68a83e69d253d9c58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_l.png" +dest_files=["res://.godot/imported/bar_shadow_round_large_l.png-9321c200023b9af68a83e69d253d9c58.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_m.png new file mode 100644 index 0000000..91c7dff Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_m.png.import new file mode 100644 index 0000000..3bf5683 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8s1cah7d5d7g" +path="res://.godot/imported/bar_shadow_round_large_m.png-d7e1a7a13b3515c6a9ca64b95c84f8f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_m.png" +dest_files=["res://.godot/imported/bar_shadow_round_large_m.png-d7e1a7a13b3515c6a9ca64b95c84f8f2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_r.png new file mode 100644 index 0000000..697e72c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_r.png.import new file mode 100644 index 0000000..27447bb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxycrhrm2c63h" +path="res://.godot/imported/bar_shadow_round_large_r.png-81a824c0727b4929a1f09cd8f983ab46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_r.png" +dest_files=["res://.godot/imported/bar_shadow_round_large_r.png-81a824c0727b4929a1f09cd8f983ab46.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_square.png new file mode 100644 index 0000000..92983b7 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_square.png.import new file mode 100644 index 0000000..742980f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b05oxdhmidydp" +path="res://.godot/imported/bar_shadow_round_large_square.png-f18d7ae5d7c76f6f4b5334096ac34ea7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_large_square.png" +dest_files=["res://.godot/imported/bar_shadow_round_large_square.png-f18d7ae5d7c76f6f4b5334096ac34ea7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large.png new file mode 100644 index 0000000..ca4b552 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large.png.import new file mode 100644 index 0000000..1f9cbed --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6ra70pwa8k8s" +path="res://.godot/imported/bar_shadow_round_outline_large.png-719e5b2ecfc18f66444c3dc913f407af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large.png-719e5b2ecfc18f66444c3dc913f407af.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_l.png new file mode 100644 index 0000000..272e9df Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_l.png.import new file mode 100644 index 0000000..8683a96 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvx3dxoreqnew" +path="res://.godot/imported/bar_shadow_round_outline_large_l.png-f4be6f224ea12ab065df3c5f308e6f7a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_l.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large_l.png-f4be6f224ea12ab065df3c5f308e6f7a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_m.png new file mode 100644 index 0000000..9412aee Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_m.png.import new file mode 100644 index 0000000..1ee6a04 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvenbian48bfo" +path="res://.godot/imported/bar_shadow_round_outline_large_m.png-43ad751fe3e109a4cb87e78722406b83.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_m.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large_m.png-43ad751fe3e109a4cb87e78722406b83.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_r.png new file mode 100644 index 0000000..caa3cdd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_r.png.import new file mode 100644 index 0000000..91e6be7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brdht8rvdclm1" +path="res://.godot/imported/bar_shadow_round_outline_large_r.png-fd81b8566bde2a539918605a2e6fe233.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_r.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large_r.png-fd81b8566bde2a539918605a2e6fe233.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_square.png new file mode 100644 index 0000000..87c00f2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_square.png.import new file mode 100644 index 0000000..d279767 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bai8qfjdpl8kd" +path="res://.godot/imported/bar_shadow_round_outline_large_square.png-47e28412fccd68b431b968ce45264f74.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_large_square.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large_square.png-47e28412fccd68b431b968ce45264f74.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small.png new file mode 100644 index 0000000..f18ac2c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small.png.import new file mode 100644 index 0000000..35798e3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvhpun0k4xdde" +path="res://.godot/imported/bar_shadow_round_outline_small.png-5358ad297274971da247ac59c06b1a7d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small.png-5358ad297274971da247ac59c06b1a7d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_l.png new file mode 100644 index 0000000..e0ad69e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_l.png.import new file mode 100644 index 0000000..68a8732 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c61msbbd1o58o" +path="res://.godot/imported/bar_shadow_round_outline_small_l.png-cb4563f717f4b060c24433fcee0a977f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_l.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small_l.png-cb4563f717f4b060c24433fcee0a977f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_m.png new file mode 100644 index 0000000..aa3fbc2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_m.png.import new file mode 100644 index 0000000..ad1d762 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4f3b71kdshka" +path="res://.godot/imported/bar_shadow_round_outline_small_m.png-9b632df4fd856d92f81f9a33dc44fc11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_m.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small_m.png-9b632df4fd856d92f81f9a33dc44fc11.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_r.png new file mode 100644 index 0000000..5c332d9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_r.png.import new file mode 100644 index 0000000..9b5e89d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j0mp7bxhs2ah" +path="res://.godot/imported/bar_shadow_round_outline_small_r.png-8ac777262405cc9921a389975b5508e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_r.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small_r.png-8ac777262405cc9921a389975b5508e8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_square.png new file mode 100644 index 0000000..11e5b7d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_square.png.import new file mode 100644 index 0000000..48a87fe --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gvhudtkws4qx" +path="res://.godot/imported/bar_shadow_round_outline_small_square.png-49da4fb3a3fed99bf51906a612373ed1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_outline_small_square.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small_square.png-49da4fb3a3fed99bf51906a612373ed1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small.png new file mode 100644 index 0000000..32bf61d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small.png.import new file mode 100644 index 0000000..54cf5f8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxn35xd4dbhxe" +path="res://.godot/imported/bar_shadow_round_small.png-68673d38d646374e2cb185ea48183c90.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small.png" +dest_files=["res://.godot/imported/bar_shadow_round_small.png-68673d38d646374e2cb185ea48183c90.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_l.png new file mode 100644 index 0000000..3c5039e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_l.png.import new file mode 100644 index 0000000..5da7171 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://boyg3rjh2v1wg" +path="res://.godot/imported/bar_shadow_round_small_l.png-b6bafe92987a6159edaad814abeb9b20.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_l.png" +dest_files=["res://.godot/imported/bar_shadow_round_small_l.png-b6bafe92987a6159edaad814abeb9b20.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_m.png new file mode 100644 index 0000000..b8388a3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_m.png.import new file mode 100644 index 0000000..b31ef00 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm8axk87tyldn" +path="res://.godot/imported/bar_shadow_round_small_m.png-24d4160989b9d18df397f0f847ba8c82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_m.png" +dest_files=["res://.godot/imported/bar_shadow_round_small_m.png-24d4160989b9d18df397f0f847ba8c82.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_r.png new file mode 100644 index 0000000..76621ca Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_r.png.import new file mode 100644 index 0000000..49cb29f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coxs2nc0pqwkp" +path="res://.godot/imported/bar_shadow_round_small_r.png-ade9c99683453409e6289a8d526d5095.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_r.png" +dest_files=["res://.godot/imported/bar_shadow_round_small_r.png-ade9c99683453409e6289a8d526d5095.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_square.png new file mode 100644 index 0000000..3fb3151 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_square.png.import new file mode 100644 index 0000000..d0b105e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2itlglb4k027" +path="res://.godot/imported/bar_shadow_round_small_square.png-2a6a0c53f3e0f665f7d98baa1d43eb45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_round_small_square.png" +dest_files=["res://.godot/imported/bar_shadow_round_small_square.png-2a6a0c53f3e0f665f7d98baa1d43eb45.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large.png new file mode 100644 index 0000000..78d7b69 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large.png.import new file mode 100644 index 0000000..0ca94f9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv1pexps0wpm8" +path="res://.godot/imported/bar_shadow_square_large.png-f8e0c9eb979b54c9aaa7c994a116a3e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large.png" +dest_files=["res://.godot/imported/bar_shadow_square_large.png-f8e0c9eb979b54c9aaa7c994a116a3e6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_l.png new file mode 100644 index 0000000..d4faa76 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_l.png.import new file mode 100644 index 0000000..c9b4ade --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dspsmwqbgxjp2" +path="res://.godot/imported/bar_shadow_square_large_l.png-c620fddc940983f2cfa4c4b15f4e3001.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_l.png" +dest_files=["res://.godot/imported/bar_shadow_square_large_l.png-c620fddc940983f2cfa4c4b15f4e3001.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_m.png new file mode 100644 index 0000000..91c7dff Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_m.png.import new file mode 100644 index 0000000..1c27964 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt2i8gyatcrf5" +path="res://.godot/imported/bar_shadow_square_large_m.png-19ecb19b6eddafc66ec5b86684c88cb6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_m.png" +dest_files=["res://.godot/imported/bar_shadow_square_large_m.png-19ecb19b6eddafc66ec5b86684c88cb6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_r.png new file mode 100644 index 0000000..67cdcce Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_r.png.import new file mode 100644 index 0000000..7a04cb4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lu4nuh6yoahm" +path="res://.godot/imported/bar_shadow_square_large_r.png-ccfd3d91decfacd8eb3bd5a25e0e449a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_r.png" +dest_files=["res://.godot/imported/bar_shadow_square_large_r.png-ccfd3d91decfacd8eb3bd5a25e0e449a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_square.png new file mode 100644 index 0000000..ba86e7e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_square.png.import new file mode 100644 index 0000000..d289a45 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpclcrbr01yvf" +path="res://.godot/imported/bar_shadow_square_large_square.png-562667aec0ab4b5149c2d18b9b645983.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_large_square.png" +dest_files=["res://.godot/imported/bar_shadow_square_large_square.png-562667aec0ab4b5149c2d18b9b645983.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large.png new file mode 100644 index 0000000..172b5cb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large.png.import new file mode 100644 index 0000000..f49223b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hx6fsoqebb8w" +path="res://.godot/imported/bar_shadow_square_outline_large.png-46cc2aba246f0049887be452c6ef08bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large.png-46cc2aba246f0049887be452c6ef08bb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_l.png new file mode 100644 index 0000000..2ead5a2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_l.png.import new file mode 100644 index 0000000..28c4a40 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qoivdxmevjqy" +path="res://.godot/imported/bar_shadow_square_outline_large_l.png-e325f9c5ee35d6211354ff269ec7f616.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_l.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large_l.png-e325f9c5ee35d6211354ff269ec7f616.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_m.png new file mode 100644 index 0000000..9412aee Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_m.png.import new file mode 100644 index 0000000..ec1756e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gayfugbnmx6x" +path="res://.godot/imported/bar_shadow_square_outline_large_m.png-82a9d8610bfa37de8fe2ee49383a08d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_m.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large_m.png-82a9d8610bfa37de8fe2ee49383a08d0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_r.png new file mode 100644 index 0000000..dbc35bf Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_r.png.import new file mode 100644 index 0000000..62c4ed7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnibogsj5ija8" +path="res://.godot/imported/bar_shadow_square_outline_large_r.png-881d95053875616d153896d7d009fdbc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_r.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large_r.png-881d95053875616d153896d7d009fdbc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_square.png new file mode 100644 index 0000000..bca5aa5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_square.png.import new file mode 100644 index 0000000..6a3055b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vpln5ecf24ib" +path="res://.godot/imported/bar_shadow_square_outline_large_square.png-0d35e1cf662c04e5b305a377ad73f20c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_large_square.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large_square.png-0d35e1cf662c04e5b305a377ad73f20c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small.png new file mode 100644 index 0000000..47ca480 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small.png.import new file mode 100644 index 0000000..ba066ad --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc58yo7xan3bx" +path="res://.godot/imported/bar_shadow_square_outline_small.png-cd2a643c1eb7a58651189d9d9649de3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small.png-cd2a643c1eb7a58651189d9d9649de3d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_l.png new file mode 100644 index 0000000..09427a6 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_l.png.import new file mode 100644 index 0000000..ea27760 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duy4rmb4tbbfy" +path="res://.godot/imported/bar_shadow_square_outline_small_l.png-803ab5f1511dff47bff5cb37e5dbf8df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_l.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small_l.png-803ab5f1511dff47bff5cb37e5dbf8df.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_m.png new file mode 100644 index 0000000..aa3fbc2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_m.png.import new file mode 100644 index 0000000..14adb6f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpec0hkv8c8kh" +path="res://.godot/imported/bar_shadow_square_outline_small_m.png-42dcf0509b4f820db37fb34a0afd6857.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_m.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small_m.png-42dcf0509b4f820db37fb34a0afd6857.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_r.png new file mode 100644 index 0000000..1647e47 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_r.png.import new file mode 100644 index 0000000..555990a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0rrcm6au5myd" +path="res://.godot/imported/bar_shadow_square_outline_small_r.png-3f10310dfb768ccaf3055d1ff15a1526.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_r.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small_r.png-3f10310dfb768ccaf3055d1ff15a1526.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_square.png new file mode 100644 index 0000000..4ee06d8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_square.png.import new file mode 100644 index 0000000..8d37a1b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bokfvncvf4bn3" +path="res://.godot/imported/bar_shadow_square_outline_small_square.png-69288d914f6e14c0764fd11c2452f2a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_outline_small_square.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small_square.png-69288d914f6e14c0764fd11c2452f2a9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small.png new file mode 100644 index 0000000..b14d590 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small.png.import new file mode 100644 index 0000000..9cded74 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://x21uiopjx2dq" +path="res://.godot/imported/bar_shadow_square_small.png-f9bda9ca6a7bc7179537a121e58ee5e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small.png" +dest_files=["res://.godot/imported/bar_shadow_square_small.png-f9bda9ca6a7bc7179537a121e58ee5e0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_l.png new file mode 100644 index 0000000..b906123 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_l.png.import new file mode 100644 index 0000000..4192f4d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8sw1ggo6f3yw" +path="res://.godot/imported/bar_shadow_square_small_l.png-795d31024432519b59fef897373596c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_l.png" +dest_files=["res://.godot/imported/bar_shadow_square_small_l.png-795d31024432519b59fef897373596c5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_m.png new file mode 100644 index 0000000..b8388a3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_m.png.import new file mode 100644 index 0000000..24ba841 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ydaqtob01b8h" +path="res://.godot/imported/bar_shadow_square_small_m.png-36b6c881639f673f28d31b432e294129.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_m.png" +dest_files=["res://.godot/imported/bar_shadow_square_small_m.png-36b6c881639f673f28d31b432e294129.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_r.png new file mode 100644 index 0000000..035f2c2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_r.png.import new file mode 100644 index 0000000..5983cf3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bifcn4igxg5jm" +path="res://.godot/imported/bar_shadow_square_small_r.png-0372763e205004ad28c90859f0649790.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_r.png" +dest_files=["res://.godot/imported/bar_shadow_square_small_r.png-0372763e205004ad28c90859f0649790.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_square.png new file mode 100644 index 0000000..07ac4f1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_square.png.import new file mode 100644 index 0000000..f38f057 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pwuuhu3lts2s" +path="res://.godot/imported/bar_shadow_square_small_square.png-0a3d83edbb18a6b1b1996bd8c9e77772.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/bar_shadow_square_small_square.png" +dest_files=["res://.godot/imported/bar_shadow_square_small_square.png-0a3d83edbb18a6b1b1996bd8c9e77772.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle.png new file mode 100644 index 0000000..9fccaf9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle.png.import new file mode 100644 index 0000000..c4d94d3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://colqwmrwai7h1" +path="res://.godot/imported/button_rectangle.png-b75c2420fe8686160a98ee16e8197423.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle.png" +dest_files=["res://.godot/imported/button_rectangle.png-b75c2420fe8686160a98ee16e8197423.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle_depth.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle_depth.png new file mode 100644 index 0000000..e1fc783 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle_depth.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle_depth.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle_depth.png.import new file mode 100644 index 0000000..4d4069c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle_depth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqeoypxxywq61" +path="res://.godot/imported/button_rectangle_depth.png-5c397e50d12fd897d328e18eb9162fa6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_rectangle_depth.png" +dest_files=["res://.godot/imported/button_rectangle_depth.png-5c397e50d12fd897d328e18eb9162fa6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square.png new file mode 100644 index 0000000..790a55e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square.png.import new file mode 100644 index 0000000..8037b72 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://76cb7wj86gaf" +path="res://.godot/imported/button_square.png-ae21b63bcd94e6f185010dc68eddfd65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square.png" +dest_files=["res://.godot/imported/button_square.png-ae21b63bcd94e6f185010dc68eddfd65.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square_depth.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square_depth.png new file mode 100644 index 0000000..7c48cd4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square_depth.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square_depth.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square_depth.png.import new file mode 100644 index 0000000..de4ff54 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square_depth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djd6d1goqgxg7" +path="res://.godot/imported/button_square_depth.png-b2554673ea803600bfe90d738a6ad1ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/button_square_depth.png" +dest_files=["res://.godot/imported/button_square_depth.png-b2554673ea803600bfe90d738a6ad1ad.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_a.png new file mode 100644 index 0000000..dda02d0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_a.png.import new file mode 100644 index 0000000..ba8b8a6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv1ngtw2rd20i" +path="res://.godot/imported/crosshair_a.png-1471484f403e615057f93a966ef5c49f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_a.png" +dest_files=["res://.godot/imported/crosshair_a.png-1471484f403e615057f93a966ef5c49f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_b.png new file mode 100644 index 0000000..a91aee1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_b.png.import new file mode 100644 index 0000000..5f67163 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcdltlsffthwb" +path="res://.godot/imported/crosshair_b.png-277d4945f7f50687eb2209186cf65238.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_b.png" +dest_files=["res://.godot/imported/crosshair_b.png-277d4945f7f50687eb2209186cf65238.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_c.png new file mode 100644 index 0000000..022d47d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_c.png.import new file mode 100644 index 0000000..68d71c3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlwjk2m00tryn" +path="res://.godot/imported/crosshair_c.png-3bfffc9b618a4180fc5e788b0c0ca2fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_c.png" +dest_files=["res://.godot/imported/crosshair_c.png-3bfffc9b618a4180fc5e788b0c0ca2fa.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_d.png new file mode 100644 index 0000000..27a8e0d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_d.png.import new file mode 100644 index 0000000..dead10a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddv7p0elktpd" +path="res://.godot/imported/crosshair_d.png-00771a949ba93d3021b0be1c69b2c908.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/crosshair_d.png" +dest_files=["res://.godot/imported/crosshair_d.png-00771a949ba93d3021b0be1c69b2c908.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_a.png new file mode 100644 index 0000000..42d21d0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_a.png.import new file mode 100644 index 0000000..d3af84b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgmvlquxwu3gk" +path="res://.godot/imported/cursor_a.png-5a1e309b0dcd422a6b0d32e58d64917e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_a.png" +dest_files=["res://.godot/imported/cursor_a.png-5a1e309b0dcd422a6b0d32e58d64917e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_b.png new file mode 100644 index 0000000..8ce7890 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_b.png.import new file mode 100644 index 0000000..20e5c5b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd1bcmlgywvve" +path="res://.godot/imported/cursor_b.png-299a35cfc746056a32914830a5c225b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_b.png" +dest_files=["res://.godot/imported/cursor_b.png-299a35cfc746056a32914830a5c225b1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_c.png new file mode 100644 index 0000000..f61df8e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_c.png.import new file mode 100644 index 0000000..da29844 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnq0s6tm00lfj" +path="res://.godot/imported/cursor_c.png-777377cff467a630fe1e369196ab83f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_c.png" +dest_files=["res://.godot/imported/cursor_c.png-777377cff467a630fe1e369196ab83f0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_d.png new file mode 100644 index 0000000..5b06058 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_d.png.import new file mode 100644 index 0000000..568be99 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c12seami6kqg2" +path="res://.godot/imported/cursor_d.png-f97d5e4a6644b95156613439fb80c741.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_d.png" +dest_files=["res://.godot/imported/cursor_d.png-f97d5e4a6644b95156613439fb80c741.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_e.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_e.png new file mode 100644 index 0000000..40272b8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_e.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_e.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_e.png.import new file mode 100644 index 0000000..ac11175 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_e.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpiclxt5xdwxd" +path="res://.godot/imported/cursor_e.png-157dd502b14271448fa588ac5ce9e27b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_e.png" +dest_files=["res://.godot/imported/cursor_e.png-157dd502b14271448fa588ac5ce9e27b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_f.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_f.png new file mode 100644 index 0000000..fdbb580 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_f.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_f.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_f.png.import new file mode 100644 index 0000000..88bcde6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_f.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnqk8fkiqoqml" +path="res://.godot/imported/cursor_f.png-43a37ad2b12a4cd40becab37d69a5cda.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_f.png" +dest_files=["res://.godot/imported/cursor_f.png-43a37ad2b12a4cd40becab37d69a5cda.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_g.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_g.png new file mode 100644 index 0000000..38ca9b5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_g.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_g.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_g.png.import new file mode 100644 index 0000000..6e1dc81 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_g.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvmtoqetam857" +path="res://.godot/imported/cursor_g.png-5e89bf55fa3d79bab415e3f9c5e30bb1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_g.png" +dest_files=["res://.godot/imported/cursor_g.png-5e89bf55fa3d79bab415e3f9c5e30bb1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_h.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_h.png new file mode 100644 index 0000000..49e31e8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_h.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_h.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_h.png.import new file mode 100644 index 0000000..ecd2f67 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_h.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b606g3eoc4l6m" +path="res://.godot/imported/cursor_h.png-3eeb1f8d67817f194bbde0f78c183095.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/cursor_h.png" +dest_files=["res://.godot/imported/cursor_h.png-3eeb1f8d67817f194bbde0f78c183095.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass.png new file mode 100644 index 0000000..0990473 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass.png.import new file mode 100644 index 0000000..0187ea8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cggndflga1xsx" +path="res://.godot/imported/panel_glass.png-af887f78f83d77b21fbdd43278f3f023.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass.png" +dest_files=["res://.godot/imported/panel_glass.png-af887f78f83d77b21fbdd43278f3f023.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_bl.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_bl.png new file mode 100644 index 0000000..00f847f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_bl.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_bl.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_bl.png.import new file mode 100644 index 0000000..96041e4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_bl.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8kisfl22dgc7" +path="res://.godot/imported/panel_glass_notch_bl.png-3977b3053d11c8d3450522a4b68ae84e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_bl.png" +dest_files=["res://.godot/imported/panel_glass_notch_bl.png-3977b3053d11c8d3450522a4b68ae84e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_br.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_br.png new file mode 100644 index 0000000..d49d964 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_br.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_br.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_br.png.import new file mode 100644 index 0000000..bd66df9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_br.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdso8h16iy5qq" +path="res://.godot/imported/panel_glass_notch_br.png-89389867fdd8adc63d47d84e7439247d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_br.png" +dest_files=["res://.godot/imported/panel_glass_notch_br.png-89389867fdd8adc63d47d84e7439247d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tl.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tl.png new file mode 100644 index 0000000..98b8e5f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tl.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tl.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tl.png.import new file mode 100644 index 0000000..f9cf844 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tl.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm2hpk0m7dvp4" +path="res://.godot/imported/panel_glass_notch_tl.png-3536e345b124ffccf12a90ceb1bd8456.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tl.png" +dest_files=["res://.godot/imported/panel_glass_notch_tl.png-3536e345b124ffccf12a90ceb1bd8456.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tr.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tr.png new file mode 100644 index 0000000..9078d3a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tr.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tr.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tr.png.import new file mode 100644 index 0000000..a168cd1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tr.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://20f70okt7oh5" +path="res://.godot/imported/panel_glass_notch_tr.png-921b5379543c85967bfccdba1009c7f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notch_tr.png" +dest_files=["res://.godot/imported/panel_glass_notch_tr.png-921b5379543c85967bfccdba1009c7f1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches.png new file mode 100644 index 0000000..6527e7c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches.png.import new file mode 100644 index 0000000..f0d1ec7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cx56kuyorond1" +path="res://.godot/imported/panel_glass_notches.png-049259b58a81d6aa174982e8896fa812.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches.png" +dest_files=["res://.godot/imported/panel_glass_notches.png-049259b58a81d6aa174982e8896fa812.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches_top.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches_top.png new file mode 100644 index 0000000..f78a8a3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches_top.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches_top.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches_top.png.import new file mode 100644 index 0000000..c369682 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches_top.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djprrabkdm4fj" +path="res://.godot/imported/panel_glass_notches_top.png-51ffe75c9c0c326e2bf12a65f1cd7c3e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_notches_top.png" +dest_files=["res://.godot/imported/panel_glass_notches_top.png-51ffe75c9c0c326e2bf12a65f1cd7c3e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_screws.png new file mode 100644 index 0000000..790a55e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_screws.png.import new file mode 100644 index 0000000..31ec5ec --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m2ep06ooprsg" +path="res://.godot/imported/panel_glass_screws.png-7ad870e013531f8f7bb40869d6bd3263.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_screws.png" +dest_files=["res://.godot/imported/panel_glass_screws.png-7ad870e013531f8f7bb40869d6bd3263.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab.png new file mode 100644 index 0000000..5452785 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab.png.import new file mode 100644 index 0000000..c39e489 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsqjox20ddd07" +path="res://.godot/imported/panel_glass_tab.png-19edc0abbc81086c6acb41316d146bf6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab.png" +dest_files=["res://.godot/imported/panel_glass_tab.png-19edc0abbc81086c6acb41316d146bf6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab_blade.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab_blade.png new file mode 100644 index 0000000..d3a5308 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab_blade.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab_blade.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab_blade.png.import new file mode 100644 index 0000000..c3ed600 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab_blade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jxcdjdbmjtbe" +path="res://.godot/imported/panel_glass_tab_blade.png-40419b53412656421f27314a7ae538a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_glass_tab_blade.png" +dest_files=["res://.godot/imported/panel_glass_tab_blade.png-40419b53412656421f27314a7ae538a6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle.png new file mode 100644 index 0000000..904e238 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle.png.import new file mode 100644 index 0000000..7c4d597 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dffd0gi2eddel" +path="res://.godot/imported/panel_rectangle.png-92093fd9a36c55199ce5a4e98fed1677.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle.png" +dest_files=["res://.godot/imported/panel_rectangle.png-92093fd9a36c55199ce5a4e98fed1677.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle_screws.png new file mode 100644 index 0000000..5160900 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle_screws.png.import new file mode 100644 index 0000000..1d78865 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://datb2gmymf14l" +path="res://.godot/imported/panel_rectangle_screws.png-6e82c9cad7369cdad379f7c143417fcc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_rectangle_screws.png" +dest_files=["res://.godot/imported/panel_rectangle_screws.png-6e82c9cad7369cdad379f7c143417fcc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square.png new file mode 100644 index 0000000..3b5ac10 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square.png.import new file mode 100644 index 0000000..d6828d1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw044ja5yeh2y" +path="res://.godot/imported/panel_square.png-d33953993b18a3460b67811b2402120d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square.png" +dest_files=["res://.godot/imported/panel_square.png-d33953993b18a3460b67811b2402120d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square_screws.png new file mode 100644 index 0000000..986a23c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square_screws.png.import new file mode 100644 index 0000000..2526b42 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpjnafypo3jaq" +path="res://.godot/imported/panel_square_screws.png-83babef7dfd52b8df911d8617e083962.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Default/panel_square_screws.png" +dest_files=["res://.godot/imported/panel_square_screws.png-83babef7dfd52b8df911d8617e083962.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large.png new file mode 100644 index 0000000..9ad735b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large.png.import new file mode 100644 index 0000000..abfd78a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcbtsqb4u4cao" +path="res://.godot/imported/bar_shadow_round_large.png-f54337f041ed5cb470a1b049e14ce77c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large.png" +dest_files=["res://.godot/imported/bar_shadow_round_large.png-f54337f041ed5cb470a1b049e14ce77c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_l.png new file mode 100644 index 0000000..d043dba Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_l.png.import new file mode 100644 index 0000000..2b9df04 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6ivxil6p35w7" +path="res://.godot/imported/bar_shadow_round_large_l.png-7481f67315f52c8052466552acdeed5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_l.png" +dest_files=["res://.godot/imported/bar_shadow_round_large_l.png-7481f67315f52c8052466552acdeed5f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_m.png new file mode 100644 index 0000000..92983d1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_m.png.import new file mode 100644 index 0000000..f5d86bc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl7b5sg53i31j" +path="res://.godot/imported/bar_shadow_round_large_m.png-8c41a7a93901cbba0e76b7ab99c1518a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_m.png" +dest_files=["res://.godot/imported/bar_shadow_round_large_m.png-8c41a7a93901cbba0e76b7ab99c1518a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_r.png new file mode 100644 index 0000000..2da0172 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_r.png.import new file mode 100644 index 0000000..45a90e1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfn18mbcxjeu7" +path="res://.godot/imported/bar_shadow_round_large_r.png-f0565087ed6f62a475d20754a96b2207.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_r.png" +dest_files=["res://.godot/imported/bar_shadow_round_large_r.png-f0565087ed6f62a475d20754a96b2207.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_square.png new file mode 100644 index 0000000..7113131 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_square.png.import new file mode 100644 index 0000000..62fdde7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b03gsk0wlsw8d" +path="res://.godot/imported/bar_shadow_round_large_square.png-5b6e2234e7495798c66ce121cf4c3019.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_large_square.png" +dest_files=["res://.godot/imported/bar_shadow_round_large_square.png-5b6e2234e7495798c66ce121cf4c3019.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large.png new file mode 100644 index 0000000..3cd03c5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large.png.import new file mode 100644 index 0000000..b40f90f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbas4ech2hbm0" +path="res://.godot/imported/bar_shadow_round_outline_large.png-6bd4efc5d281a1e79a846284f140516b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large.png-6bd4efc5d281a1e79a846284f140516b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_l.png new file mode 100644 index 0000000..17c80bf Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_l.png.import new file mode 100644 index 0000000..3a13ce5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr807mguulffc" +path="res://.godot/imported/bar_shadow_round_outline_large_l.png-bf04098f1ea640a4dae7b458a6237514.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_l.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large_l.png-bf04098f1ea640a4dae7b458a6237514.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_m.png new file mode 100644 index 0000000..5e44dac Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_m.png.import new file mode 100644 index 0000000..d2f20b9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn2a1tdtcbx1b" +path="res://.godot/imported/bar_shadow_round_outline_large_m.png-eb7c97de6716c3b006940fbb097f5f8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_m.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large_m.png-eb7c97de6716c3b006940fbb097f5f8d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_r.png new file mode 100644 index 0000000..253ef38 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_r.png.import new file mode 100644 index 0000000..e752887 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b04ka25in10bl" +path="res://.godot/imported/bar_shadow_round_outline_large_r.png-a59fc8c5c7840586c016b10db3bff81e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_r.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large_r.png-a59fc8c5c7840586c016b10db3bff81e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_square.png new file mode 100644 index 0000000..5f00dd9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_square.png.import new file mode 100644 index 0000000..c6a2961 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvcnnbolugmga" +path="res://.godot/imported/bar_shadow_round_outline_large_square.png-5bb5bdc6155976d86caf04ffa9765c80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_large_square.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large_square.png-5bb5bdc6155976d86caf04ffa9765c80.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small.png new file mode 100644 index 0000000..99c50e6 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small.png.import new file mode 100644 index 0000000..49dbc97 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjx6241ral4qf" +path="res://.godot/imported/bar_shadow_round_outline_small.png-4f95a6a4304a7ca2afedda045fe01114.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small.png-4f95a6a4304a7ca2afedda045fe01114.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_l.png new file mode 100644 index 0000000..4453f76 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_l.png.import new file mode 100644 index 0000000..500a315 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dchx0ppxw2qux" +path="res://.godot/imported/bar_shadow_round_outline_small_l.png-c3466bd221c8fc836a310e56de22accb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_l.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small_l.png-c3466bd221c8fc836a310e56de22accb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_m.png new file mode 100644 index 0000000..c423592 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_m.png.import new file mode 100644 index 0000000..9bb73e1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://npb0fdo18au1" +path="res://.godot/imported/bar_shadow_round_outline_small_m.png-3288f174c56310511ec66a05af79bf6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_m.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small_m.png-3288f174c56310511ec66a05af79bf6b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_r.png new file mode 100644 index 0000000..a47cdf1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_r.png.import new file mode 100644 index 0000000..0d10be9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1tnwyq5ewu8b" +path="res://.godot/imported/bar_shadow_round_outline_small_r.png-c2781a1dfff5b55790425e0f82bc2069.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_r.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small_r.png-c2781a1dfff5b55790425e0f82bc2069.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_square.png new file mode 100644 index 0000000..7db8755 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_square.png.import new file mode 100644 index 0000000..502ded4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6b3yc25ha21r" +path="res://.godot/imported/bar_shadow_round_outline_small_square.png-e344be8cd862a23196277e7f6d78f388.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_outline_small_square.png" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small_square.png-e344be8cd862a23196277e7f6d78f388.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small.png new file mode 100644 index 0000000..924e08d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small.png.import new file mode 100644 index 0000000..cf6e6e0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2xqbr22kgbdb" +path="res://.godot/imported/bar_shadow_round_small.png-5105da3caa7acdf234105ce37e89e0e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small.png" +dest_files=["res://.godot/imported/bar_shadow_round_small.png-5105da3caa7acdf234105ce37e89e0e7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_l.png new file mode 100644 index 0000000..b930e20 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_l.png.import new file mode 100644 index 0000000..54e95a5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3ldkcr8dnyxe" +path="res://.godot/imported/bar_shadow_round_small_l.png-7599a08aceb4e54f5cb093938cb1d977.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_l.png" +dest_files=["res://.godot/imported/bar_shadow_round_small_l.png-7599a08aceb4e54f5cb093938cb1d977.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_m.png new file mode 100644 index 0000000..80faaff Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_m.png.import new file mode 100644 index 0000000..75b2a62 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd21ti3l0c6lh" +path="res://.godot/imported/bar_shadow_round_small_m.png-d09d28430e7f66eba8eed6e5c0694eff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_m.png" +dest_files=["res://.godot/imported/bar_shadow_round_small_m.png-d09d28430e7f66eba8eed6e5c0694eff.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_r.png new file mode 100644 index 0000000..7d092f6 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_r.png.import new file mode 100644 index 0000000..c3ab117 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg3kjbr0vvnwm" +path="res://.godot/imported/bar_shadow_round_small_r.png-48fc166b828c2740cb8d6ae6e98b73c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_r.png" +dest_files=["res://.godot/imported/bar_shadow_round_small_r.png-48fc166b828c2740cb8d6ae6e98b73c2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_square.png new file mode 100644 index 0000000..332cb07 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_square.png.import new file mode 100644 index 0000000..50b8e2d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwu7rtu2s3egy" +path="res://.godot/imported/bar_shadow_round_small_square.png-c3227568396ea021b73199661108ee05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_round_small_square.png" +dest_files=["res://.godot/imported/bar_shadow_round_small_square.png-c3227568396ea021b73199661108ee05.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large.png new file mode 100644 index 0000000..5ee85a8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large.png.import new file mode 100644 index 0000000..04798da --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsv44ell7qayw" +path="res://.godot/imported/bar_shadow_square_large.png-7b13d3cbeff2179f089504923ced865d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large.png" +dest_files=["res://.godot/imported/bar_shadow_square_large.png-7b13d3cbeff2179f089504923ced865d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_l.png new file mode 100644 index 0000000..653ea66 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_l.png.import new file mode 100644 index 0000000..4e3aa46 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxu7xydqsw2ui" +path="res://.godot/imported/bar_shadow_square_large_l.png-6091f8ccd464a1c2d04f7b9d7a8c2233.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_l.png" +dest_files=["res://.godot/imported/bar_shadow_square_large_l.png-6091f8ccd464a1c2d04f7b9d7a8c2233.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_m.png new file mode 100644 index 0000000..92983d1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_m.png.import new file mode 100644 index 0000000..9e96e72 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8l1b0djafcf1" +path="res://.godot/imported/bar_shadow_square_large_m.png-8f30020f27df300e52e0090e7584cc30.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_m.png" +dest_files=["res://.godot/imported/bar_shadow_square_large_m.png-8f30020f27df300e52e0090e7584cc30.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_r.png new file mode 100644 index 0000000..e57008c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_r.png.import new file mode 100644 index 0000000..66ebca8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://srdvo52ic0wq" +path="res://.godot/imported/bar_shadow_square_large_r.png-d12a410340fa847832797c288ed5ed7c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_r.png" +dest_files=["res://.godot/imported/bar_shadow_square_large_r.png-d12a410340fa847832797c288ed5ed7c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_square.png new file mode 100644 index 0000000..3815206 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_square.png.import new file mode 100644 index 0000000..ad882b3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuae235srh5lm" +path="res://.godot/imported/bar_shadow_square_large_square.png-f0dc216f43aecd853822590cf5bdb3ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_large_square.png" +dest_files=["res://.godot/imported/bar_shadow_square_large_square.png-f0dc216f43aecd853822590cf5bdb3ff.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large.png new file mode 100644 index 0000000..ca240ed Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large.png.import new file mode 100644 index 0000000..4f1a429 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwh8hkkd3ofo6" +path="res://.godot/imported/bar_shadow_square_outline_large.png-d1ff01bc59d17f4570139fcc4235aabd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large.png-d1ff01bc59d17f4570139fcc4235aabd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_l.png new file mode 100644 index 0000000..7a89359 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_l.png.import new file mode 100644 index 0000000..98dd112 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkgds4uho7g4m" +path="res://.godot/imported/bar_shadow_square_outline_large_l.png-b0c20be4bc082bcff1422177f90a7ebe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_l.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large_l.png-b0c20be4bc082bcff1422177f90a7ebe.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_m.png new file mode 100644 index 0000000..5e44dac Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_m.png.import new file mode 100644 index 0000000..f6af319 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwb1k03wb2861" +path="res://.godot/imported/bar_shadow_square_outline_large_m.png-e914b70bd63408060f623870ba50a135.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_m.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large_m.png-e914b70bd63408060f623870ba50a135.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_r.png new file mode 100644 index 0000000..5cc3889 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_r.png.import new file mode 100644 index 0000000..30b5c3b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxtje81rjhgjt" +path="res://.godot/imported/bar_shadow_square_outline_large_r.png-f59efe2359aa8be2fe36b017a2163e90.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_r.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large_r.png-f59efe2359aa8be2fe36b017a2163e90.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_square.png new file mode 100644 index 0000000..a30a761 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_square.png.import new file mode 100644 index 0000000..900ea3e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqi2lxbbawudx" +path="res://.godot/imported/bar_shadow_square_outline_large_square.png-d70d85ea7a6ac2d0c9c4fa07a087a8fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_large_square.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large_square.png-d70d85ea7a6ac2d0c9c4fa07a087a8fb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small.png new file mode 100644 index 0000000..72ff81d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small.png.import new file mode 100644 index 0000000..875a956 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://la7pw6u1rt47" +path="res://.godot/imported/bar_shadow_square_outline_small.png-8875c5c12782b83d61326de1bb4a5f8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small.png-8875c5c12782b83d61326de1bb4a5f8d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_l.png new file mode 100644 index 0000000..41d30fb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_l.png.import new file mode 100644 index 0000000..5f543a4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c32v2yrwgf8lf" +path="res://.godot/imported/bar_shadow_square_outline_small_l.png-8c89677e300ab3a12ff757de7732a7c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_l.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small_l.png-8c89677e300ab3a12ff757de7732a7c3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_m.png new file mode 100644 index 0000000..c423592 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_m.png.import new file mode 100644 index 0000000..d683c13 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs2eqn4y2a2x0" +path="res://.godot/imported/bar_shadow_square_outline_small_m.png-c0d65137ec12abdd61aaaa8cb3f2136a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_m.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small_m.png-c0d65137ec12abdd61aaaa8cb3f2136a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_r.png new file mode 100644 index 0000000..8e8d9d4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_r.png.import new file mode 100644 index 0000000..0a9ae9b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpn22ai1pl4t8" +path="res://.godot/imported/bar_shadow_square_outline_small_r.png-4558d8094f6f2dffb014fd00c305a41e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_r.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small_r.png-4558d8094f6f2dffb014fd00c305a41e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_square.png new file mode 100644 index 0000000..04ab077 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_square.png.import new file mode 100644 index 0000000..e80876c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du1uvl104xc71" +path="res://.godot/imported/bar_shadow_square_outline_small_square.png-2a9e1287e7fbab981537c9adfd233b95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_outline_small_square.png" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small_square.png-2a9e1287e7fbab981537c9adfd233b95.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small.png new file mode 100644 index 0000000..010f814 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small.png.import new file mode 100644 index 0000000..0a9eeac --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciewhnfh2xcp" +path="res://.godot/imported/bar_shadow_square_small.png-393fb5007ea5984dea17e22d252b1213.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small.png" +dest_files=["res://.godot/imported/bar_shadow_square_small.png-393fb5007ea5984dea17e22d252b1213.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_l.png new file mode 100644 index 0000000..49ea825 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_l.png.import new file mode 100644 index 0000000..cc59907 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duk3fduv2me60" +path="res://.godot/imported/bar_shadow_square_small_l.png-d69557e668af9dd97df64eef461c4c6d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_l.png" +dest_files=["res://.godot/imported/bar_shadow_square_small_l.png-d69557e668af9dd97df64eef461c4c6d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_m.png new file mode 100644 index 0000000..80faaff Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_m.png.import new file mode 100644 index 0000000..445f950 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diqn7u2j7xj30" +path="res://.godot/imported/bar_shadow_square_small_m.png-92779c29665d69e7234a601d33647ec8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_m.png" +dest_files=["res://.godot/imported/bar_shadow_square_small_m.png-92779c29665d69e7234a601d33647ec8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_r.png new file mode 100644 index 0000000..b190c39 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_r.png.import new file mode 100644 index 0000000..a2feb78 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8h5dn1vero8g" +path="res://.godot/imported/bar_shadow_square_small_r.png-a73a74b10d8e49f55df65d01b1728dad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_r.png" +dest_files=["res://.godot/imported/bar_shadow_square_small_r.png-a73a74b10d8e49f55df65d01b1728dad.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_square.png new file mode 100644 index 0000000..ee4bf82 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_square.png.import new file mode 100644 index 0000000..e0ba917 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fy0gtiw66wns" +path="res://.godot/imported/bar_shadow_square_small_square.png-4799ac95e37bd1860c111591351e59c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/bar_shadow_square_small_square.png" +dest_files=["res://.godot/imported/bar_shadow_square_small_square.png-4799ac95e37bd1860c111591351e59c8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle.png new file mode 100644 index 0000000..87c86a3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle.png.import new file mode 100644 index 0000000..11fe14a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4xy67r2ncwcl" +path="res://.godot/imported/button_rectangle.png-34b061a322c7e9d84a1f688657a7c94b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle.png" +dest_files=["res://.godot/imported/button_rectangle.png-34b061a322c7e9d84a1f688657a7c94b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle_depth.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle_depth.png new file mode 100644 index 0000000..6023489 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle_depth.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle_depth.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle_depth.png.import new file mode 100644 index 0000000..38368ac --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle_depth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdpelpm6m8tiu" +path="res://.godot/imported/button_rectangle_depth.png-b3c88a5a4b2e73a51b88407cfd9415f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_rectangle_depth.png" +dest_files=["res://.godot/imported/button_rectangle_depth.png-b3c88a5a4b2e73a51b88407cfd9415f1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square.png new file mode 100644 index 0000000..f2c25b0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square.png.import new file mode 100644 index 0000000..fad24c6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drpiyvq6a4qgh" +path="res://.godot/imported/button_square.png-5ac75178b6f6e51ebe88e722c251931c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square.png" +dest_files=["res://.godot/imported/button_square.png-5ac75178b6f6e51ebe88e722c251931c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square_depth.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square_depth.png new file mode 100644 index 0000000..d9c2b46 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square_depth.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square_depth.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square_depth.png.import new file mode 100644 index 0000000..dd35f90 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square_depth.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2yf2mjxuyc6n" +path="res://.godot/imported/button_square_depth.png-dbff840406ffe870e3a4525c31afe1f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/button_square_depth.png" +dest_files=["res://.godot/imported/button_square_depth.png-dbff840406ffe870e3a4525c31afe1f9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_a.png new file mode 100644 index 0000000..f40e2b9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_a.png.import new file mode 100644 index 0000000..cd7a297 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn6o5xuvim45c" +path="res://.godot/imported/crosshair_a.png-ef368d79b99bf1568844945e7af924f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_a.png" +dest_files=["res://.godot/imported/crosshair_a.png-ef368d79b99bf1568844945e7af924f6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_b.png new file mode 100644 index 0000000..b7a4307 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_b.png.import new file mode 100644 index 0000000..eada6b3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3yqlcw26pp8c" +path="res://.godot/imported/crosshair_b.png-fe60c81f9675eabc2f8fa38c2cf4120c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_b.png" +dest_files=["res://.godot/imported/crosshair_b.png-fe60c81f9675eabc2f8fa38c2cf4120c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_c.png new file mode 100644 index 0000000..9574d86 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_c.png.import new file mode 100644 index 0000000..c0b254a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxee6dbvcwbdl" +path="res://.godot/imported/crosshair_c.png-5678da8ee06e3f81c0ffd3df4399be58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_c.png" +dest_files=["res://.godot/imported/crosshair_c.png-5678da8ee06e3f81c0ffd3df4399be58.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_d.png new file mode 100644 index 0000000..c254bfc Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_d.png.import new file mode 100644 index 0000000..d6b67b9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pv7rpjjj3dt4" +path="res://.godot/imported/crosshair_d.png-3afc0f6a97c12aba79253a2e9deaaff5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/crosshair_d.png" +dest_files=["res://.godot/imported/crosshair_d.png-3afc0f6a97c12aba79253a2e9deaaff5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_a.png new file mode 100644 index 0000000..8343255 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_a.png.import new file mode 100644 index 0000000..9f0abe5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dilux01vdwjcl" +path="res://.godot/imported/cursor_a.png-430ffdd57e4f2abc0995b9b840b396d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_a.png" +dest_files=["res://.godot/imported/cursor_a.png-430ffdd57e4f2abc0995b9b840b396d2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_b.png new file mode 100644 index 0000000..4f9cb8d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_b.png.import new file mode 100644 index 0000000..9dd7282 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2o7xawb3fplj" +path="res://.godot/imported/cursor_b.png-f89863d480652fe3179fdf5b2868e202.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_b.png" +dest_files=["res://.godot/imported/cursor_b.png-f89863d480652fe3179fdf5b2868e202.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_c.png new file mode 100644 index 0000000..ebc1b63 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_c.png.import new file mode 100644 index 0000000..5159563 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://koan8c7xyb32" +path="res://.godot/imported/cursor_c.png-36d1b4b9a6602a513ec0f1b50d4b2368.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_c.png" +dest_files=["res://.godot/imported/cursor_c.png-36d1b4b9a6602a513ec0f1b50d4b2368.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_d.png new file mode 100644 index 0000000..561ee2f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_d.png.import new file mode 100644 index 0000000..fd1a155 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f40uay3icfip" +path="res://.godot/imported/cursor_d.png-7a80c5d02914fa531a962337281e0756.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_d.png" +dest_files=["res://.godot/imported/cursor_d.png-7a80c5d02914fa531a962337281e0756.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_e.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_e.png new file mode 100644 index 0000000..07eea56 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_e.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_e.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_e.png.import new file mode 100644 index 0000000..dd68baa --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_e.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdd4ghcxlen18" +path="res://.godot/imported/cursor_e.png-f7f53bed5ac3574dafdc63b3e6617f0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_e.png" +dest_files=["res://.godot/imported/cursor_e.png-f7f53bed5ac3574dafdc63b3e6617f0f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_f.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_f.png new file mode 100644 index 0000000..bf53665 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_f.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_f.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_f.png.import new file mode 100644 index 0000000..840b3ff --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_f.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cubmgqp5mqh2i" +path="res://.godot/imported/cursor_f.png-b2408decc232d85be23026dd32d44965.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_f.png" +dest_files=["res://.godot/imported/cursor_f.png-b2408decc232d85be23026dd32d44965.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_g.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_g.png new file mode 100644 index 0000000..6d6d781 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_g.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_g.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_g.png.import new file mode 100644 index 0000000..96dded7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_g.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw5khpi2haahi" +path="res://.godot/imported/cursor_g.png-fb3fd2353c4bf8a5f58c82d72c103840.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_g.png" +dest_files=["res://.godot/imported/cursor_g.png-fb3fd2353c4bf8a5f58c82d72c103840.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_h.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_h.png new file mode 100644 index 0000000..248e6eb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_h.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_h.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_h.png.import new file mode 100644 index 0000000..0173a51 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_h.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://we012ugm2sv" +path="res://.godot/imported/cursor_h.png-1f3d4c491dfdebb6461bad8ff0237f39.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/cursor_h.png" +dest_files=["res://.godot/imported/cursor_h.png-1f3d4c491dfdebb6461bad8ff0237f39.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass.png new file mode 100644 index 0000000..8e07205 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass.png.import new file mode 100644 index 0000000..e64319a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk0420josj78e" +path="res://.godot/imported/panel_glass.png-d88b9471e370bfc42f9db461ec677bb9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass.png" +dest_files=["res://.godot/imported/panel_glass.png-d88b9471e370bfc42f9db461ec677bb9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_bl.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_bl.png new file mode 100644 index 0000000..30a0556 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_bl.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_bl.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_bl.png.import new file mode 100644 index 0000000..c30bbea --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_bl.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6qfea6gtysba" +path="res://.godot/imported/panel_glass_notch_bl.png-ef6a823af224fbf0c4812b9879210f82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_bl.png" +dest_files=["res://.godot/imported/panel_glass_notch_bl.png-ef6a823af224fbf0c4812b9879210f82.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_br.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_br.png new file mode 100644 index 0000000..448d278 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_br.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_br.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_br.png.import new file mode 100644 index 0000000..eb80da9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_br.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m8ipi3knhg71" +path="res://.godot/imported/panel_glass_notch_br.png-20f7b55bbe6c8843eb3a41f8c6255cab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_br.png" +dest_files=["res://.godot/imported/panel_glass_notch_br.png-20f7b55bbe6c8843eb3a41f8c6255cab.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tl.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tl.png new file mode 100644 index 0000000..557a7e5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tl.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tl.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tl.png.import new file mode 100644 index 0000000..bc03179 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tl.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxchjjl2b4aua" +path="res://.godot/imported/panel_glass_notch_tl.png-c7310ed7b619a7cdc112f84413f2dfec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tl.png" +dest_files=["res://.godot/imported/panel_glass_notch_tl.png-c7310ed7b619a7cdc112f84413f2dfec.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tr.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tr.png new file mode 100644 index 0000000..cb9942b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tr.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tr.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tr.png.import new file mode 100644 index 0000000..4e94018 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tr.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd6xohs717o16" +path="res://.godot/imported/panel_glass_notch_tr.png-52a09262d7600fad7a14d9570a31333e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notch_tr.png" +dest_files=["res://.godot/imported/panel_glass_notch_tr.png-52a09262d7600fad7a14d9570a31333e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches.png new file mode 100644 index 0000000..2661acb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches.png.import new file mode 100644 index 0000000..8514f12 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh8irjwee7mc1" +path="res://.godot/imported/panel_glass_notches.png-7ddc172a72e87046a5200c7508cd8f15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches.png" +dest_files=["res://.godot/imported/panel_glass_notches.png-7ddc172a72e87046a5200c7508cd8f15.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches_top.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches_top.png new file mode 100644 index 0000000..23075c2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches_top.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches_top.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches_top.png.import new file mode 100644 index 0000000..e506ee0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches_top.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cps6swx83xl31" +path="res://.godot/imported/panel_glass_notches_top.png-e47ef24d4e67da7f513d1bf1e339a2c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_notches_top.png" +dest_files=["res://.godot/imported/panel_glass_notches_top.png-e47ef24d4e67da7f513d1bf1e339a2c7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_screws.png new file mode 100644 index 0000000..f2c25b0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_screws.png.import new file mode 100644 index 0000000..5e639ad --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da6rns1muq7ke" +path="res://.godot/imported/panel_glass_screws.png-73ca38c26a404c5ccd67d8e06656055a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_screws.png" +dest_files=["res://.godot/imported/panel_glass_screws.png-73ca38c26a404c5ccd67d8e06656055a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab.png new file mode 100644 index 0000000..be14a82 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab.png.import new file mode 100644 index 0000000..ef5c9a4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bb07cymsr5e8c" +path="res://.godot/imported/panel_glass_tab.png-fb9737b558b796dcc0b7c6d1e022b130.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab.png" +dest_files=["res://.godot/imported/panel_glass_tab.png-fb9737b558b796dcc0b7c6d1e022b130.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab_blade.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab_blade.png new file mode 100644 index 0000000..7c3b713 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab_blade.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab_blade.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab_blade.png.import new file mode 100644 index 0000000..1f99ad4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab_blade.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8mevk6nejcvf" +path="res://.godot/imported/panel_glass_tab_blade.png-512290976937d227d503ec126ef64272.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_glass_tab_blade.png" +dest_files=["res://.godot/imported/panel_glass_tab_blade.png-512290976937d227d503ec126ef64272.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle.png new file mode 100644 index 0000000..bd3c155 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle.png.import new file mode 100644 index 0000000..984b085 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo8oaymj28agn" +path="res://.godot/imported/panel_rectangle.png-e1711d9eaf9d0009abaf33458f8fdf79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle.png" +dest_files=["res://.godot/imported/panel_rectangle.png-e1711d9eaf9d0009abaf33458f8fdf79.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle_screws.png new file mode 100644 index 0000000..6e59b51 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle_screws.png.import new file mode 100644 index 0000000..14765af --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3qssb77lnh6s" +path="res://.godot/imported/panel_rectangle_screws.png-dfbf44776f5e5bba7143e3cda1a3c48d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_rectangle_screws.png" +dest_files=["res://.godot/imported/panel_rectangle_screws.png-dfbf44776f5e5bba7143e3cda1a3c48d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square.png new file mode 100644 index 0000000..dd22991 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square.png.import new file mode 100644 index 0000000..cb75dff --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0jn7qdj5nqpm" +path="res://.godot/imported/panel_square.png-d0aa5a9609518a36a5691487d8634ad4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square.png" +dest_files=["res://.godot/imported/panel_square.png-d0aa5a9609518a36a5691487d8634ad4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square_screws.png new file mode 100644 index 0000000..c2e8c5b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square_screws.png.import new file mode 100644 index 0000000..e090465 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b14u3ypkef76v" +path="res://.godot/imported/panel_square_screws.png-972f82b23c05f4d5572d653dbe0710b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Extra/Double/panel_square_screws.png" +dest_files=["res://.godot/imported/panel_square_screws.png-972f82b23c05f4d5572d653dbe0710b6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large.png new file mode 100644 index 0000000..ce6a3fa Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large.png.import new file mode 100644 index 0000000..825e971 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6hqvi68n8epg" +path="res://.godot/imported/bar_round_gloss_large.png-056986202a486db8f45ddd12715b08dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large.png" +dest_files=["res://.godot/imported/bar_round_gloss_large.png-056986202a486db8f45ddd12715b08dd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_l.png new file mode 100644 index 0000000..f42217e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_l.png.import new file mode 100644 index 0000000..a657d2e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://braex477jc7br" +path="res://.godot/imported/bar_round_gloss_large_l.png-6a77e7f9f9e9e70fb02d5aeee0e45c2a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.png-6a77e7f9f9e9e70fb02d5aeee0e45c2a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_m.png new file mode 100644 index 0000000..15e966c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_m.png.import new file mode 100644 index 0000000..552e06e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bagu8r2yw2nft" +path="res://.godot/imported/bar_round_gloss_large_m.png-2bdda66b26030dafe071d40853de89a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.png-2bdda66b26030dafe071d40853de89a7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_r.png new file mode 100644 index 0000000..a0abe05 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_r.png.import new file mode 100644 index 0000000..ae6e19d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjt8vvem84uad" +path="res://.godot/imported/bar_round_gloss_large_r.png-f03d31f20bc329815a078c77c300c339.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.png-f03d31f20bc329815a078c77c300c339.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_square.png new file mode 100644 index 0000000..4be44c2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_square.png.import new file mode 100644 index 0000000..168bd06 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg3klcqxinj8m" +path="res://.godot/imported/bar_round_gloss_large_square.png-9aca424b45f30efcba5f504be09fd6de.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.png-9aca424b45f30efcba5f504be09fd6de.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small.png new file mode 100644 index 0000000..6892532 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small.png.import new file mode 100644 index 0000000..ecdfa73 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt4e6pnn2ygk0" +path="res://.godot/imported/bar_round_gloss_small.png-e5d464f2cf7c0feccfd13e737a84d58e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small.png" +dest_files=["res://.godot/imported/bar_round_gloss_small.png-e5d464f2cf7c0feccfd13e737a84d58e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_l.png new file mode 100644 index 0000000..f070955 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_l.png.import new file mode 100644 index 0000000..7167e9d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s4trbplq0rve" +path="res://.godot/imported/bar_round_gloss_small_l.png-f1f5e0ba7cc7f2a9f904ab321be9e08d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.png-f1f5e0ba7cc7f2a9f904ab321be9e08d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_m.png new file mode 100644 index 0000000..c9b5493 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_m.png.import new file mode 100644 index 0000000..48ab69a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxbysyd8rl668" +path="res://.godot/imported/bar_round_gloss_small_m.png-ddbedea024ac2903ceec575d6e5ddff3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.png-ddbedea024ac2903ceec575d6e5ddff3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_r.png new file mode 100644 index 0000000..2a6c541 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_r.png.import new file mode 100644 index 0000000..d8b66b7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wvvxtxou8emr" +path="res://.godot/imported/bar_round_gloss_small_r.png-5b03efae3ea5d8e8923fb0de79d4e442.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.png-5b03efae3ea5d8e8923fb0de79d4e442.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_square.png new file mode 100644 index 0000000..7e4e0f3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_square.png.import new file mode 100644 index 0000000..42622f0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cr17kggebu4pn" +path="res://.godot/imported/bar_round_gloss_small_square.png-74444fb9fc81c137607f63e98514a891.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.png-74444fb9fc81c137607f63e98514a891.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large.png new file mode 100644 index 0000000..3f9f8fa Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large.png.import new file mode 100644 index 0000000..10919b3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coav8cqdjfovd" +path="res://.godot/imported/bar_round_large.png-d929c217962b3638558c71862a7a4a81.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large.png" +dest_files=["res://.godot/imported/bar_round_large.png-d929c217962b3638558c71862a7a4a81.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_l.png new file mode 100644 index 0000000..b840969 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_l.png.import new file mode 100644 index 0000000..8775f40 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cspyvo0vdqo27" +path="res://.godot/imported/bar_round_large_l.png-e1c9e358eeb477594d7fd1a6291904ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_l.png" +dest_files=["res://.godot/imported/bar_round_large_l.png-e1c9e358eeb477594d7fd1a6291904ac.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_m.png new file mode 100644 index 0000000..a76299d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_m.png.import new file mode 100644 index 0000000..1e62da0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f4dgdguc7pq7" +path="res://.godot/imported/bar_round_large_m.png-c9a771dbb89f28b14f32c9bbc9ff4e18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_m.png" +dest_files=["res://.godot/imported/bar_round_large_m.png-c9a771dbb89f28b14f32c9bbc9ff4e18.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_r.png new file mode 100644 index 0000000..ef1fe92 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_r.png.import new file mode 100644 index 0000000..65fa2ce --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k7fed2s6p54r" +path="res://.godot/imported/bar_round_large_r.png-0afc9e1703717f5b720329ff553cb9d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_r.png" +dest_files=["res://.godot/imported/bar_round_large_r.png-0afc9e1703717f5b720329ff553cb9d8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_square.png new file mode 100644 index 0000000..ac7bfab Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_square.png.import new file mode 100644 index 0000000..108f430 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0v3ietofv6aa" +path="res://.godot/imported/bar_round_large_square.png-523809388c3c16a92d48056c7ee4f743.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_large_square.png" +dest_files=["res://.godot/imported/bar_round_large_square.png-523809388c3c16a92d48056c7ee4f743.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small.png new file mode 100644 index 0000000..c41c363 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small.png.import new file mode 100644 index 0000000..77a458b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcq22edsr43cm" +path="res://.godot/imported/bar_round_small.png-3e6bd122e73c76c6076ed063f1772ea0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small.png" +dest_files=["res://.godot/imported/bar_round_small.png-3e6bd122e73c76c6076ed063f1772ea0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_l.png new file mode 100644 index 0000000..a822846 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_l.png.import new file mode 100644 index 0000000..8b38c78 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jrt5e65gmwaa" +path="res://.godot/imported/bar_round_small_l.png-96b2cba3913ebd25c4992243231a4508.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_l.png" +dest_files=["res://.godot/imported/bar_round_small_l.png-96b2cba3913ebd25c4992243231a4508.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_m.png new file mode 100644 index 0000000..8ddadf9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_m.png.import new file mode 100644 index 0000000..b9bb568 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pk84jom5sl6j" +path="res://.godot/imported/bar_round_small_m.png-dadf0129b266c41824faeede8244deaa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_m.png" +dest_files=["res://.godot/imported/bar_round_small_m.png-dadf0129b266c41824faeede8244deaa.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_r.png new file mode 100644 index 0000000..f16e136 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_r.png.import new file mode 100644 index 0000000..15de610 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5w18na5qhrqy" +path="res://.godot/imported/bar_round_small_r.png-9ff1e490c884e21b9bc6dcd548f64766.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_r.png" +dest_files=["res://.godot/imported/bar_round_small_r.png-9ff1e490c884e21b9bc6dcd548f64766.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_square.png new file mode 100644 index 0000000..371c83b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_square.png.import new file mode 100644 index 0000000..8482b98 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baussg3rsac5p" +path="res://.godot/imported/bar_round_small_square.png-4fe9b186fff4668400b2f7e9510dc79a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_round_small_square.png" +dest_files=["res://.godot/imported/bar_round_small_square.png-4fe9b186fff4668400b2f7e9510dc79a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large.png new file mode 100644 index 0000000..6e805db Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large.png.import new file mode 100644 index 0000000..1fc037e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkdkffbvje0ee" +path="res://.godot/imported/bar_square_gloss_large.png-948743bba7f754f905d5f3fa1a890817.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large.png" +dest_files=["res://.godot/imported/bar_square_gloss_large.png-948743bba7f754f905d5f3fa1a890817.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_l.png new file mode 100644 index 0000000..eb171fd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_l.png.import new file mode 100644 index 0000000..18744ae --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnit5ut7jmqea" +path="res://.godot/imported/bar_square_gloss_large_l.png-4f4409de66f258aceb51fa421665caf9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.png-4f4409de66f258aceb51fa421665caf9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_m.png new file mode 100644 index 0000000..15e966c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_m.png.import new file mode 100644 index 0000000..d450c89 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfp5mdvv53vqw" +path="res://.godot/imported/bar_square_gloss_large_m.png-c19e9dbebe77d1eabbb625479b7c883d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.png-c19e9dbebe77d1eabbb625479b7c883d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_r.png new file mode 100644 index 0000000..54a8722 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_r.png.import new file mode 100644 index 0000000..bba08f5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3eutyo4ovjjj" +path="res://.godot/imported/bar_square_gloss_large_r.png-2462a20eb9380cce351ec246849e6d19.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.png-2462a20eb9380cce351ec246849e6d19.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_square.png new file mode 100644 index 0000000..b387a3b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_square.png.import new file mode 100644 index 0000000..93ecf40 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxe8kn16uf5wy" +path="res://.godot/imported/bar_square_gloss_large_square.png-a7a3a7183193c20c08c865f9f88a7f3e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.png-a7a3a7183193c20c08c865f9f88a7f3e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small.png new file mode 100644 index 0000000..5d5d3d7 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small.png.import new file mode 100644 index 0000000..e7818ec --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fnnrkej2me25" +path="res://.godot/imported/bar_square_gloss_small.png-322dae36ca516a93c0d31adeaf99c2b4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small.png" +dest_files=["res://.godot/imported/bar_square_gloss_small.png-322dae36ca516a93c0d31adeaf99c2b4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_l.png new file mode 100644 index 0000000..8084267 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_l.png.import new file mode 100644 index 0000000..7fdddc5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ycw16ejihhm8" +path="res://.godot/imported/bar_square_gloss_small_l.png-ed48284422c8e2a5167833e8288ba92d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.png-ed48284422c8e2a5167833e8288ba92d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_m.png new file mode 100644 index 0000000..c9b5493 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_m.png.import new file mode 100644 index 0000000..04842d6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://48ip7wl3tya1" +path="res://.godot/imported/bar_square_gloss_small_m.png-9007013c8278fb8f5725be507420b932.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.png-9007013c8278fb8f5725be507420b932.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_r.png new file mode 100644 index 0000000..e770111 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_r.png.import new file mode 100644 index 0000000..ec4d12a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://prf618wotuan" +path="res://.godot/imported/bar_square_gloss_small_r.png-fd6be3f1f06cd2b968180a7df1b7c58a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.png-fd6be3f1f06cd2b968180a7df1b7c58a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_square.png new file mode 100644 index 0000000..fe5c43e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_square.png.import new file mode 100644 index 0000000..d9be585 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ujhbnt4a5m7p" +path="res://.godot/imported/bar_square_gloss_small_square.png-35017b66e1d39d1fa2bf1a0081ce0ec9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.png-35017b66e1d39d1fa2bf1a0081ce0ec9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large.png new file mode 100644 index 0000000..6f7eee9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large.png.import new file mode 100644 index 0000000..7d1cdcd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://eyuktdp8jbeg" +path="res://.godot/imported/bar_square_large.png-5637fe702be6aea79673124f552aaa8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large.png" +dest_files=["res://.godot/imported/bar_square_large.png-5637fe702be6aea79673124f552aaa8d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_l.png new file mode 100644 index 0000000..369b51d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_l.png.import new file mode 100644 index 0000000..288bf1f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsb04acmmvrpp" +path="res://.godot/imported/bar_square_large_l.png-64fc2ef2b695705db4b787e6bdf84968.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_l.png" +dest_files=["res://.godot/imported/bar_square_large_l.png-64fc2ef2b695705db4b787e6bdf84968.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_m.png new file mode 100644 index 0000000..a76299d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_m.png.import new file mode 100644 index 0000000..3ca8d96 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h3cvu73o2c0v" +path="res://.godot/imported/bar_square_large_m.png-7c59f6e7898bdd36be3e10afc3b63cd9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_m.png" +dest_files=["res://.godot/imported/bar_square_large_m.png-7c59f6e7898bdd36be3e10afc3b63cd9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_r.png new file mode 100644 index 0000000..68c406c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_r.png.import new file mode 100644 index 0000000..fecf039 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://varimfmf1qqh" +path="res://.godot/imported/bar_square_large_r.png-6853d533971fdaf82139defd96357326.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_r.png" +dest_files=["res://.godot/imported/bar_square_large_r.png-6853d533971fdaf82139defd96357326.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_square.png new file mode 100644 index 0000000..16bd510 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_square.png.import new file mode 100644 index 0000000..83e68e5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gb6y775emrl0" +path="res://.godot/imported/bar_square_large_square.png-b761c25a925405167c2d1f0b3ebe1d0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_large_square.png" +dest_files=["res://.godot/imported/bar_square_large_square.png-b761c25a925405167c2d1f0b3ebe1d0f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small.png new file mode 100644 index 0000000..28dd76b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small.png.import new file mode 100644 index 0000000..cbb8470 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7xcexpecypmj" +path="res://.godot/imported/bar_square_small.png-eddde91cd8c9a7728b3adc94f0afe2e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small.png" +dest_files=["res://.godot/imported/bar_square_small.png-eddde91cd8c9a7728b3adc94f0afe2e8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_l.png new file mode 100644 index 0000000..b768206 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_l.png.import new file mode 100644 index 0000000..64262ae --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkk471jw2qdg1" +path="res://.godot/imported/bar_square_small_l.png-d62a4cb71c940d16e2d31402c9a3a9c9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_l.png" +dest_files=["res://.godot/imported/bar_square_small_l.png-d62a4cb71c940d16e2d31402c9a3a9c9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_m.png new file mode 100644 index 0000000..8ddadf9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_m.png.import new file mode 100644 index 0000000..8995b59 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5vvs5ycb2t64" +path="res://.godot/imported/bar_square_small_m.png-25d3548e96e6125ec9045bbcc794483f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_m.png" +dest_files=["res://.godot/imported/bar_square_small_m.png-25d3548e96e6125ec9045bbcc794483f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_r.png new file mode 100644 index 0000000..b51cb43 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_r.png.import new file mode 100644 index 0000000..fdc1aed --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://craojfwy54xgj" +path="res://.godot/imported/bar_square_small_r.png-2e3eac0a122990d69575480bd103bfad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_r.png" +dest_files=["res://.godot/imported/bar_square_small_r.png-2e3eac0a122990d69575480bd103bfad.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_square.png new file mode 100644 index 0000000..3443872 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_square.png.import new file mode 100644 index 0000000..24e33cf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b34bshml4b8ru" +path="res://.godot/imported/bar_square_small_square.png-55e8d8f57d88bd0a3eb5b864b1d780a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/bar_square_small_square.png" +dest_files=["res://.godot/imported/bar_square_small_square.png-55e8d8f57d88bd0a3eb5b864b1d780a4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle.png new file mode 100644 index 0000000..6a50259 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle.png.import new file mode 100644 index 0000000..ddf9b15 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b24584sge14i1" +path="res://.godot/imported/button_square_header_blade_rectangle.png-3e86f2d1c096279bfa236dca54d19378.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.png-3e86f2d1c096279bfa236dca54d19378.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle_screws.png new file mode 100644 index 0000000..8000fbf Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle_screws.png.import new file mode 100644 index 0000000..2b2283f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chtm62of68uow" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.png-972d8ad8bbf1c67a2e8bb2f5697eade7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.png-972d8ad8bbf1c67a2e8bb2f5697eade7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square.png new file mode 100644 index 0000000..6b98434 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square.png.import new file mode 100644 index 0000000..66c1e6e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bauvjdraq5pyq" +path="res://.godot/imported/button_square_header_blade_square.png-709b67fa5b63c53bd61873f25954beea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square.png" +dest_files=["res://.godot/imported/button_square_header_blade_square.png-709b67fa5b63c53bd61873f25954beea.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square_screws.png new file mode 100644 index 0000000..1d5c2d3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square_screws.png.import new file mode 100644 index 0000000..df445b9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx3wp3aunkdnq" +path="res://.godot/imported/button_square_header_blade_square_screws.png-a1bcb6a63d69b775d2a16f5a403ca17e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_blade_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.png-a1bcb6a63d69b775d2a16f5a403ca17e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle.png new file mode 100644 index 0000000..647e471 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle.png.import new file mode 100644 index 0000000..6009422 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnw4s2ro4h1fm" +path="res://.godot/imported/button_square_header_large_rectangle.png-df34fe51c54504877aa4a6df9d072d4e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.png-df34fe51c54504877aa4a6df9d072d4e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle_screws.png new file mode 100644 index 0000000..efa1259 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle_screws.png.import new file mode 100644 index 0000000..d3f022a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sobm1mkle0k4" +path="res://.godot/imported/button_square_header_large_rectangle_screws.png-d376233cd3b1c2186e3bf2b62d79b548.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.png-d376233cd3b1c2186e3bf2b62d79b548.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square.png new file mode 100644 index 0000000..fc10394 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square.png.import new file mode 100644 index 0000000..754f419 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byh5wni8ekeh8" +path="res://.godot/imported/button_square_header_large_square.png-5a759f341aa623f0a36b4afc7625166d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square.png" +dest_files=["res://.godot/imported/button_square_header_large_square.png-5a759f341aa623f0a36b4afc7625166d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square_screws.png new file mode 100644 index 0000000..83f0485 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square_screws.png.import new file mode 100644 index 0000000..660e156 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qvlkourckode" +path="res://.godot/imported/button_square_header_large_square_screws.png-db84246531fe8e2d3b0fab248ae319dd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_large_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.png-db84246531fe8e2d3b0fab248ae319dd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle.png new file mode 100644 index 0000000..02d4537 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle.png.import new file mode 100644 index 0000000..de199b3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkce82ast66to" +path="res://.godot/imported/button_square_header_notch_rectangle.png-80ae701f5e38d6289ebdd1145eb6ca25.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.png-80ae701f5e38d6289ebdd1145eb6ca25.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle_screws.png new file mode 100644 index 0000000..85e7418 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle_screws.png.import new file mode 100644 index 0000000..ac18693 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgl87ti26xubi" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.png-5ccd730b29dc78f1a3aa384d15e09798.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.png-5ccd730b29dc78f1a3aa384d15e09798.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square.png new file mode 100644 index 0000000..0d715bb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square.png.import new file mode 100644 index 0000000..eadced3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd67emf3pl6gp" +path="res://.godot/imported/button_square_header_notch_square.png-7407a38a5bdc601503da9f691036ef2d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square.png" +dest_files=["res://.godot/imported/button_square_header_notch_square.png-7407a38a5bdc601503da9f691036ef2d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square_screws.png new file mode 100644 index 0000000..33956d9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square_screws.png.import new file mode 100644 index 0000000..19c7bca --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://22sykqhg77wo" +path="res://.godot/imported/button_square_header_notch_square_screws.png-e4c2e5d70fa1ea91161ed4301ab4ec6a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_notch_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.png-e4c2e5d70fa1ea91161ed4301ab4ec6a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle.png new file mode 100644 index 0000000..501c3dd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle.png.import new file mode 100644 index 0000000..e2093a0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c72kleiatkq3v" +path="res://.godot/imported/button_square_header_small_rectangle.png-d187050fbfd24f065d58d63082000e99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.png-d187050fbfd24f065d58d63082000e99.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle_screws.png new file mode 100644 index 0000000..c62fd72 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle_screws.png.import new file mode 100644 index 0000000..f33cef1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cccyf4x7npr3v" +path="res://.godot/imported/button_square_header_small_rectangle_screws.png-022e365a720aed920e7dfe5907a6520d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.png-022e365a720aed920e7dfe5907a6520d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square.png new file mode 100644 index 0000000..68d32d6 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square.png.import new file mode 100644 index 0000000..68b60e5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfeaclgsnj7yv" +path="res://.godot/imported/button_square_header_small_square.png-589429137a14869098612a281458446e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square.png" +dest_files=["res://.godot/imported/button_square_header_small_square.png-589429137a14869098612a281458446e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square_screws.png new file mode 100644 index 0000000..ab5e94f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square_screws.png.import new file mode 100644 index 0000000..9563d6b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://uto04hak8kk5" +path="res://.godot/imported/button_square_header_small_square_screws.png-07052c4d6114960150d0263f74f752d5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/button_square_header_small_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.png-07052c4d6114960150d0263f74f752d5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_a.png new file mode 100644 index 0000000..e69fd0c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_a.png.import new file mode 100644 index 0000000..361042d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx8lt75uvy81k" +path="res://.godot/imported/crosshair_color_a.png-afcde69c4690bd76983fa7c3391ef606.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_a.png" +dest_files=["res://.godot/imported/crosshair_color_a.png-afcde69c4690bd76983fa7c3391ef606.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_b.png new file mode 100644 index 0000000..0f5dcd8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_b.png.import new file mode 100644 index 0000000..a95d3c3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjistdbxowc48" +path="res://.godot/imported/crosshair_color_b.png-6b3a28d72a74c164e02658e20e98fb6d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_b.png" +dest_files=["res://.godot/imported/crosshair_color_b.png-6b3a28d72a74c164e02658e20e98fb6d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_c.png new file mode 100644 index 0000000..d402d5e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_c.png.import new file mode 100644 index 0000000..3998650 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byq6hqin0hrd7" +path="res://.godot/imported/crosshair_color_c.png-046f5530d646e5db19ba7b6d2f1dd329.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_c.png" +dest_files=["res://.godot/imported/crosshair_color_c.png-046f5530d646e5db19ba7b6d2f1dd329.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_d.png new file mode 100644 index 0000000..edd4005 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_d.png.import new file mode 100644 index 0000000..f9b8310 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diuqg77rvstyn" +path="res://.godot/imported/crosshair_color_d.png-5db9d8182cfeab7b019256cceb627047.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Default/crosshair_color_d.png" +dest_files=["res://.godot/imported/crosshair_color_d.png-5db9d8182cfeab7b019256cceb627047.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large.png new file mode 100644 index 0000000..4cadef5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large.png.import new file mode 100644 index 0000000..74c2886 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2h7e4xavpxnv" +path="res://.godot/imported/bar_round_gloss_large.png-beca7aca9ba3b7fff01c1dd34e7f7980.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large.png" +dest_files=["res://.godot/imported/bar_round_gloss_large.png-beca7aca9ba3b7fff01c1dd34e7f7980.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_l.png new file mode 100644 index 0000000..dbc55c9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_l.png.import new file mode 100644 index 0000000..4fe8885 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxwrakflxdadj" +path="res://.godot/imported/bar_round_gloss_large_l.png-4f9649876f8151f3fbcf2cf7db9e7e57.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.png-4f9649876f8151f3fbcf2cf7db9e7e57.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_m.png new file mode 100644 index 0000000..e2fbe80 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_m.png.import new file mode 100644 index 0000000..6d08ad6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7jwg660g205c" +path="res://.godot/imported/bar_round_gloss_large_m.png-0c37f41dcc8f192eb316c0570a9300d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.png-0c37f41dcc8f192eb316c0570a9300d8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_r.png new file mode 100644 index 0000000..2872bb7 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_r.png.import new file mode 100644 index 0000000..da0009c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t2eiwfjyhl7o" +path="res://.godot/imported/bar_round_gloss_large_r.png-f91f66bd6c64b6715c1fccb94192aaac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.png-f91f66bd6c64b6715c1fccb94192aaac.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_square.png new file mode 100644 index 0000000..68c755b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_square.png.import new file mode 100644 index 0000000..219c2ae --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rucubtfeykeh" +path="res://.godot/imported/bar_round_gloss_large_square.png-a1b8a377937dba52dfc15c1b024b96d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.png-a1b8a377937dba52dfc15c1b024b96d4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small.png new file mode 100644 index 0000000..68a5dcb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small.png.import new file mode 100644 index 0000000..51f90ac --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy2trwu7tnlff" +path="res://.godot/imported/bar_round_gloss_small.png-cd6c44615614d6752781e35eb025f8f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small.png" +dest_files=["res://.godot/imported/bar_round_gloss_small.png-cd6c44615614d6752781e35eb025f8f2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_l.png new file mode 100644 index 0000000..c1bd88e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_l.png.import new file mode 100644 index 0000000..5990ed9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xcbbwuuyek7f" +path="res://.godot/imported/bar_round_gloss_small_l.png-c530c809b7ae0a1ed5db64bf92d67af8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.png-c530c809b7ae0a1ed5db64bf92d67af8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_m.png new file mode 100644 index 0000000..ea5f899 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_m.png.import new file mode 100644 index 0000000..c51ccb0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwf4h8gg5h44x" +path="res://.godot/imported/bar_round_gloss_small_m.png-748da3cafd75ffd3cf424c90462a009b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.png-748da3cafd75ffd3cf424c90462a009b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_r.png new file mode 100644 index 0000000..0b1df7a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_r.png.import new file mode 100644 index 0000000..de6fb2f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcgjvcqm01os3" +path="res://.godot/imported/bar_round_gloss_small_r.png-6448133805c27f785db728e61bc02e1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.png-6448133805c27f785db728e61bc02e1b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_square.png new file mode 100644 index 0000000..4ad96f2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_square.png.import new file mode 100644 index 0000000..4ba2319 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbv5w6n810ht8" +path="res://.godot/imported/bar_round_gloss_small_square.png-15a3b3f7033230cd967e1407ff520fc3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.png-15a3b3f7033230cd967e1407ff520fc3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large.png new file mode 100644 index 0000000..2d66a8b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large.png.import new file mode 100644 index 0000000..de4ddda --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p4q4samtmu7f" +path="res://.godot/imported/bar_round_large.png-181ca1fde6d25a957222cbc73f0bb3a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large.png" +dest_files=["res://.godot/imported/bar_round_large.png-181ca1fde6d25a957222cbc73f0bb3a2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_l.png new file mode 100644 index 0000000..6f51013 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_l.png.import new file mode 100644 index 0000000..db2657e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://34d180l3sjwc" +path="res://.godot/imported/bar_round_large_l.png-78bcb2bd3e5cc6ab74558cbb852f4a02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_l.png" +dest_files=["res://.godot/imported/bar_round_large_l.png-78bcb2bd3e5cc6ab74558cbb852f4a02.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_m.png new file mode 100644 index 0000000..2b33d9c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_m.png.import new file mode 100644 index 0000000..0dc1d7e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5wu7fbs41ogo" +path="res://.godot/imported/bar_round_large_m.png-5c6ffc8fef740622803f3f010d228834.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_m.png" +dest_files=["res://.godot/imported/bar_round_large_m.png-5c6ffc8fef740622803f3f010d228834.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_r.png new file mode 100644 index 0000000..3bae349 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_r.png.import new file mode 100644 index 0000000..89b9eda --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baub8mevqyuhl" +path="res://.godot/imported/bar_round_large_r.png-5ea5649e2ef9e48e34f4f9fb6c8c7d2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_r.png" +dest_files=["res://.godot/imported/bar_round_large_r.png-5ea5649e2ef9e48e34f4f9fb6c8c7d2c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_square.png new file mode 100644 index 0000000..cc2f99b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_square.png.import new file mode 100644 index 0000000..c70f620 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2ck0t70texi8" +path="res://.godot/imported/bar_round_large_square.png-97e78e61add01c8da53be440e8abafbf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_large_square.png" +dest_files=["res://.godot/imported/bar_round_large_square.png-97e78e61add01c8da53be440e8abafbf.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small.png new file mode 100644 index 0000000..2f6c731 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small.png.import new file mode 100644 index 0000000..cd21d43 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnj4jcurq8m47" +path="res://.godot/imported/bar_round_small.png-6dd85dd543beec629420ce60fcdd6bcc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small.png" +dest_files=["res://.godot/imported/bar_round_small.png-6dd85dd543beec629420ce60fcdd6bcc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_l.png new file mode 100644 index 0000000..40aaeb9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_l.png.import new file mode 100644 index 0000000..b583436 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfpgum68fla3t" +path="res://.godot/imported/bar_round_small_l.png-3315ce611833e4e167c36c021a6da446.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_l.png" +dest_files=["res://.godot/imported/bar_round_small_l.png-3315ce611833e4e167c36c021a6da446.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_m.png new file mode 100644 index 0000000..d785dc4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_m.png.import new file mode 100644 index 0000000..fc70f7b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fb4i55a8hkk0" +path="res://.godot/imported/bar_round_small_m.png-ca82fe21d5c162cefa82b3d9df0881f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_m.png" +dest_files=["res://.godot/imported/bar_round_small_m.png-ca82fe21d5c162cefa82b3d9df0881f3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_r.png new file mode 100644 index 0000000..503db9a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_r.png.import new file mode 100644 index 0000000..d4c2ace --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n1fjkbg086jk" +path="res://.godot/imported/bar_round_small_r.png-6e20dc886ed30e63e1f0dab4fa593a5c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_r.png" +dest_files=["res://.godot/imported/bar_round_small_r.png-6e20dc886ed30e63e1f0dab4fa593a5c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_square.png new file mode 100644 index 0000000..da3f061 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_square.png.import new file mode 100644 index 0000000..fb6c1a6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv1q782p24k16" +path="res://.godot/imported/bar_round_small_square.png-1929a2402facdbc0daba0afe017297aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_round_small_square.png" +dest_files=["res://.godot/imported/bar_round_small_square.png-1929a2402facdbc0daba0afe017297aa.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large.png new file mode 100644 index 0000000..1887dd2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large.png.import new file mode 100644 index 0000000..4043666 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4dguj2a1x3p1" +path="res://.godot/imported/bar_square_gloss_large.png-82d1b06512d9b2eb02abc6fb3d4dab1f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large.png" +dest_files=["res://.godot/imported/bar_square_gloss_large.png-82d1b06512d9b2eb02abc6fb3d4dab1f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_l.png new file mode 100644 index 0000000..69452fd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_l.png.import new file mode 100644 index 0000000..6cea30c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xrd8y2bbynt7" +path="res://.godot/imported/bar_square_gloss_large_l.png-8647a0335534063c4411f71290fe7eb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.png-8647a0335534063c4411f71290fe7eb7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_m.png new file mode 100644 index 0000000..e2fbe80 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_m.png.import new file mode 100644 index 0000000..fa3f541 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfvpyprk2h637" +path="res://.godot/imported/bar_square_gloss_large_m.png-c8ec6f0c629b2fffae1b9a59a2535c2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.png-c8ec6f0c629b2fffae1b9a59a2535c2c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_r.png new file mode 100644 index 0000000..53648f9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_r.png.import new file mode 100644 index 0000000..8571312 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dndwe5f032jgl" +path="res://.godot/imported/bar_square_gloss_large_r.png-82bac8a41eda09b0902321026b14a9a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.png-82bac8a41eda09b0902321026b14a9a4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_square.png new file mode 100644 index 0000000..63b8497 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_square.png.import new file mode 100644 index 0000000..bf09f4e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw511xl6o833x" +path="res://.godot/imported/bar_square_gloss_large_square.png-3bd80d1836028d41ddbd08f08c15d2d4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.png-3bd80d1836028d41ddbd08f08c15d2d4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small.png new file mode 100644 index 0000000..b2e3512 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small.png.import new file mode 100644 index 0000000..5438946 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gdtd7oa8736" +path="res://.godot/imported/bar_square_gloss_small.png-11c47e5eef4b5186c9f42d820054376d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small.png" +dest_files=["res://.godot/imported/bar_square_gloss_small.png-11c47e5eef4b5186c9f42d820054376d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_l.png new file mode 100644 index 0000000..a69d9fb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_l.png.import new file mode 100644 index 0000000..bac8e6d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtmfuvtq1wjqq" +path="res://.godot/imported/bar_square_gloss_small_l.png-ea5a25ddf4fd78e11aa601f39b97709e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.png-ea5a25ddf4fd78e11aa601f39b97709e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_m.png new file mode 100644 index 0000000..ea5f899 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_m.png.import new file mode 100644 index 0000000..8a3ce80 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d28sgg3032h0g" +path="res://.godot/imported/bar_square_gloss_small_m.png-a73afb3bfd7e9c0a88d235bb1a6f5dd6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.png-a73afb3bfd7e9c0a88d235bb1a6f5dd6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_r.png new file mode 100644 index 0000000..6bb783b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_r.png.import new file mode 100644 index 0000000..180177c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bm1plvxn188cn" +path="res://.godot/imported/bar_square_gloss_small_r.png-03483edd07ac1284844a32ceb1a70014.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.png-03483edd07ac1284844a32ceb1a70014.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_square.png new file mode 100644 index 0000000..ef17e1e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_square.png.import new file mode 100644 index 0000000..2ecf72e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dywb1jy5f70mk" +path="res://.godot/imported/bar_square_gloss_small_square.png-c1bcb9895f3ef03972b98dc1a1160ab0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.png-c1bcb9895f3ef03972b98dc1a1160ab0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large.png new file mode 100644 index 0000000..7a31d0d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large.png.import new file mode 100644 index 0000000..0292193 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6y8y3ixyb88m" +path="res://.godot/imported/bar_square_large.png-d22840ba24e05b33048cb5d3781ccb2e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large.png" +dest_files=["res://.godot/imported/bar_square_large.png-d22840ba24e05b33048cb5d3781ccb2e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_l.png new file mode 100644 index 0000000..fed099a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_l.png.import new file mode 100644 index 0000000..9904adc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pumbt7wcyutx" +path="res://.godot/imported/bar_square_large_l.png-2da2cfa0dfa4c263b07af8cd7c475c33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_l.png" +dest_files=["res://.godot/imported/bar_square_large_l.png-2da2cfa0dfa4c263b07af8cd7c475c33.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_m.png new file mode 100644 index 0000000..2b33d9c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_m.png.import new file mode 100644 index 0000000..88273ab --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv5hdjymsos7i" +path="res://.godot/imported/bar_square_large_m.png-7255a80f23d0b08f665722c5e2e6e578.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_m.png" +dest_files=["res://.godot/imported/bar_square_large_m.png-7255a80f23d0b08f665722c5e2e6e578.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_r.png new file mode 100644 index 0000000..c118587 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_r.png.import new file mode 100644 index 0000000..ca188b9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f64q347uxbj0" +path="res://.godot/imported/bar_square_large_r.png-1bd72be5439e4054c83d52e96e087888.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_r.png" +dest_files=["res://.godot/imported/bar_square_large_r.png-1bd72be5439e4054c83d52e96e087888.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_square.png new file mode 100644 index 0000000..76f6ded Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_square.png.import new file mode 100644 index 0000000..c104a01 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhiejypxh38xu" +path="res://.godot/imported/bar_square_large_square.png-2ef7fa46e91714e999f202ee919e3c15.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_large_square.png" +dest_files=["res://.godot/imported/bar_square_large_square.png-2ef7fa46e91714e999f202ee919e3c15.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small.png new file mode 100644 index 0000000..f2825c2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small.png.import new file mode 100644 index 0000000..0a447da --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c74pviklexv47" +path="res://.godot/imported/bar_square_small.png-851041cfc404fc322ed893d512864473.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small.png" +dest_files=["res://.godot/imported/bar_square_small.png-851041cfc404fc322ed893d512864473.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_l.png new file mode 100644 index 0000000..da17db9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_l.png.import new file mode 100644 index 0000000..4ae1ce9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g8pnqiey6hhx" +path="res://.godot/imported/bar_square_small_l.png-2a5d67e96f2d951a5f7ef61bd4981af7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_l.png" +dest_files=["res://.godot/imported/bar_square_small_l.png-2a5d67e96f2d951a5f7ef61bd4981af7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_m.png new file mode 100644 index 0000000..d785dc4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_m.png.import new file mode 100644 index 0000000..24a7716 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxmu6k1wd8c4d" +path="res://.godot/imported/bar_square_small_m.png-c7ef51ab68d7d11af8dfe9508e238c88.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_m.png" +dest_files=["res://.godot/imported/bar_square_small_m.png-c7ef51ab68d7d11af8dfe9508e238c88.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_r.png new file mode 100644 index 0000000..3e082bd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_r.png.import new file mode 100644 index 0000000..398ac3a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du80l3l5vl5d5" +path="res://.godot/imported/bar_square_small_r.png-1f25fff1372cdd48f8681aafcd6cb5a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_r.png" +dest_files=["res://.godot/imported/bar_square_small_r.png-1f25fff1372cdd48f8681aafcd6cb5a9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_square.png new file mode 100644 index 0000000..70d750f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_square.png.import new file mode 100644 index 0000000..3b5c6a7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da40rpdcjtysf" +path="res://.godot/imported/bar_square_small_square.png-d3b61d0128f531fcf2a77cf68e194ee5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/bar_square_small_square.png" +dest_files=["res://.godot/imported/bar_square_small_square.png-d3b61d0128f531fcf2a77cf68e194ee5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle.png new file mode 100644 index 0000000..d1da151 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle.png.import new file mode 100644 index 0000000..5cc5fa1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://koukv46lgmgx" +path="res://.godot/imported/button_square_header_blade_rectangle.png-1aa1a82ee94b32611744ea11c5ee7222.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.png-1aa1a82ee94b32611744ea11c5ee7222.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle_screws.png new file mode 100644 index 0000000..bedf6b3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle_screws.png.import new file mode 100644 index 0000000..89fa6fd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fydj6rqgfug8" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.png-58d30a2c1987eb4df695eef3781b2ddc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.png-58d30a2c1987eb4df695eef3781b2ddc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square.png new file mode 100644 index 0000000..cbad58a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square.png.import new file mode 100644 index 0000000..9e08ed7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddiedvcp4piya" +path="res://.godot/imported/button_square_header_blade_square.png-511e034f6a25eed63a8d884cfe040604.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square.png" +dest_files=["res://.godot/imported/button_square_header_blade_square.png-511e034f6a25eed63a8d884cfe040604.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square_screws.png new file mode 100644 index 0000000..af4a6d6 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square_screws.png.import new file mode 100644 index 0000000..72904c9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvgkab2dtr1fk" +path="res://.godot/imported/button_square_header_blade_square_screws.png-fb042b1001170bcd6e1aed6bbf3fc655.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_blade_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.png-fb042b1001170bcd6e1aed6bbf3fc655.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle.png new file mode 100644 index 0000000..a372e7e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle.png.import new file mode 100644 index 0000000..97ede1f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0rf5dyhdm3h" +path="res://.godot/imported/button_square_header_large_rectangle.png-1c1d456d3e4bcb415ee197dc7af9ee94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.png-1c1d456d3e4bcb415ee197dc7af9ee94.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle_screws.png new file mode 100644 index 0000000..fbfeecf Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle_screws.png.import new file mode 100644 index 0000000..73d8b10 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ogjuel0xre27" +path="res://.godot/imported/button_square_header_large_rectangle_screws.png-24a14c068a1cad68f5191e269ed7fad0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.png-24a14c068a1cad68f5191e269ed7fad0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square.png new file mode 100644 index 0000000..ecdfc85 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square.png.import new file mode 100644 index 0000000..d3c7d4e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1nfrumyvwouv" +path="res://.godot/imported/button_square_header_large_square.png-373f2455a9169078d73478213cbacc96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square.png" +dest_files=["res://.godot/imported/button_square_header_large_square.png-373f2455a9169078d73478213cbacc96.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square_screws.png new file mode 100644 index 0000000..0d1dbe7 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square_screws.png.import new file mode 100644 index 0000000..cc93ef4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8yytbpuat013" +path="res://.godot/imported/button_square_header_large_square_screws.png-5a0bb038ba78745af9e8ac1bb88026e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_large_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.png-5a0bb038ba78745af9e8ac1bb88026e7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle.png new file mode 100644 index 0000000..786d8fe Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle.png.import new file mode 100644 index 0000000..a0053d9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpbmhpm7ljgnt" +path="res://.godot/imported/button_square_header_notch_rectangle.png-2e7e509289c653df34ab5f026e171287.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.png-2e7e509289c653df34ab5f026e171287.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle_screws.png new file mode 100644 index 0000000..b05f131 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle_screws.png.import new file mode 100644 index 0000000..9ec31f3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g2p3a5lv78yv" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.png-dcf573b2f0bbf32c26aa91da5372969e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.png-dcf573b2f0bbf32c26aa91da5372969e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square.png new file mode 100644 index 0000000..c5db87b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square.png.import new file mode 100644 index 0000000..b1ed687 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnsfnt3wg81u6" +path="res://.godot/imported/button_square_header_notch_square.png-a90647b9cfbe05fe8fdd3421d6ea0390.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square.png" +dest_files=["res://.godot/imported/button_square_header_notch_square.png-a90647b9cfbe05fe8fdd3421d6ea0390.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square_screws.png new file mode 100644 index 0000000..f2f1b17 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square_screws.png.import new file mode 100644 index 0000000..7aeee11 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cycrxxu01fxnq" +path="res://.godot/imported/button_square_header_notch_square_screws.png-6295719bd1a128dfd7aa56e3791c522e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_notch_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.png-6295719bd1a128dfd7aa56e3791c522e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle.png new file mode 100644 index 0000000..fa17ad5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle.png.import new file mode 100644 index 0000000..62cf62d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx177ysnwxeen" +path="res://.godot/imported/button_square_header_small_rectangle.png-6a151631c7a79f4b28abbd070299d768.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.png-6a151631c7a79f4b28abbd070299d768.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle_screws.png new file mode 100644 index 0000000..806a96c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle_screws.png.import new file mode 100644 index 0000000..e7a477f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbnubad0tm4oi" +path="res://.godot/imported/button_square_header_small_rectangle_screws.png-ea6451c93ab58a6a6cbeda7634d16a66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.png-ea6451c93ab58a6a6cbeda7634d16a66.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square.png new file mode 100644 index 0000000..e69eab2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square.png.import new file mode 100644 index 0000000..2523a0e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b07h1qpng1sur" +path="res://.godot/imported/button_square_header_small_square.png-e3cf524560a6e09875d48f911742c6d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square.png" +dest_files=["res://.godot/imported/button_square_header_small_square.png-e3cf524560a6e09875d48f911742c6d6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square_screws.png new file mode 100644 index 0000000..4986093 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square_screws.png.import new file mode 100644 index 0000000..af99c00 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c413we7tt2foo" +path="res://.godot/imported/button_square_header_small_square_screws.png-73f26c653aa004c31239f96a0921cd94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/button_square_header_small_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.png-73f26c653aa004c31239f96a0921cd94.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_a.png new file mode 100644 index 0000000..068b336 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_a.png.import new file mode 100644 index 0000000..23c4e8c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgorva5413rq2" +path="res://.godot/imported/crosshair_color_a.png-aefa3f24d7618864cade3e1e57b4aef3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_a.png" +dest_files=["res://.godot/imported/crosshair_color_a.png-aefa3f24d7618864cade3e1e57b4aef3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_b.png new file mode 100644 index 0000000..9ec46f3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_b.png.import new file mode 100644 index 0000000..0acb609 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxh1dffgmuigl" +path="res://.godot/imported/crosshair_color_b.png-e3967e9a3322d397989c6a87d5f5f860.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_b.png" +dest_files=["res://.godot/imported/crosshair_color_b.png-e3967e9a3322d397989c6a87d5f5f860.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_c.png new file mode 100644 index 0000000..6f7281a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_c.png.import new file mode 100644 index 0000000..07bb87f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b20ejig4pyie2" +path="res://.godot/imported/crosshair_color_c.png-aeb6e883cc3369f9962e0eebe42bd038.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_c.png" +dest_files=["res://.godot/imported/crosshair_color_c.png-aeb6e883cc3369f9962e0eebe42bd038.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_d.png new file mode 100644 index 0000000..bf87539 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_d.png.import new file mode 100644 index 0000000..8ae4fd9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doh6ti057o4wm" +path="res://.godot/imported/crosshair_color_d.png-af559415a1c952a0db2763a71e154bc3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Green/Double/crosshair_color_d.png" +dest_files=["res://.godot/imported/crosshair_color_d.png-af559415a1c952a0db2763a71e154bc3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large.png new file mode 100644 index 0000000..5988315 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large.png.import new file mode 100644 index 0000000..1547b85 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxi815kasco1y" +path="res://.godot/imported/bar_round_gloss_large.png-f8d8955306a0ab6a007a0f42cc081a4e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large.png" +dest_files=["res://.godot/imported/bar_round_gloss_large.png-f8d8955306a0ab6a007a0f42cc081a4e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_l.png new file mode 100644 index 0000000..431d98b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_l.png.import new file mode 100644 index 0000000..eb3164f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d12yy6o6dvmdu" +path="res://.godot/imported/bar_round_gloss_large_l.png-584629262984ad7d97d91b144b3c7799.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.png-584629262984ad7d97d91b144b3c7799.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_m.png new file mode 100644 index 0000000..b4c2d50 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_m.png.import new file mode 100644 index 0000000..d60f9af --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://batsvwhqppi12" +path="res://.godot/imported/bar_round_gloss_large_m.png-b3c497dc7ce23b60986884e5eb44bc31.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.png-b3c497dc7ce23b60986884e5eb44bc31.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_r.png new file mode 100644 index 0000000..619ab8b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_r.png.import new file mode 100644 index 0000000..444d408 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8cocswdm87e3" +path="res://.godot/imported/bar_round_gloss_large_r.png-49cf39f62250e0e5ef857b9b2cea7476.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.png-49cf39f62250e0e5ef857b9b2cea7476.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_square.png new file mode 100644 index 0000000..9a96fd0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_square.png.import new file mode 100644 index 0000000..0ce0f3b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m43j7d820obh" +path="res://.godot/imported/bar_round_gloss_large_square.png-031381d602d64b83016cb03d2dadff7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.png-031381d602d64b83016cb03d2dadff7e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small.png new file mode 100644 index 0000000..2c36d7c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small.png.import new file mode 100644 index 0000000..458072c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xnuqbgglqi7a" +path="res://.godot/imported/bar_round_gloss_small.png-9b3a59143382b666e93d1902d4d24cfb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small.png" +dest_files=["res://.godot/imported/bar_round_gloss_small.png-9b3a59143382b666e93d1902d4d24cfb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_l.png new file mode 100644 index 0000000..cfb5009 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_l.png.import new file mode 100644 index 0000000..0c6145f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n2r5l853dtj4" +path="res://.godot/imported/bar_round_gloss_small_l.png-9e97d665157692116ac17ae134a94b18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.png-9e97d665157692116ac17ae134a94b18.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_m.png new file mode 100644 index 0000000..3b97ca0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_m.png.import new file mode 100644 index 0000000..30b15fa --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chhl6lk7ten3k" +path="res://.godot/imported/bar_round_gloss_small_m.png-5e17ee33ac28b69d07b2358d9ef21487.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.png-5e17ee33ac28b69d07b2358d9ef21487.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_r.png new file mode 100644 index 0000000..2eedf60 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_r.png.import new file mode 100644 index 0000000..d0c6f3e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk132mx4mfmk4" +path="res://.godot/imported/bar_round_gloss_small_r.png-d91e703704f67fa2378759142f5c7bfb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.png-d91e703704f67fa2378759142f5c7bfb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_square.png new file mode 100644 index 0000000..6edb7ed Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_square.png.import new file mode 100644 index 0000000..1286f99 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://11hbqtb2xxdp" +path="res://.godot/imported/bar_round_gloss_small_square.png-861f1f562bcf44aa38e3515213e9c1f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.png-861f1f562bcf44aa38e3515213e9c1f5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large.png new file mode 100644 index 0000000..0a5219d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large.png.import new file mode 100644 index 0000000..81b4e5c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ygrpv2qkayf5" +path="res://.godot/imported/bar_round_large.png-7a3bbc9a21635cf3b7461cb58d71dbb2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large.png" +dest_files=["res://.godot/imported/bar_round_large.png-7a3bbc9a21635cf3b7461cb58d71dbb2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_l.png new file mode 100644 index 0000000..20e0103 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_l.png.import new file mode 100644 index 0000000..813b148 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2o23mwox7yjq" +path="res://.godot/imported/bar_round_large_l.png-82908e81f15a346682d3deefa0ba618c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_l.png" +dest_files=["res://.godot/imported/bar_round_large_l.png-82908e81f15a346682d3deefa0ba618c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_m.png new file mode 100644 index 0000000..5608e8f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_m.png.import new file mode 100644 index 0000000..39f89f6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bck34x56capq0" +path="res://.godot/imported/bar_round_large_m.png-d7398abe79a066920f093e9a7af2e895.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_m.png" +dest_files=["res://.godot/imported/bar_round_large_m.png-d7398abe79a066920f093e9a7af2e895.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_r.png new file mode 100644 index 0000000..4f091cc Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_r.png.import new file mode 100644 index 0000000..5c459b0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dues1cqq0kgq5" +path="res://.godot/imported/bar_round_large_r.png-384b02978a08ad4285456f019ed07eee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_r.png" +dest_files=["res://.godot/imported/bar_round_large_r.png-384b02978a08ad4285456f019ed07eee.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_square.png new file mode 100644 index 0000000..38d8e95 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_square.png.import new file mode 100644 index 0000000..79e594b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyj7geww633y0" +path="res://.godot/imported/bar_round_large_square.png-9b84102767a9c81864843728584a46f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_large_square.png" +dest_files=["res://.godot/imported/bar_round_large_square.png-9b84102767a9c81864843728584a46f9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small.png new file mode 100644 index 0000000..db2cbfa Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small.png.import new file mode 100644 index 0000000..7e90ecf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkkinlvlc3x6d" +path="res://.godot/imported/bar_round_small.png-fa9aa85a5a7dd42e98504a32ab8e1d42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small.png" +dest_files=["res://.godot/imported/bar_round_small.png-fa9aa85a5a7dd42e98504a32ab8e1d42.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_l.png new file mode 100644 index 0000000..18c9fe8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_l.png.import new file mode 100644 index 0000000..f6ac255 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bscqkgl13ufsb" +path="res://.godot/imported/bar_round_small_l.png-9bcc6b9cf2780514106152eb8761d917.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_l.png" +dest_files=["res://.godot/imported/bar_round_small_l.png-9bcc6b9cf2780514106152eb8761d917.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_m.png new file mode 100644 index 0000000..f320cc7 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_m.png.import new file mode 100644 index 0000000..d48986c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8snbof2kfmf5" +path="res://.godot/imported/bar_round_small_m.png-6346e96ce9fa29ab49e46c7fda5b379b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_m.png" +dest_files=["res://.godot/imported/bar_round_small_m.png-6346e96ce9fa29ab49e46c7fda5b379b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_r.png new file mode 100644 index 0000000..5bf87f4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_r.png.import new file mode 100644 index 0000000..4ea4474 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3rimxuht8f46" +path="res://.godot/imported/bar_round_small_r.png-ade2f19019e033e83011a527c1648b85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_r.png" +dest_files=["res://.godot/imported/bar_round_small_r.png-ade2f19019e033e83011a527c1648b85.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_square.png new file mode 100644 index 0000000..472e3de Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_square.png.import new file mode 100644 index 0000000..0261d14 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://caaa5apd1jw6e" +path="res://.godot/imported/bar_round_small_square.png-4a529bf3c2c3c418fbf163861cfe4a66.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_round_small_square.png" +dest_files=["res://.godot/imported/bar_round_small_square.png-4a529bf3c2c3c418fbf163861cfe4a66.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large.png new file mode 100644 index 0000000..2ca33da Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large.png.import new file mode 100644 index 0000000..e9a06bf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjnrj5frr25lt" +path="res://.godot/imported/bar_square_gloss_large.png-3dbcaee7b6857e67dc235547facddef0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large.png" +dest_files=["res://.godot/imported/bar_square_gloss_large.png-3dbcaee7b6857e67dc235547facddef0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_l.png new file mode 100644 index 0000000..777258c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_l.png.import new file mode 100644 index 0000000..5a9fe04 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lxv13wniltd" +path="res://.godot/imported/bar_square_gloss_large_l.png-2a008ae742fe896428acee3681fc022b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.png-2a008ae742fe896428acee3681fc022b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_m.png new file mode 100644 index 0000000..b4c2d50 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_m.png.import new file mode 100644 index 0000000..eb83bed --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj1lgcyqg0wqe" +path="res://.godot/imported/bar_square_gloss_large_m.png-4878401ae16e4d2d7e89f6097fbdacd9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.png-4878401ae16e4d2d7e89f6097fbdacd9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_r.png new file mode 100644 index 0000000..766c391 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_r.png.import new file mode 100644 index 0000000..14f9631 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6day10xr8k4l" +path="res://.godot/imported/bar_square_gloss_large_r.png-18cfd21a5039607b2ff5df020d34c7be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.png-18cfd21a5039607b2ff5df020d34c7be.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_square.png new file mode 100644 index 0000000..9ab20b5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_square.png.import new file mode 100644 index 0000000..5dc2964 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://degfc24my3s6h" +path="res://.godot/imported/bar_square_gloss_large_square.png-0f4cc822484302c227525c9023805ee3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.png-0f4cc822484302c227525c9023805ee3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small.png new file mode 100644 index 0000000..3c12d8c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small.png.import new file mode 100644 index 0000000..0a2f4b6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnwfgpokfj5pl" +path="res://.godot/imported/bar_square_gloss_small.png-42cab26ed12fdb8d8279e5e39f8aedc3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small.png" +dest_files=["res://.godot/imported/bar_square_gloss_small.png-42cab26ed12fdb8d8279e5e39f8aedc3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_l.png new file mode 100644 index 0000000..4d664dc Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_l.png.import new file mode 100644 index 0000000..def9378 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5q432mbrrdbn" +path="res://.godot/imported/bar_square_gloss_small_l.png-f95b0df0c4f99d5bef79759850fe5e52.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.png-f95b0df0c4f99d5bef79759850fe5e52.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_m.png new file mode 100644 index 0000000..3b97ca0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_m.png.import new file mode 100644 index 0000000..56f9f63 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cig3ci03uvna3" +path="res://.godot/imported/bar_square_gloss_small_m.png-6670d668ab50f71d45ee9a78851421ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.png-6670d668ab50f71d45ee9a78851421ec.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_r.png new file mode 100644 index 0000000..ca0c738 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_r.png.import new file mode 100644 index 0000000..e9a0894 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddw5phhyygxso" +path="res://.godot/imported/bar_square_gloss_small_r.png-0e220cd22b47bd9a06ef9dca2fd88502.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.png-0e220cd22b47bd9a06ef9dca2fd88502.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_square.png new file mode 100644 index 0000000..84dae4a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_square.png.import new file mode 100644 index 0000000..6608de1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfqve6eqiqwt2" +path="res://.godot/imported/bar_square_gloss_small_square.png-17d2c76dbb121c0c2e94a78949f0506f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.png-17d2c76dbb121c0c2e94a78949f0506f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large.png new file mode 100644 index 0000000..3486cf5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large.png.import new file mode 100644 index 0000000..7ceb1f8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bob3anua4j7jp" +path="res://.godot/imported/bar_square_large.png-1323c4a995bff8e91137d2dcb16b68f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large.png" +dest_files=["res://.godot/imported/bar_square_large.png-1323c4a995bff8e91137d2dcb16b68f5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_l.png new file mode 100644 index 0000000..9564d43 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_l.png.import new file mode 100644 index 0000000..fde8660 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o7s4rs0xv713" +path="res://.godot/imported/bar_square_large_l.png-5bd4090b7876f531ad1339ae06c09fd4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_l.png" +dest_files=["res://.godot/imported/bar_square_large_l.png-5bd4090b7876f531ad1339ae06c09fd4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_m.png new file mode 100644 index 0000000..5608e8f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_m.png.import new file mode 100644 index 0000000..c71fc8f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yfvrxvlqt5yc" +path="res://.godot/imported/bar_square_large_m.png-d5ed86f34d9ea3b0d22214111367bd18.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_m.png" +dest_files=["res://.godot/imported/bar_square_large_m.png-d5ed86f34d9ea3b0d22214111367bd18.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_r.png new file mode 100644 index 0000000..dd3d001 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_r.png.import new file mode 100644 index 0000000..67d1ae6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4lrdaxjt73r6" +path="res://.godot/imported/bar_square_large_r.png-2d0e01ef7bc2c960eaa686dcd28c19d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_r.png" +dest_files=["res://.godot/imported/bar_square_large_r.png-2d0e01ef7bc2c960eaa686dcd28c19d6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_square.png new file mode 100644 index 0000000..7673e7b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_square.png.import new file mode 100644 index 0000000..dc4350a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b08xbrfg303es" +path="res://.godot/imported/bar_square_large_square.png-3e9b4a452f7d7bd02640a7a6c041123a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_large_square.png" +dest_files=["res://.godot/imported/bar_square_large_square.png-3e9b4a452f7d7bd02640a7a6c041123a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small.png new file mode 100644 index 0000000..970683a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small.png.import new file mode 100644 index 0000000..21bf6cf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2rvi7jp1uwa7" +path="res://.godot/imported/bar_square_small.png-bb728e1c810bce02a3ca9dae93f0e538.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small.png" +dest_files=["res://.godot/imported/bar_square_small.png-bb728e1c810bce02a3ca9dae93f0e538.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_l.png new file mode 100644 index 0000000..57255eb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_l.png.import new file mode 100644 index 0000000..d1c7540 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buy4rlfy168s4" +path="res://.godot/imported/bar_square_small_l.png-fafd72af49edc2870556058530bb44d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_l.png" +dest_files=["res://.godot/imported/bar_square_small_l.png-fafd72af49edc2870556058530bb44d2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_m.png new file mode 100644 index 0000000..f320cc7 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_m.png.import new file mode 100644 index 0000000..c80d540 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k0xio3y6t1dg" +path="res://.godot/imported/bar_square_small_m.png-187a5568afc00a05dbe329712aee494b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_m.png" +dest_files=["res://.godot/imported/bar_square_small_m.png-187a5568afc00a05dbe329712aee494b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_r.png new file mode 100644 index 0000000..acd7467 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_r.png.import new file mode 100644 index 0000000..a608419 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bctm62y7mjcrf" +path="res://.godot/imported/bar_square_small_r.png-cfcd39e2bb1e412f73ed3a547131e0d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_r.png" +dest_files=["res://.godot/imported/bar_square_small_r.png-cfcd39e2bb1e412f73ed3a547131e0d8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_square.png new file mode 100644 index 0000000..c64e8bf Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_square.png.import new file mode 100644 index 0000000..9bd250cd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs5prim2xkwqi" +path="res://.godot/imported/bar_square_small_square.png-3f0aad1eebbc175d427229849626555e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/bar_square_small_square.png" +dest_files=["res://.godot/imported/bar_square_small_square.png-3f0aad1eebbc175d427229849626555e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle.png new file mode 100644 index 0000000..4217969 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle.png.import new file mode 100644 index 0000000..9a011a1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b23p457ds26lq" +path="res://.godot/imported/button_square_header_blade_rectangle.png-05a21a989148c450b9b89e0d94accc9a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.png-05a21a989148c450b9b89e0d94accc9a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle_screws.png new file mode 100644 index 0000000..6b1332c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle_screws.png.import new file mode 100644 index 0000000..005ca3c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d20s83s1y6pk2" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.png-4ae30de7f29aa9a1c8d57d9a26eaa2be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.png-4ae30de7f29aa9a1c8d57d9a26eaa2be.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square.png new file mode 100644 index 0000000..e12a5b9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square.png.import new file mode 100644 index 0000000..d95e6e4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8pilyduf0icq" +path="res://.godot/imported/button_square_header_blade_square.png-0962edb05dfbe6084093f90ef71f3dec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square.png" +dest_files=["res://.godot/imported/button_square_header_blade_square.png-0962edb05dfbe6084093f90ef71f3dec.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square_screws.png new file mode 100644 index 0000000..c8b8041 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square_screws.png.import new file mode 100644 index 0000000..5194491 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c71ip3utuqpk8" +path="res://.godot/imported/button_square_header_blade_square_screws.png-6af1ce37f4d4f692aa7c634eb037788d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_blade_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.png-6af1ce37f4d4f692aa7c634eb037788d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle.png new file mode 100644 index 0000000..20b65d0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle.png.import new file mode 100644 index 0000000..4defbfa --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqkpdsif6f16k" +path="res://.godot/imported/button_square_header_large_rectangle.png-52259255804d03de056689e5fb480af6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.png-52259255804d03de056689e5fb480af6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle_screws.png new file mode 100644 index 0000000..f457851 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle_screws.png.import new file mode 100644 index 0000000..1fe57ee --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bihv44lscqydf" +path="res://.godot/imported/button_square_header_large_rectangle_screws.png-90aa8398658815fdce3767fa7cef6c32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.png-90aa8398658815fdce3767fa7cef6c32.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square.png new file mode 100644 index 0000000..36d80de Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square.png.import new file mode 100644 index 0000000..c5d46d3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddxxhbeuusvo4" +path="res://.godot/imported/button_square_header_large_square.png-c0ba7dafc6a96e0fb61ce0e6c92189d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square.png" +dest_files=["res://.godot/imported/button_square_header_large_square.png-c0ba7dafc6a96e0fb61ce0e6c92189d2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square_screws.png new file mode 100644 index 0000000..1e99962 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square_screws.png.import new file mode 100644 index 0000000..4893aca --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbt8cdwiilygp" +path="res://.godot/imported/button_square_header_large_square_screws.png-ad12e24e28bd3f59394217f4992915ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_large_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.png-ad12e24e28bd3f59394217f4992915ff.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle.png new file mode 100644 index 0000000..5542098 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle.png.import new file mode 100644 index 0000000..e3dbb55 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxpg2bhc3bcce" +path="res://.godot/imported/button_square_header_notch_rectangle.png-996f5b009f45c41bf0edfb3e91f26572.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.png-996f5b009f45c41bf0edfb3e91f26572.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle_screws.png new file mode 100644 index 0000000..885784e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle_screws.png.import new file mode 100644 index 0000000..5e783c1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs1xsm5bvj733" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.png-5231ec2a9caf896df6e0b3aee36d96bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.png-5231ec2a9caf896df6e0b3aee36d96bf.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square.png new file mode 100644 index 0000000..b8e99ef Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square.png.import new file mode 100644 index 0000000..60b4944 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7jdox4302spg" +path="res://.godot/imported/button_square_header_notch_square.png-db72516447b2c60fa7a78420be357b76.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square.png" +dest_files=["res://.godot/imported/button_square_header_notch_square.png-db72516447b2c60fa7a78420be357b76.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square_screws.png new file mode 100644 index 0000000..f71002f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square_screws.png.import new file mode 100644 index 0000000..5d8e6f2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcsjqvhtwuqgk" +path="res://.godot/imported/button_square_header_notch_square_screws.png-c140b051e67fa6170d4c91ecaa27b0cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_notch_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.png-c140b051e67fa6170d4c91ecaa27b0cc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle.png new file mode 100644 index 0000000..a898634 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle.png.import new file mode 100644 index 0000000..a80ee1c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg83pmoke2p1j" +path="res://.godot/imported/button_square_header_small_rectangle.png-1c293557245e74820a91a84f17460dbd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.png-1c293557245e74820a91a84f17460dbd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle_screws.png new file mode 100644 index 0000000..7f06e8e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle_screws.png.import new file mode 100644 index 0000000..81be7a7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diylaxwm8gndx" +path="res://.godot/imported/button_square_header_small_rectangle_screws.png-f4b0d862d5a9991dd3dfd28e15b69ed6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.png-f4b0d862d5a9991dd3dfd28e15b69ed6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square.png new file mode 100644 index 0000000..c504ffc Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square.png.import new file mode 100644 index 0000000..9ea1ba9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6s810htybfsj" +path="res://.godot/imported/button_square_header_small_square.png-4d18e9f8800d54e6b8ae96bc21ff2b54.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square.png" +dest_files=["res://.godot/imported/button_square_header_small_square.png-4d18e9f8800d54e6b8ae96bc21ff2b54.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square_screws.png new file mode 100644 index 0000000..f76f86d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square_screws.png.import new file mode 100644 index 0000000..3edec1e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blagtv55pjxns" +path="res://.godot/imported/button_square_header_small_square_screws.png-02fa3d4f660145c036ed42992114f5d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/button_square_header_small_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.png-02fa3d4f660145c036ed42992114f5d2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_a.png new file mode 100644 index 0000000..c984a40 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_a.png.import new file mode 100644 index 0000000..0789151 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp7co0mr5nkw8" +path="res://.godot/imported/crosshair_color_a.png-6161a652ca3ce6546d1e682e750b5888.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_a.png" +dest_files=["res://.godot/imported/crosshair_color_a.png-6161a652ca3ce6546d1e682e750b5888.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_b.png new file mode 100644 index 0000000..bbacbb5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_b.png.import new file mode 100644 index 0000000..45013ef --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hn3vfei7drky" +path="res://.godot/imported/crosshair_color_b.png-79993f936adf035a44e88a26ed0ef036.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_b.png" +dest_files=["res://.godot/imported/crosshair_color_b.png-79993f936adf035a44e88a26ed0ef036.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_c.png new file mode 100644 index 0000000..9cbe3b0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_c.png.import new file mode 100644 index 0000000..f271bc4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5u2dm44kairc" +path="res://.godot/imported/crosshair_color_c.png-6978ab159c0ac0653be48add37cd0ae6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_c.png" +dest_files=["res://.godot/imported/crosshair_color_c.png-6978ab159c0ac0653be48add37cd0ae6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_d.png new file mode 100644 index 0000000..1b1f032 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_d.png.import new file mode 100644 index 0000000..c38cba2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjq0eor38jax1" +path="res://.godot/imported/crosshair_color_d.png-7b70bfbee7a8190ee3be56f30a862801.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Default/crosshair_color_d.png" +dest_files=["res://.godot/imported/crosshair_color_d.png-7b70bfbee7a8190ee3be56f30a862801.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large.png new file mode 100644 index 0000000..fbdcfde Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large.png.import new file mode 100644 index 0000000..9c39347 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddju2sm6h1pui" +path="res://.godot/imported/bar_round_gloss_large.png-f825c5684b565d7e50a733b7ee6810e8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large.png" +dest_files=["res://.godot/imported/bar_round_gloss_large.png-f825c5684b565d7e50a733b7ee6810e8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_l.png new file mode 100644 index 0000000..36c79bf Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_l.png.import new file mode 100644 index 0000000..fb57f20 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt2i6dg0o32ax" +path="res://.godot/imported/bar_round_gloss_large_l.png-c3b31c82026da5525ec4c3b4f7cc5ff0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.png-c3b31c82026da5525ec4c3b4f7cc5ff0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_m.png new file mode 100644 index 0000000..96d68c0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_m.png.import new file mode 100644 index 0000000..7e0e728 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3f34xn7vi1s1" +path="res://.godot/imported/bar_round_gloss_large_m.png-745c272b907d665350b00873c7b38e1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.png-745c272b907d665350b00873c7b38e1b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_r.png new file mode 100644 index 0000000..fdedd8d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_r.png.import new file mode 100644 index 0000000..f7cd244 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlvp1jmmopy2v" +path="res://.godot/imported/bar_round_gloss_large_r.png-f54e8b743491d119b67e2b9e2e3f2490.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.png-f54e8b743491d119b67e2b9e2e3f2490.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_square.png new file mode 100644 index 0000000..fab9b0f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_square.png.import new file mode 100644 index 0000000..e34fce0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp2g4jrw1n23" +path="res://.godot/imported/bar_round_gloss_large_square.png-d19ea3bcf556b156d7aa20cd33fb6d5c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.png-d19ea3bcf556b156d7aa20cd33fb6d5c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small.png new file mode 100644 index 0000000..abff080 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small.png.import new file mode 100644 index 0000000..83b092a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvi2ebac8f2wy" +path="res://.godot/imported/bar_round_gloss_small.png-f6d3acfcaa411d7e51c8076896270069.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small.png" +dest_files=["res://.godot/imported/bar_round_gloss_small.png-f6d3acfcaa411d7e51c8076896270069.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_l.png new file mode 100644 index 0000000..85d2f96 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_l.png.import new file mode 100644 index 0000000..321da93 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v060c445gkq8" +path="res://.godot/imported/bar_round_gloss_small_l.png-fe481f7d07f2893e43c3fcf316c98b92.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.png-fe481f7d07f2893e43c3fcf316c98b92.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_m.png new file mode 100644 index 0000000..0bad97b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_m.png.import new file mode 100644 index 0000000..f4d4895 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbababh8s7i3a" +path="res://.godot/imported/bar_round_gloss_small_m.png-1dc5e99754d64e92ccca4c415135a654.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.png-1dc5e99754d64e92ccca4c415135a654.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_r.png new file mode 100644 index 0000000..79109b7 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_r.png.import new file mode 100644 index 0000000..b4ebbad --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cowwxncyqv06h" +path="res://.godot/imported/bar_round_gloss_small_r.png-495882513722cddd959c5710a3297fa7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.png-495882513722cddd959c5710a3297fa7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_square.png new file mode 100644 index 0000000..b7128be Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_square.png.import new file mode 100644 index 0000000..35f4a85 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kqvmejlnwyme" +path="res://.godot/imported/bar_round_gloss_small_square.png-db447b630743380f4f7364ff2c123ffc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.png-db447b630743380f4f7364ff2c123ffc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large.png new file mode 100644 index 0000000..9486a6d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large.png.import new file mode 100644 index 0000000..71eab30 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iyqgs3itbwl1" +path="res://.godot/imported/bar_round_large.png-29bb72e9256762602fc2a7f3528f0c08.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large.png" +dest_files=["res://.godot/imported/bar_round_large.png-29bb72e9256762602fc2a7f3528f0c08.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_l.png new file mode 100644 index 0000000..ac2f66d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_l.png.import new file mode 100644 index 0000000..4f3ea8a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dith3c4i6bnnf" +path="res://.godot/imported/bar_round_large_l.png-fefc66bcc07bd1b7f9af73b7f7ee9cd1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_l.png" +dest_files=["res://.godot/imported/bar_round_large_l.png-fefc66bcc07bd1b7f9af73b7f7ee9cd1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_m.png new file mode 100644 index 0000000..3c4cf2f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_m.png.import new file mode 100644 index 0000000..64512ce --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c45a5mvg1nkv5" +path="res://.godot/imported/bar_round_large_m.png-8e53dfc76d372d46a39bf689460778c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_m.png" +dest_files=["res://.godot/imported/bar_round_large_m.png-8e53dfc76d372d46a39bf689460778c0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_r.png new file mode 100644 index 0000000..a0697a1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_r.png.import new file mode 100644 index 0000000..ec0d968 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4ca82ek4t24v" +path="res://.godot/imported/bar_round_large_r.png-4e0c97546968e508e62d9e1c91d4db04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_r.png" +dest_files=["res://.godot/imported/bar_round_large_r.png-4e0c97546968e508e62d9e1c91d4db04.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_square.png new file mode 100644 index 0000000..5056b70 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_square.png.import new file mode 100644 index 0000000..d2d0809 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca2mr12cyj8v0" +path="res://.godot/imported/bar_round_large_square.png-b93862be92ae40e979b44be4b5db081d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_large_square.png" +dest_files=["res://.godot/imported/bar_round_large_square.png-b93862be92ae40e979b44be4b5db081d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small.png new file mode 100644 index 0000000..9873156 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small.png.import new file mode 100644 index 0000000..32b9884 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmi6psr8l7dr5" +path="res://.godot/imported/bar_round_small.png-5e3ffceba9247b201b869259972b0e50.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small.png" +dest_files=["res://.godot/imported/bar_round_small.png-5e3ffceba9247b201b869259972b0e50.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_l.png new file mode 100644 index 0000000..b417cdc Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_l.png.import new file mode 100644 index 0000000..5b2ad06 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jbispe5olo4v" +path="res://.godot/imported/bar_round_small_l.png-a61b9ea75bd7b64145856708be5d77cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_l.png" +dest_files=["res://.godot/imported/bar_round_small_l.png-a61b9ea75bd7b64145856708be5d77cc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_m.png new file mode 100644 index 0000000..ba38a2f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_m.png.import new file mode 100644 index 0000000..a2a6a4a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tv2i1w6kl7fa" +path="res://.godot/imported/bar_round_small_m.png-0b46651e481cccecb0e5276d05ae6ed8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_m.png" +dest_files=["res://.godot/imported/bar_round_small_m.png-0b46651e481cccecb0e5276d05ae6ed8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_r.png new file mode 100644 index 0000000..9c3612b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_r.png.import new file mode 100644 index 0000000..eab76a5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkeexfkrsyce7" +path="res://.godot/imported/bar_round_small_r.png-73a540dce225a3580476f6c6459d6dbf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_r.png" +dest_files=["res://.godot/imported/bar_round_small_r.png-73a540dce225a3580476f6c6459d6dbf.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_square.png new file mode 100644 index 0000000..989736a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_square.png.import new file mode 100644 index 0000000..43bbd6d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3wa047ba6wy4" +path="res://.godot/imported/bar_round_small_square.png-ca412b0c7c5cc6b0357aae1195c34d59.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_round_small_square.png" +dest_files=["res://.godot/imported/bar_round_small_square.png-ca412b0c7c5cc6b0357aae1195c34d59.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large.png new file mode 100644 index 0000000..c954a98 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large.png.import new file mode 100644 index 0000000..4e14194 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1hwm1yk4wmj7" +path="res://.godot/imported/bar_square_gloss_large.png-bb7d9bb197eedf257d173a257fd193a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large.png" +dest_files=["res://.godot/imported/bar_square_gloss_large.png-bb7d9bb197eedf257d173a257fd193a0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_l.png new file mode 100644 index 0000000..e2bf221 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_l.png.import new file mode 100644 index 0000000..e801c2d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://paw3yr2kcaov" +path="res://.godot/imported/bar_square_gloss_large_l.png-e2d798ba34530c95d1c484162c7bed23.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.png-e2d798ba34530c95d1c484162c7bed23.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_m.png new file mode 100644 index 0000000..96d68c0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_m.png.import new file mode 100644 index 0000000..dae291e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt3qr7mplskya" +path="res://.godot/imported/bar_square_gloss_large_m.png-60b511e7c06268161919f04065aa742a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.png-60b511e7c06268161919f04065aa742a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_r.png new file mode 100644 index 0000000..0f00473 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_r.png.import new file mode 100644 index 0000000..c771505 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqvrx284g0v35" +path="res://.godot/imported/bar_square_gloss_large_r.png-c004672c87634e09dd4e556d80030e71.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.png-c004672c87634e09dd4e556d80030e71.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_square.png new file mode 100644 index 0000000..67f69d5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_square.png.import new file mode 100644 index 0000000..669e0c4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ra8j8ac7fugo" +path="res://.godot/imported/bar_square_gloss_large_square.png-a6d4fd9684aee780c068bb95cfd0bd24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.png-a6d4fd9684aee780c068bb95cfd0bd24.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small.png new file mode 100644 index 0000000..74bc3ea Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small.png.import new file mode 100644 index 0000000..85b1db6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcdfvlqjxt2vl" +path="res://.godot/imported/bar_square_gloss_small.png-68e99fb8b77ce2611489b4a906ede3d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small.png" +dest_files=["res://.godot/imported/bar_square_gloss_small.png-68e99fb8b77ce2611489b4a906ede3d2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_l.png new file mode 100644 index 0000000..a2cc8d1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_l.png.import new file mode 100644 index 0000000..963a8e5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2poyx0an67hu" +path="res://.godot/imported/bar_square_gloss_small_l.png-c9b124c77356e8add0acaa087fddbc72.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.png-c9b124c77356e8add0acaa087fddbc72.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_m.png new file mode 100644 index 0000000..0bad97b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_m.png.import new file mode 100644 index 0000000..9dc1a4f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://decjn2l4s7aw7" +path="res://.godot/imported/bar_square_gloss_small_m.png-be6f550c3fdbe39cde9eddbc271e02a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.png-be6f550c3fdbe39cde9eddbc271e02a5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_r.png new file mode 100644 index 0000000..0017645 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_r.png.import new file mode 100644 index 0000000..fe5acc9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c30v11g52mpcg" +path="res://.godot/imported/bar_square_gloss_small_r.png-6fa2ab314d52c747243287b8d8561bc5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.png-6fa2ab314d52c747243287b8d8561bc5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_square.png new file mode 100644 index 0000000..2c80ae1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_square.png.import new file mode 100644 index 0000000..180f80b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bakhu0x14kko1" +path="res://.godot/imported/bar_square_gloss_small_square.png-36d420c6677e6d23948a3a6debfb0146.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.png-36d420c6677e6d23948a3a6debfb0146.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large.png new file mode 100644 index 0000000..f290f22 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large.png.import new file mode 100644 index 0000000..7fc2dc0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl6tu8r6g68ck" +path="res://.godot/imported/bar_square_large.png-1f97ccf3dfdc1eb65b7c46d307dca812.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large.png" +dest_files=["res://.godot/imported/bar_square_large.png-1f97ccf3dfdc1eb65b7c46d307dca812.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_l.png new file mode 100644 index 0000000..1d20543 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_l.png.import new file mode 100644 index 0000000..af563b1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgs0trfh0o4nv" +path="res://.godot/imported/bar_square_large_l.png-d5c4fbd0194b2883e062f53473e136a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_l.png" +dest_files=["res://.godot/imported/bar_square_large_l.png-d5c4fbd0194b2883e062f53473e136a0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_m.png new file mode 100644 index 0000000..3c4cf2f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_m.png.import new file mode 100644 index 0000000..b1c4451 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rkkh000rg767" +path="res://.godot/imported/bar_square_large_m.png-9c64798ac742d14148489d5e273cdc64.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_m.png" +dest_files=["res://.godot/imported/bar_square_large_m.png-9c64798ac742d14148489d5e273cdc64.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_r.png new file mode 100644 index 0000000..745e7cd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_r.png.import new file mode 100644 index 0000000..a131055 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt4c1kp6attfa" +path="res://.godot/imported/bar_square_large_r.png-7842783af45392c8c4032513f9679d05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_r.png" +dest_files=["res://.godot/imported/bar_square_large_r.png-7842783af45392c8c4032513f9679d05.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_square.png new file mode 100644 index 0000000..3565cf5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_square.png.import new file mode 100644 index 0000000..42eafe4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1hkbh7b0s14i" +path="res://.godot/imported/bar_square_large_square.png-a5f6fff640efe6e540aacc44179f4d1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_large_square.png" +dest_files=["res://.godot/imported/bar_square_large_square.png-a5f6fff640efe6e540aacc44179f4d1c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small.png new file mode 100644 index 0000000..ff23196 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small.png.import new file mode 100644 index 0000000..82e8263 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://203kh8xqh4ml" +path="res://.godot/imported/bar_square_small.png-3bd56e1f7e45ab6ff5b9329e95d2cfb0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small.png" +dest_files=["res://.godot/imported/bar_square_small.png-3bd56e1f7e45ab6ff5b9329e95d2cfb0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_l.png new file mode 100644 index 0000000..eff5894 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_l.png.import new file mode 100644 index 0000000..a3ffae7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drbcmc77166ds" +path="res://.godot/imported/bar_square_small_l.png-e6376b070067a33bdb433068d07461bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_l.png" +dest_files=["res://.godot/imported/bar_square_small_l.png-e6376b070067a33bdb433068d07461bd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_m.png new file mode 100644 index 0000000..ba38a2f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_m.png.import new file mode 100644 index 0000000..513b5a3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpkoanm4firca" +path="res://.godot/imported/bar_square_small_m.png-eb379008121e1155aae28c11f711a00e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_m.png" +dest_files=["res://.godot/imported/bar_square_small_m.png-eb379008121e1155aae28c11f711a00e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_r.png new file mode 100644 index 0000000..4f86f4b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_r.png.import new file mode 100644 index 0000000..e6f6aab --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsg1k6x32vel7" +path="res://.godot/imported/bar_square_small_r.png-c5aa2f85eaebde081ccb6be4bccf2ca6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_r.png" +dest_files=["res://.godot/imported/bar_square_small_r.png-c5aa2f85eaebde081ccb6be4bccf2ca6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_square.png new file mode 100644 index 0000000..8a1de44 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_square.png.import new file mode 100644 index 0000000..7bfe82e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8a3mjxr0v0xb" +path="res://.godot/imported/bar_square_small_square.png-8144be1b2d94e67505320261508bf0f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/bar_square_small_square.png" +dest_files=["res://.godot/imported/bar_square_small_square.png-8144be1b2d94e67505320261508bf0f4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle.png new file mode 100644 index 0000000..ffab838 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle.png.import new file mode 100644 index 0000000..52f362b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmfsunr82ok87" +path="res://.godot/imported/button_square_header_blade_rectangle.png-73ad37437a9a4e3932e27f80c1cd5cf0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.png-73ad37437a9a4e3932e27f80c1cd5cf0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle_screws.png new file mode 100644 index 0000000..de1060e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle_screws.png.import new file mode 100644 index 0000000..d31f85c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bujy3i1y32qkv" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.png-fc8ad478bb59dbb4a74b2a9f5118959b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.png-fc8ad478bb59dbb4a74b2a9f5118959b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square.png new file mode 100644 index 0000000..38e486b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square.png.import new file mode 100644 index 0000000..b354553 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e1jm4jwh1oi3" +path="res://.godot/imported/button_square_header_blade_square.png-dad98bdf571216d3df13f9890f119e09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square.png" +dest_files=["res://.godot/imported/button_square_header_blade_square.png-dad98bdf571216d3df13f9890f119e09.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square_screws.png new file mode 100644 index 0000000..f736a65 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square_screws.png.import new file mode 100644 index 0000000..fd2774f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b71qsje6gqek6" +path="res://.godot/imported/button_square_header_blade_square_screws.png-2354e3f4fd5544153b67187e99216fa9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_blade_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.png-2354e3f4fd5544153b67187e99216fa9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle.png new file mode 100644 index 0000000..bef4c3e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle.png.import new file mode 100644 index 0000000..c206a99 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ld3ltv3jt1q1" +path="res://.godot/imported/button_square_header_large_rectangle.png-6ba14241e0bfc973aec162754964a5c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.png-6ba14241e0bfc973aec162754964a5c0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle_screws.png new file mode 100644 index 0000000..65d169f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle_screws.png.import new file mode 100644 index 0000000..a334e54 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8qadigqvg5n3" +path="res://.godot/imported/button_square_header_large_rectangle_screws.png-46f0f21056da493243c6eca7adb5e6d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.png-46f0f21056da493243c6eca7adb5e6d3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square.png new file mode 100644 index 0000000..64ea46e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square.png.import new file mode 100644 index 0000000..f473c11 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw8mvvjll1fuk" +path="res://.godot/imported/button_square_header_large_square.png-48879f5f1ce8a3ec33af0bbd941debb3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square.png" +dest_files=["res://.godot/imported/button_square_header_large_square.png-48879f5f1ce8a3ec33af0bbd941debb3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square_screws.png new file mode 100644 index 0000000..669c7a0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square_screws.png.import new file mode 100644 index 0000000..5e548e2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtsad5rq0qlyx" +path="res://.godot/imported/button_square_header_large_square_screws.png-0bab5286636f9808c55f576054af0976.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_large_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.png-0bab5286636f9808c55f576054af0976.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle.png new file mode 100644 index 0000000..36e967c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle.png.import new file mode 100644 index 0000000..98362a1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3n4bffcbyn6f" +path="res://.godot/imported/button_square_header_notch_rectangle.png-6c0d363be2d712a451b2c5c024c6659e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.png-6c0d363be2d712a451b2c5c024c6659e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle_screws.png new file mode 100644 index 0000000..40b5f11 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle_screws.png.import new file mode 100644 index 0000000..9cfbce1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oqtte6hfwxjn" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.png-2fd9efe206151597afeecb0271737e50.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.png-2fd9efe206151597afeecb0271737e50.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square.png new file mode 100644 index 0000000..82e973e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square.png.import new file mode 100644 index 0000000..da56063 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jyvfpuu42elf" +path="res://.godot/imported/button_square_header_notch_square.png-037654b62c94806e07d6528712b5de58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square.png" +dest_files=["res://.godot/imported/button_square_header_notch_square.png-037654b62c94806e07d6528712b5de58.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square_screws.png new file mode 100644 index 0000000..a8550b1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square_screws.png.import new file mode 100644 index 0000000..e378c78 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvk8e0lg60ohs" +path="res://.godot/imported/button_square_header_notch_square_screws.png-e2bbb22181fdc774a6d799ec8326f657.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_notch_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.png-e2bbb22181fdc774a6d799ec8326f657.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle.png new file mode 100644 index 0000000..1876f70 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle.png.import new file mode 100644 index 0000000..4ff065e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gww4hu7y2xgg" +path="res://.godot/imported/button_square_header_small_rectangle.png-020dfe0a7e182591b81409df867eedaf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.png-020dfe0a7e182591b81409df867eedaf.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle_screws.png new file mode 100644 index 0000000..4e95902 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle_screws.png.import new file mode 100644 index 0000000..5053a46 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3jx0dui0wdd7" +path="res://.godot/imported/button_square_header_small_rectangle_screws.png-d318e87c3c49f5df0ef6f70a1f6f4ecd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.png-d318e87c3c49f5df0ef6f70a1f6f4ecd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square.png new file mode 100644 index 0000000..b15bfdb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square.png.import new file mode 100644 index 0000000..a73c8b4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do1phnmhq27mf" +path="res://.godot/imported/button_square_header_small_square.png-03601391a0a00a444d38efc8248fb555.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square.png" +dest_files=["res://.godot/imported/button_square_header_small_square.png-03601391a0a00a444d38efc8248fb555.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square_screws.png new file mode 100644 index 0000000..29a6526 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square_screws.png.import new file mode 100644 index 0000000..5d5151f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wxv5avem2156" +path="res://.godot/imported/button_square_header_small_square_screws.png-d442dba72d37aec74bc79c3aa57c1c71.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/button_square_header_small_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.png-d442dba72d37aec74bc79c3aa57c1c71.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_a.png new file mode 100644 index 0000000..bea5bcd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_a.png.import new file mode 100644 index 0000000..570ba16 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8uxbduqp80xc" +path="res://.godot/imported/crosshair_color_a.png-d073025728bf9a5319ca7f846e78bd3b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_a.png" +dest_files=["res://.godot/imported/crosshair_color_a.png-d073025728bf9a5319ca7f846e78bd3b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_b.png new file mode 100644 index 0000000..cd64f1e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_b.png.import new file mode 100644 index 0000000..327e44c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg2vbdmyps4mb" +path="res://.godot/imported/crosshair_color_b.png-022adf04e165b5df5dfc327e9c6a1a80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_b.png" +dest_files=["res://.godot/imported/crosshair_color_b.png-022adf04e165b5df5dfc327e9c6a1a80.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_c.png new file mode 100644 index 0000000..b059249 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_c.png.import new file mode 100644 index 0000000..4bc2d18 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8p34xy0ckcbc" +path="res://.godot/imported/crosshair_color_c.png-b9c4c533082c99cb335331f6de64e5ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_c.png" +dest_files=["res://.godot/imported/crosshair_color_c.png-b9c4c533082c99cb335331f6de64e5ec.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_d.png new file mode 100644 index 0000000..4598849 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_d.png.import new file mode 100644 index 0000000..dd181c1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cytj8fu4wrx1p" +path="res://.godot/imported/crosshair_color_d.png-01dbe791c637f573b3836a93979ad500.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Grey/Double/crosshair_color_d.png" +dest_files=["res://.godot/imported/crosshair_color_d.png-01dbe791c637f573b3836a93979ad500.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large.png new file mode 100644 index 0000000..b35501d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large.png.import new file mode 100644 index 0000000..8216a4d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbti5qkh3ep43" +path="res://.godot/imported/bar_round_gloss_large.png-648ef40dbc6b3d1477e576e48e0de384.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large.png" +dest_files=["res://.godot/imported/bar_round_gloss_large.png-648ef40dbc6b3d1477e576e48e0de384.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_l.png new file mode 100644 index 0000000..5632849 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_l.png.import new file mode 100644 index 0000000..b8b8e3b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0uodk6pwkoys" +path="res://.godot/imported/bar_round_gloss_large_l.png-ed8b037b5cb96ad11bd863e9e22ebc0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.png-ed8b037b5cb96ad11bd863e9e22ebc0c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_m.png new file mode 100644 index 0000000..a66eae2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_m.png.import new file mode 100644 index 0000000..71ad4b7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4sp1ufr76nlf" +path="res://.godot/imported/bar_round_gloss_large_m.png-f74235107bca0cc48663be743d6d6166.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.png-f74235107bca0cc48663be743d6d6166.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_r.png new file mode 100644 index 0000000..1a8f396 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_r.png.import new file mode 100644 index 0000000..bca8a42 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc6jc1k5nasof" +path="res://.godot/imported/bar_round_gloss_large_r.png-fbd6cded3bbc8708db85577044bcccd4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.png-fbd6cded3bbc8708db85577044bcccd4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_square.png new file mode 100644 index 0000000..39e77b9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_square.png.import new file mode 100644 index 0000000..f097f24 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bahmb4n2aperj" +path="res://.godot/imported/bar_round_gloss_large_square.png-0e8df2e61ef45b135e705cae848ca98a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.png-0e8df2e61ef45b135e705cae848ca98a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small.png new file mode 100644 index 0000000..d996923 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small.png.import new file mode 100644 index 0000000..42a1c3e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dga7npfcy87fk" +path="res://.godot/imported/bar_round_gloss_small.png-55dcc50ad80f212fc09f1e3b7975b302.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small.png" +dest_files=["res://.godot/imported/bar_round_gloss_small.png-55dcc50ad80f212fc09f1e3b7975b302.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_l.png new file mode 100644 index 0000000..f4fb41a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_l.png.import new file mode 100644 index 0000000..bf94dec --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwg8p7e54p7a8" +path="res://.godot/imported/bar_round_gloss_small_l.png-92c853ce8f9fcbe7170ec60fbf1c727e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.png-92c853ce8f9fcbe7170ec60fbf1c727e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_m.png new file mode 100644 index 0000000..cc4eee4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_m.png.import new file mode 100644 index 0000000..cf205d3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx0xojkfrwc2f" +path="res://.godot/imported/bar_round_gloss_small_m.png-069c3dda339e161823d432b31c494536.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.png-069c3dda339e161823d432b31c494536.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_r.png new file mode 100644 index 0000000..559f9a3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_r.png.import new file mode 100644 index 0000000..605fe2f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhccm7q4taixf" +path="res://.godot/imported/bar_round_gloss_small_r.png-870d847b8ddf2c5497b3c1b7d06048bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.png-870d847b8ddf2c5497b3c1b7d06048bf.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_square.png new file mode 100644 index 0000000..118817b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_square.png.import new file mode 100644 index 0000000..1184f0c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1ae5ueo8gu50" +path="res://.godot/imported/bar_round_gloss_small_square.png-f41d5cbe25ede4b68a8a6ae5e4bbe42e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.png-f41d5cbe25ede4b68a8a6ae5e4bbe42e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large.png new file mode 100644 index 0000000..3c18406 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large.png.import new file mode 100644 index 0000000..717ad24 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brhi6hnlitban" +path="res://.godot/imported/bar_round_large.png-601d3ceffb50b5d1bf2f4a607bab3c95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large.png" +dest_files=["res://.godot/imported/bar_round_large.png-601d3ceffb50b5d1bf2f4a607bab3c95.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_l.png new file mode 100644 index 0000000..8ad127c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_l.png.import new file mode 100644 index 0000000..45906e0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btohmghb1714m" +path="res://.godot/imported/bar_round_large_l.png-9c052eeed3fe7096bb514c64479f9158.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_l.png" +dest_files=["res://.godot/imported/bar_round_large_l.png-9c052eeed3fe7096bb514c64479f9158.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_m.png new file mode 100644 index 0000000..54e3129 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_m.png.import new file mode 100644 index 0000000..6737157 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpwwyki7mpf2" +path="res://.godot/imported/bar_round_large_m.png-62416b24e691d764b66c8715f98eb482.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_m.png" +dest_files=["res://.godot/imported/bar_round_large_m.png-62416b24e691d764b66c8715f98eb482.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_r.png new file mode 100644 index 0000000..b91ae93 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_r.png.import new file mode 100644 index 0000000..30d929b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bstsjobk5m265" +path="res://.godot/imported/bar_round_large_r.png-2469e0c86ba0b5643e8c5dbd0bb5d66a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_r.png" +dest_files=["res://.godot/imported/bar_round_large_r.png-2469e0c86ba0b5643e8c5dbd0bb5d66a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_square.png new file mode 100644 index 0000000..236101f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_square.png.import new file mode 100644 index 0000000..7fa3146 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dln33i1xxftum" +path="res://.godot/imported/bar_round_large_square.png-ba5f418e48be2e3616a1bd552273c6c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_large_square.png" +dest_files=["res://.godot/imported/bar_round_large_square.png-ba5f418e48be2e3616a1bd552273c6c2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small.png new file mode 100644 index 0000000..ab845ae Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small.png.import new file mode 100644 index 0000000..dc8b759 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ciu8yp2lag5ln" +path="res://.godot/imported/bar_round_small.png-c945e0138318a4e2604dad1973d59c98.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small.png" +dest_files=["res://.godot/imported/bar_round_small.png-c945e0138318a4e2604dad1973d59c98.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_l.png new file mode 100644 index 0000000..b63ca19 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_l.png.import new file mode 100644 index 0000000..89805fd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbyp65mfmx2wx" +path="res://.godot/imported/bar_round_small_l.png-24f143d2849e886876d44083c08c3ec9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_l.png" +dest_files=["res://.godot/imported/bar_round_small_l.png-24f143d2849e886876d44083c08c3ec9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_m.png new file mode 100644 index 0000000..f3ed8e0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_m.png.import new file mode 100644 index 0000000..825c26f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4lce2kmvdurk" +path="res://.godot/imported/bar_round_small_m.png-87d58031a46f4963739f2bd7195c4dcd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_m.png" +dest_files=["res://.godot/imported/bar_round_small_m.png-87d58031a46f4963739f2bd7195c4dcd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_r.png new file mode 100644 index 0000000..aa8f935 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_r.png.import new file mode 100644 index 0000000..e474fb7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp46lir68ugdf" +path="res://.godot/imported/bar_round_small_r.png-14550acebc606255050d5ad3c5a725b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_r.png" +dest_files=["res://.godot/imported/bar_round_small_r.png-14550acebc606255050d5ad3c5a725b2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_square.png new file mode 100644 index 0000000..044a99b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_square.png.import new file mode 100644 index 0000000..416313a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwkdqr0ubvcqs" +path="res://.godot/imported/bar_round_small_square.png-cea708ba419e9259aed5b501d894c190.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_round_small_square.png" +dest_files=["res://.godot/imported/bar_round_small_square.png-cea708ba419e9259aed5b501d894c190.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large.png new file mode 100644 index 0000000..d404243 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large.png.import new file mode 100644 index 0000000..b10f0a6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ru2oacnso31k" +path="res://.godot/imported/bar_square_gloss_large.png-46de8fec534ae8db387937692b3b2091.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large.png" +dest_files=["res://.godot/imported/bar_square_gloss_large.png-46de8fec534ae8db387937692b3b2091.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_l.png new file mode 100644 index 0000000..e8d6dd9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_l.png.import new file mode 100644 index 0000000..564275c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq3ht27fanrc" +path="res://.godot/imported/bar_square_gloss_large_l.png-b8c380a3c373c44a881a9617bdcb10cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.png-b8c380a3c373c44a881a9617bdcb10cc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_m.png new file mode 100644 index 0000000..a66eae2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_m.png.import new file mode 100644 index 0000000..10c9d49 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cukhlpyeoi8f6" +path="res://.godot/imported/bar_square_gloss_large_m.png-af5dcbc9955a7be480871bc06feda1df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.png-af5dcbc9955a7be480871bc06feda1df.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_r.png new file mode 100644 index 0000000..272447a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_r.png.import new file mode 100644 index 0000000..c4e034f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfefogmslxuyu" +path="res://.godot/imported/bar_square_gloss_large_r.png-f8d278609f445ae31c6f05e69d220404.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.png-f8d278609f445ae31c6f05e69d220404.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_square.png new file mode 100644 index 0000000..8988d4d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_square.png.import new file mode 100644 index 0000000..eebdd45 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://io6jb08yqvu2" +path="res://.godot/imported/bar_square_gloss_large_square.png-4a2440693597b7e3362be5225f16b03c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.png-4a2440693597b7e3362be5225f16b03c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small.png new file mode 100644 index 0000000..def7b32 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small.png.import new file mode 100644 index 0000000..91e8b82 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4iwg5jbn4btx" +path="res://.godot/imported/bar_square_gloss_small.png-3916498cde2290411ee403bb03647cb3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small.png" +dest_files=["res://.godot/imported/bar_square_gloss_small.png-3916498cde2290411ee403bb03647cb3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_l.png new file mode 100644 index 0000000..3e744e5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_l.png.import new file mode 100644 index 0000000..ecff414 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvxrn2c7exw06" +path="res://.godot/imported/bar_square_gloss_small_l.png-ef852e1fbd4776ad6c99002df8eff4a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.png-ef852e1fbd4776ad6c99002df8eff4a9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_m.png new file mode 100644 index 0000000..cc4eee4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_m.png.import new file mode 100644 index 0000000..0879b68 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb617putfur4a" +path="res://.godot/imported/bar_square_gloss_small_m.png-932cb8dc8b085b09931642af220a2866.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.png-932cb8dc8b085b09931642af220a2866.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_r.png new file mode 100644 index 0000000..85b80b5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_r.png.import new file mode 100644 index 0000000..0e18559 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvkjvr8er13os" +path="res://.godot/imported/bar_square_gloss_small_r.png-859d516920c80dea1acab2506ce84693.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.png-859d516920c80dea1acab2506ce84693.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_square.png new file mode 100644 index 0000000..9085c52 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_square.png.import new file mode 100644 index 0000000..5fdb643 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbu26mrolv5fx" +path="res://.godot/imported/bar_square_gloss_small_square.png-5da8d252f8a0f2903596ddcf0f4fc5d6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.png-5da8d252f8a0f2903596ddcf0f4fc5d6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large.png new file mode 100644 index 0000000..5a80a2d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large.png.import new file mode 100644 index 0000000..f33665a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nno6ara0g5te" +path="res://.godot/imported/bar_square_large.png-a11cc0b98993755bf3aba9aca50e1904.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large.png" +dest_files=["res://.godot/imported/bar_square_large.png-a11cc0b98993755bf3aba9aca50e1904.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_l.png new file mode 100644 index 0000000..d484c8f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_l.png.import new file mode 100644 index 0000000..749ea21 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wur35mohiqjw" +path="res://.godot/imported/bar_square_large_l.png-b49c26d68e9711bcc30ec9352b6d62ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_l.png" +dest_files=["res://.godot/imported/bar_square_large_l.png-b49c26d68e9711bcc30ec9352b6d62ec.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_m.png new file mode 100644 index 0000000..54e3129 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_m.png.import new file mode 100644 index 0000000..7b4bbcd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cijp5ytovutgn" +path="res://.godot/imported/bar_square_large_m.png-2807e80134941456d512258e0a35e991.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_m.png" +dest_files=["res://.godot/imported/bar_square_large_m.png-2807e80134941456d512258e0a35e991.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_r.png new file mode 100644 index 0000000..6691990 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_r.png.import new file mode 100644 index 0000000..ec62f64 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca55ftiuji2yo" +path="res://.godot/imported/bar_square_large_r.png-509843f42164ecf96e7ad5736f9d2afb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_r.png" +dest_files=["res://.godot/imported/bar_square_large_r.png-509843f42164ecf96e7ad5736f9d2afb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_square.png new file mode 100644 index 0000000..c3a63b4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_square.png.import new file mode 100644 index 0000000..5013b9d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b14ro6e17pk26" +path="res://.godot/imported/bar_square_large_square.png-5c22e8bbb5ea56a41c40ba1cbd60f735.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_large_square.png" +dest_files=["res://.godot/imported/bar_square_large_square.png-5c22e8bbb5ea56a41c40ba1cbd60f735.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small.png new file mode 100644 index 0000000..7799d30 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small.png.import new file mode 100644 index 0000000..da07dc9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcbumx2th5fh6" +path="res://.godot/imported/bar_square_small.png-371e1194affa58b29b6377fa5852a3b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small.png" +dest_files=["res://.godot/imported/bar_square_small.png-371e1194affa58b29b6377fa5852a3b9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_l.png new file mode 100644 index 0000000..7bec313 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_l.png.import new file mode 100644 index 0000000..3356229 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drj3lhcvccv5s" +path="res://.godot/imported/bar_square_small_l.png-db33fc2eed9defe7e3f41a9450e62915.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_l.png" +dest_files=["res://.godot/imported/bar_square_small_l.png-db33fc2eed9defe7e3f41a9450e62915.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_m.png new file mode 100644 index 0000000..f3ed8e0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_m.png.import new file mode 100644 index 0000000..8ac01dd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnm6g5wp4pj73" +path="res://.godot/imported/bar_square_small_m.png-69f5f7fe1bf567a8654e4a62f20ac076.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_m.png" +dest_files=["res://.godot/imported/bar_square_small_m.png-69f5f7fe1bf567a8654e4a62f20ac076.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_r.png new file mode 100644 index 0000000..cfcbec1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_r.png.import new file mode 100644 index 0000000..fb76b4d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4hacv8mv5x7b" +path="res://.godot/imported/bar_square_small_r.png-ddbd97a4c9ee3c06c2507c695d85eb7a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_r.png" +dest_files=["res://.godot/imported/bar_square_small_r.png-ddbd97a4c9ee3c06c2507c695d85eb7a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_square.png new file mode 100644 index 0000000..14fda60 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_square.png.import new file mode 100644 index 0000000..85fda78 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o4si66ti708p" +path="res://.godot/imported/bar_square_small_square.png-4b87567359628ccdd52a4d0d36ec82ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/bar_square_small_square.png" +dest_files=["res://.godot/imported/bar_square_small_square.png-4b87567359628ccdd52a4d0d36ec82ff.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle.png new file mode 100644 index 0000000..cfb83a4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle.png.import new file mode 100644 index 0000000..fa78c2c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4joqoiljgaha" +path="res://.godot/imported/button_square_header_blade_rectangle.png-40c32c14b7ccfa9fc859828a29558a56.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.png-40c32c14b7ccfa9fc859828a29558a56.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle_screws.png new file mode 100644 index 0000000..e327b67 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle_screws.png.import new file mode 100644 index 0000000..7b3bf60 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6almm47irrs5" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.png-728dc591d8bf0f16db9cf3e78ff3b8cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.png-728dc591d8bf0f16db9cf3e78ff3b8cb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square.png new file mode 100644 index 0000000..f4a5ed6 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square.png.import new file mode 100644 index 0000000..afafca4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj8ns4ftuwcoh" +path="res://.godot/imported/button_square_header_blade_square.png-5ae7384a6f28f28f9674032b0f4d1879.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square.png" +dest_files=["res://.godot/imported/button_square_header_blade_square.png-5ae7384a6f28f28f9674032b0f4d1879.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square_screws.png new file mode 100644 index 0000000..52ffa12 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square_screws.png.import new file mode 100644 index 0000000..de4771b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdcdps7vm5cx6" +path="res://.godot/imported/button_square_header_blade_square_screws.png-94c1d6aa278b87616046ab5f619b3ec6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_blade_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.png-94c1d6aa278b87616046ab5f619b3ec6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle.png new file mode 100644 index 0000000..abbd6b7 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle.png.import new file mode 100644 index 0000000..696e37f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dndh4bd02yflh" +path="res://.godot/imported/button_square_header_large_rectangle.png-08f722aebfa724fc5a6e0aa3cb5d63e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.png-08f722aebfa724fc5a6e0aa3cb5d63e7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle_screws.png new file mode 100644 index 0000000..c9389e4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle_screws.png.import new file mode 100644 index 0000000..09e6229 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbxfssfr7anqo" +path="res://.godot/imported/button_square_header_large_rectangle_screws.png-c428bc8061ea0c69f4678ea416ece4ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.png-c428bc8061ea0c69f4678ea416ece4ba.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square.png new file mode 100644 index 0000000..bde1710 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square.png.import new file mode 100644 index 0000000..2b28f8e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drqgp76sn8iok" +path="res://.godot/imported/button_square_header_large_square.png-de26f282e453efb40b3b553f45701a12.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square.png" +dest_files=["res://.godot/imported/button_square_header_large_square.png-de26f282e453efb40b3b553f45701a12.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square_screws.png new file mode 100644 index 0000000..0ed5465 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square_screws.png.import new file mode 100644 index 0000000..93d9c5d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc6imlv88jvnr" +path="res://.godot/imported/button_square_header_large_square_screws.png-0f56e2a64aa7940f40c3c33e8f2fb9c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_large_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.png-0f56e2a64aa7940f40c3c33e8f2fb9c0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle.png new file mode 100644 index 0000000..681a553 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle.png.import new file mode 100644 index 0000000..8c8e488 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qiiawwnkrdbi" +path="res://.godot/imported/button_square_header_notch_rectangle.png-bba88dcd3f61a4bdfe6b98d9ba126161.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.png-bba88dcd3f61a4bdfe6b98d9ba126161.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle_screws.png new file mode 100644 index 0000000..9b99eb2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle_screws.png.import new file mode 100644 index 0000000..c8ee1d8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df4okwslhd22d" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.png-87fe693542091469d6dafb4b535d7484.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.png-87fe693542091469d6dafb4b535d7484.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square.png new file mode 100644 index 0000000..a0586d0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square.png.import new file mode 100644 index 0000000..cd44b9d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk4tbixf6ivjv" +path="res://.godot/imported/button_square_header_notch_square.png-dff458a0fe2f83894791fd273a86dac4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square.png" +dest_files=["res://.godot/imported/button_square_header_notch_square.png-dff458a0fe2f83894791fd273a86dac4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square_screws.png new file mode 100644 index 0000000..ff447e7 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square_screws.png.import new file mode 100644 index 0000000..f7bf4a3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1m17ovtfcyv0" +path="res://.godot/imported/button_square_header_notch_square_screws.png-4e686514be5a11c0e7c6d2ac98ef1e8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_notch_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.png-4e686514be5a11c0e7c6d2ac98ef1e8f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle.png new file mode 100644 index 0000000..dfd9012 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle.png.import new file mode 100644 index 0000000..73523c9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://27urw4fsuqiu" +path="res://.godot/imported/button_square_header_small_rectangle.png-b00358516326fde5de10b6b5df002348.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.png-b00358516326fde5de10b6b5df002348.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle_screws.png new file mode 100644 index 0000000..93d79de Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle_screws.png.import new file mode 100644 index 0000000..2d18c15 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbhc76xb64q3y" +path="res://.godot/imported/button_square_header_small_rectangle_screws.png-a0cf51b404aad1dff019ea9e8a25bcaf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.png-a0cf51b404aad1dff019ea9e8a25bcaf.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square.png new file mode 100644 index 0000000..185da78 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square.png.import new file mode 100644 index 0000000..ab152a8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqcc2276va430" +path="res://.godot/imported/button_square_header_small_square.png-5e8105c889f7ce11d6481f08982b88e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square.png" +dest_files=["res://.godot/imported/button_square_header_small_square.png-5e8105c889f7ce11d6481f08982b88e3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square_screws.png new file mode 100644 index 0000000..bf034e2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square_screws.png.import new file mode 100644 index 0000000..7998c18 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cho3ncsbdf4l" +path="res://.godot/imported/button_square_header_small_square_screws.png-e6a5c3d1b148b2b197fe19d10afb18f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/button_square_header_small_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.png-e6a5c3d1b148b2b197fe19d10afb18f9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_a.png new file mode 100644 index 0000000..aa7a7bc Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_a.png.import new file mode 100644 index 0000000..b7aa3b6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n4uvcvet43cj" +path="res://.godot/imported/crosshair_color_a.png-3ad89cf4f5c3907d8e9caff07eeb9f07.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_a.png" +dest_files=["res://.godot/imported/crosshair_color_a.png-3ad89cf4f5c3907d8e9caff07eeb9f07.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_b.png new file mode 100644 index 0000000..75763c0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_b.png.import new file mode 100644 index 0000000..2fc7f36 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0q0vsny20luy" +path="res://.godot/imported/crosshair_color_b.png-e65ffeee1d20a8d1b686b97b3b0f3924.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_b.png" +dest_files=["res://.godot/imported/crosshair_color_b.png-e65ffeee1d20a8d1b686b97b3b0f3924.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_c.png new file mode 100644 index 0000000..b778d2b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_c.png.import new file mode 100644 index 0000000..77bacd9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5if7h6ktqjbm" +path="res://.godot/imported/crosshair_color_c.png-995a93566fd31a0038b6a2a83aca77f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_c.png" +dest_files=["res://.godot/imported/crosshair_color_c.png-995a93566fd31a0038b6a2a83aca77f6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_d.png new file mode 100644 index 0000000..e63f04b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_d.png.import new file mode 100644 index 0000000..9c56dc2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk308322fait0" +path="res://.godot/imported/crosshair_color_d.png-d2c29610580698dd355178fa1e2bccb6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Default/crosshair_color_d.png" +dest_files=["res://.godot/imported/crosshair_color_d.png-d2c29610580698dd355178fa1e2bccb6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large.png new file mode 100644 index 0000000..378c7ca Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large.png.import new file mode 100644 index 0000000..866d3a4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://64sckwvcwjgs" +path="res://.godot/imported/bar_round_gloss_large.png-5b68d3a85a90fd7710c2645c7218b021.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large.png" +dest_files=["res://.godot/imported/bar_round_gloss_large.png-5b68d3a85a90fd7710c2645c7218b021.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_l.png new file mode 100644 index 0000000..0d7ce58 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_l.png.import new file mode 100644 index 0000000..b6ac866 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dojd2qtcss5px" +path="res://.godot/imported/bar_round_gloss_large_l.png-81cd3982bbf10d246a83931c8e15c035.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.png-81cd3982bbf10d246a83931c8e15c035.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_m.png new file mode 100644 index 0000000..a5e65ce Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_m.png.import new file mode 100644 index 0000000..5e943cd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhqfqewgv3sqj" +path="res://.godot/imported/bar_round_gloss_large_m.png-b6dc04a500e7872329dedab0f0759b02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.png-b6dc04a500e7872329dedab0f0759b02.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_r.png new file mode 100644 index 0000000..6f88f06 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_r.png.import new file mode 100644 index 0000000..758d100 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cccaivoccgh15" +path="res://.godot/imported/bar_round_gloss_large_r.png-d6c42b13a70edd7edc477c6758a8eb2d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.png-d6c42b13a70edd7edc477c6758a8eb2d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_square.png new file mode 100644 index 0000000..0ee74bd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_square.png.import new file mode 100644 index 0000000..2caf46a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdh3ggl2w3yc7" +path="res://.godot/imported/bar_round_gloss_large_square.png-2ff81fff05b132f84ce1b60fbd01e0cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.png-2ff81fff05b132f84ce1b60fbd01e0cb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small.png new file mode 100644 index 0000000..201e908 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small.png.import new file mode 100644 index 0000000..a187b27 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2x7b3uriyuva" +path="res://.godot/imported/bar_round_gloss_small.png-636f78fbe27f5947e8b063cdb30fac38.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small.png" +dest_files=["res://.godot/imported/bar_round_gloss_small.png-636f78fbe27f5947e8b063cdb30fac38.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_l.png new file mode 100644 index 0000000..5b1bcd5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_l.png.import new file mode 100644 index 0000000..4e26d43 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d036uvbi4fofo" +path="res://.godot/imported/bar_round_gloss_small_l.png-efb37185053fab041418a6e0e8f1149b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.png-efb37185053fab041418a6e0e8f1149b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_m.png new file mode 100644 index 0000000..f37798d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_m.png.import new file mode 100644 index 0000000..7a23cc5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bniph0ia8wu1n" +path="res://.godot/imported/bar_round_gloss_small_m.png-8f7864fd46d633c34a1c66ab6cecd5a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.png-8f7864fd46d633c34a1c66ab6cecd5a2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_r.png new file mode 100644 index 0000000..c34d94f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_r.png.import new file mode 100644 index 0000000..dac818e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chuo2my3dq8m0" +path="res://.godot/imported/bar_round_gloss_small_r.png-3841d9cd8acf537afde5eb08f13bc936.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.png-3841d9cd8acf537afde5eb08f13bc936.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_square.png new file mode 100644 index 0000000..aab3d6a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_square.png.import new file mode 100644 index 0000000..e96c0e6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bulh7cjk0d5xt" +path="res://.godot/imported/bar_round_gloss_small_square.png-3d32a104cb58fd7c93d2e70e21cc3622.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.png-3d32a104cb58fd7c93d2e70e21cc3622.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large.png new file mode 100644 index 0000000..a6dcdc2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large.png.import new file mode 100644 index 0000000..1c1967c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp2jav7b8p1jq" +path="res://.godot/imported/bar_round_large.png-a11a48bdf36c54e750c8b0f22c98a186.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large.png" +dest_files=["res://.godot/imported/bar_round_large.png-a11a48bdf36c54e750c8b0f22c98a186.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_l.png new file mode 100644 index 0000000..457c57e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_l.png.import new file mode 100644 index 0000000..59749b8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du7m1p1vyeqgj" +path="res://.godot/imported/bar_round_large_l.png-8b35ecac359762a61d5edd4c5a153292.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_l.png" +dest_files=["res://.godot/imported/bar_round_large_l.png-8b35ecac359762a61d5edd4c5a153292.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_m.png new file mode 100644 index 0000000..51e8f71 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_m.png.import new file mode 100644 index 0000000..555177f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d73gqyk425dk" +path="res://.godot/imported/bar_round_large_m.png-6824fc5d9e6a55c860dd314730bc854f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_m.png" +dest_files=["res://.godot/imported/bar_round_large_m.png-6824fc5d9e6a55c860dd314730bc854f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_r.png new file mode 100644 index 0000000..944924e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_r.png.import new file mode 100644 index 0000000..5600a1d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ebt3htw6gfox" +path="res://.godot/imported/bar_round_large_r.png-d7e2ad510ffa2342ecf964e579919b51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_r.png" +dest_files=["res://.godot/imported/bar_round_large_r.png-d7e2ad510ffa2342ecf964e579919b51.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_square.png new file mode 100644 index 0000000..b25caea Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_square.png.import new file mode 100644 index 0000000..00dbc37 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddl623yrf57j1" +path="res://.godot/imported/bar_round_large_square.png-3be4f29b8f95911f2084e78b10fadfce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_large_square.png" +dest_files=["res://.godot/imported/bar_round_large_square.png-3be4f29b8f95911f2084e78b10fadfce.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small.png new file mode 100644 index 0000000..a5eee0f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small.png.import new file mode 100644 index 0000000..d18f563 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mivjban05hbe" +path="res://.godot/imported/bar_round_small.png-2672cff6b28200d856aa6cb4a9057555.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small.png" +dest_files=["res://.godot/imported/bar_round_small.png-2672cff6b28200d856aa6cb4a9057555.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_l.png new file mode 100644 index 0000000..8536fd1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_l.png.import new file mode 100644 index 0000000..3954e6e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hf5s14tytw17" +path="res://.godot/imported/bar_round_small_l.png-2cbcdae13f16bc8494a473368d244af3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_l.png" +dest_files=["res://.godot/imported/bar_round_small_l.png-2cbcdae13f16bc8494a473368d244af3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_m.png new file mode 100644 index 0000000..b2a51ff Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_m.png.import new file mode 100644 index 0000000..7137298 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm3ua2fgnubgx" +path="res://.godot/imported/bar_round_small_m.png-91c287989ae7fdcdb8c122c698f6ef05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_m.png" +dest_files=["res://.godot/imported/bar_round_small_m.png-91c287989ae7fdcdb8c122c698f6ef05.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_r.png new file mode 100644 index 0000000..dc96c56 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_r.png.import new file mode 100644 index 0000000..819e9e7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coeuhiyiy2106" +path="res://.godot/imported/bar_round_small_r.png-a7160a9a41a1a940ced904801fb591a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_r.png" +dest_files=["res://.godot/imported/bar_round_small_r.png-a7160a9a41a1a940ced904801fb591a0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_square.png new file mode 100644 index 0000000..eed4e03 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_square.png.import new file mode 100644 index 0000000..24acf6a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3ccyjgxsh1mr" +path="res://.godot/imported/bar_round_small_square.png-4848a1b215b55e0148b5b52bd9fe77ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_round_small_square.png" +dest_files=["res://.godot/imported/bar_round_small_square.png-4848a1b215b55e0148b5b52bd9fe77ae.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large.png new file mode 100644 index 0000000..76e671f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large.png.import new file mode 100644 index 0000000..dd6b1e7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhfaxg1m23j5y" +path="res://.godot/imported/bar_square_gloss_large.png-8a438f17b18374f4127e1cce9b4f4e05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large.png" +dest_files=["res://.godot/imported/bar_square_gloss_large.png-8a438f17b18374f4127e1cce9b4f4e05.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_l.png new file mode 100644 index 0000000..84140cb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_l.png.import new file mode 100644 index 0000000..a0251f4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wcndf6unw88p" +path="res://.godot/imported/bar_square_gloss_large_l.png-afb8548fcb95745a43affe551019efde.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.png-afb8548fcb95745a43affe551019efde.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_m.png new file mode 100644 index 0000000..a5e65ce Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_m.png.import new file mode 100644 index 0000000..9a1c4cf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://siv8e853lrl1" +path="res://.godot/imported/bar_square_gloss_large_m.png-a0ae0e3c8803b46454a10dd4b6c11e4c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.png-a0ae0e3c8803b46454a10dd4b6c11e4c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_r.png new file mode 100644 index 0000000..31935c0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_r.png.import new file mode 100644 index 0000000..0101e37 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3o6yw1xn73y3" +path="res://.godot/imported/bar_square_gloss_large_r.png-15587d2357442b5c1fbe964dc37220da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.png-15587d2357442b5c1fbe964dc37220da.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_square.png new file mode 100644 index 0000000..d1c6121 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_square.png.import new file mode 100644 index 0000000..e23f8fd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgafk8ud12sya" +path="res://.godot/imported/bar_square_gloss_large_square.png-e6da88bd53906232d88c50183f857271.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.png-e6da88bd53906232d88c50183f857271.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small.png new file mode 100644 index 0000000..c39fb4e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small.png.import new file mode 100644 index 0000000..6436891 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clo86qgdcq3hw" +path="res://.godot/imported/bar_square_gloss_small.png-5e067dab86dd45e36fd988ad76d5711c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small.png" +dest_files=["res://.godot/imported/bar_square_gloss_small.png-5e067dab86dd45e36fd988ad76d5711c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_l.png new file mode 100644 index 0000000..a5b7765 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_l.png.import new file mode 100644 index 0000000..d00e1c6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd412ces7o5ws" +path="res://.godot/imported/bar_square_gloss_small_l.png-0f96a3563e2fd896ca19eb1d8b799a13.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.png-0f96a3563e2fd896ca19eb1d8b799a13.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_m.png new file mode 100644 index 0000000..f37798d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_m.png.import new file mode 100644 index 0000000..f3efbee --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx62mw7d2cs3g" +path="res://.godot/imported/bar_square_gloss_small_m.png-ea2460ffefa41975f98a8b151dddc556.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.png-ea2460ffefa41975f98a8b151dddc556.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_r.png new file mode 100644 index 0000000..1ad1336 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_r.png.import new file mode 100644 index 0000000..a4f66b6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjuhcac6on1x4" +path="res://.godot/imported/bar_square_gloss_small_r.png-088e059bd1288319eecd97d5e38cd806.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.png-088e059bd1288319eecd97d5e38cd806.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_square.png new file mode 100644 index 0000000..a70fecf Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_square.png.import new file mode 100644 index 0000000..902ef9a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bobky2pvk0awk" +path="res://.godot/imported/bar_square_gloss_small_square.png-6a31ebfc6b4f7dbf9ad9d60ee0f56546.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.png-6a31ebfc6b4f7dbf9ad9d60ee0f56546.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large.png new file mode 100644 index 0000000..9208890 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large.png.import new file mode 100644 index 0000000..537b309 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chp170ptcap5c" +path="res://.godot/imported/bar_square_large.png-620c031cb0af6d742cff852d454d5213.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large.png" +dest_files=["res://.godot/imported/bar_square_large.png-620c031cb0af6d742cff852d454d5213.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_l.png new file mode 100644 index 0000000..75255fd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_l.png.import new file mode 100644 index 0000000..a17dc4d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccgugq06brido" +path="res://.godot/imported/bar_square_large_l.png-f6949a4abf5b6838186bdf528f32054a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_l.png" +dest_files=["res://.godot/imported/bar_square_large_l.png-f6949a4abf5b6838186bdf528f32054a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_m.png new file mode 100644 index 0000000..51e8f71 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_m.png.import new file mode 100644 index 0000000..56c607b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cexxx2mvsij7k" +path="res://.godot/imported/bar_square_large_m.png-bd285519315b6686f3311af1103f7094.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_m.png" +dest_files=["res://.godot/imported/bar_square_large_m.png-bd285519315b6686f3311af1103f7094.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_r.png new file mode 100644 index 0000000..cc994df Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_r.png.import new file mode 100644 index 0000000..45525ff --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be6rtm5b1kwpo" +path="res://.godot/imported/bar_square_large_r.png-9fc306e4ff727afb3388a697caf5a763.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_r.png" +dest_files=["res://.godot/imported/bar_square_large_r.png-9fc306e4ff727afb3388a697caf5a763.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_square.png new file mode 100644 index 0000000..38b9bd9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_square.png.import new file mode 100644 index 0000000..706524c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn7nxvjy73nyc" +path="res://.godot/imported/bar_square_large_square.png-a8b991249ba79c3e2342078813f49ab4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_large_square.png" +dest_files=["res://.godot/imported/bar_square_large_square.png-a8b991249ba79c3e2342078813f49ab4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small.png new file mode 100644 index 0000000..1ccd6c9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small.png.import new file mode 100644 index 0000000..400954b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dowgtk5nfv76q" +path="res://.godot/imported/bar_square_small.png-0fd968038ccf9224b3b8db3de75f0528.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small.png" +dest_files=["res://.godot/imported/bar_square_small.png-0fd968038ccf9224b3b8db3de75f0528.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_l.png new file mode 100644 index 0000000..32b0abd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_l.png.import new file mode 100644 index 0000000..94fe85f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0kvpk5nbiybw" +path="res://.godot/imported/bar_square_small_l.png-b66f4c347d9ba8019dbd1c325e99df41.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_l.png" +dest_files=["res://.godot/imported/bar_square_small_l.png-b66f4c347d9ba8019dbd1c325e99df41.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_m.png new file mode 100644 index 0000000..b2a51ff Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_m.png.import new file mode 100644 index 0000000..95b9d4c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc4dqspm61n7j" +path="res://.godot/imported/bar_square_small_m.png-bfba5bc0f26e4799d0f590473f5dc054.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_m.png" +dest_files=["res://.godot/imported/bar_square_small_m.png-bfba5bc0f26e4799d0f590473f5dc054.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_r.png new file mode 100644 index 0000000..66d62bc Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_r.png.import new file mode 100644 index 0000000..8dd03bb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk6702d1muw3p" +path="res://.godot/imported/bar_square_small_r.png-afab7a2612b28cc4e02737bb6c99a7cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_r.png" +dest_files=["res://.godot/imported/bar_square_small_r.png-afab7a2612b28cc4e02737bb6c99a7cd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_square.png new file mode 100644 index 0000000..134bdb0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_square.png.import new file mode 100644 index 0000000..a68a1ea --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n01kv5at264v" +path="res://.godot/imported/bar_square_small_square.png-37059a5cc7591492c283b51e396a3562.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/bar_square_small_square.png" +dest_files=["res://.godot/imported/bar_square_small_square.png-37059a5cc7591492c283b51e396a3562.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle.png new file mode 100644 index 0000000..3136272 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle.png.import new file mode 100644 index 0000000..b878d74 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ebsbxrrcnayf" +path="res://.godot/imported/button_square_header_blade_rectangle.png-caf983bc018243a4fe228892560916e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.png-caf983bc018243a4fe228892560916e5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle_screws.png new file mode 100644 index 0000000..1fb7b95 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle_screws.png.import new file mode 100644 index 0000000..aed4af4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doa4onnd6namy" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.png-556d0ae1b27544319eb43531c2f5a86a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.png-556d0ae1b27544319eb43531c2f5a86a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square.png new file mode 100644 index 0000000..e66091f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square.png.import new file mode 100644 index 0000000..6c35984 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5mty4mpboj78" +path="res://.godot/imported/button_square_header_blade_square.png-e0c3c1b994e0e1e924d581dff713b45a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square.png" +dest_files=["res://.godot/imported/button_square_header_blade_square.png-e0c3c1b994e0e1e924d581dff713b45a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square_screws.png new file mode 100644 index 0000000..3574822 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square_screws.png.import new file mode 100644 index 0000000..e3b4408 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pifmnxfg5uus" +path="res://.godot/imported/button_square_header_blade_square_screws.png-9c15c0ec1965fe0b2842554aeafad32a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_blade_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.png-9c15c0ec1965fe0b2842554aeafad32a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle.png new file mode 100644 index 0000000..c75b419 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle.png.import new file mode 100644 index 0000000..58c980d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qywxvy2vt026" +path="res://.godot/imported/button_square_header_large_rectangle.png-d269f8a1c75143e7396490079930d6bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.png-d269f8a1c75143e7396490079930d6bb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle_screws.png new file mode 100644 index 0000000..5247914 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle_screws.png.import new file mode 100644 index 0000000..9497c77 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c80l8gebmv44g" +path="res://.godot/imported/button_square_header_large_rectangle_screws.png-ce1444c5ca7ae679e4f34a990be6078d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.png-ce1444c5ca7ae679e4f34a990be6078d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square.png new file mode 100644 index 0000000..f082221 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square.png.import new file mode 100644 index 0000000..1810788 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm1fcudh6gscb" +path="res://.godot/imported/button_square_header_large_square.png-e02e5678a027899370c09367ed26c0aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square.png" +dest_files=["res://.godot/imported/button_square_header_large_square.png-e02e5678a027899370c09367ed26c0aa.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square_screws.png new file mode 100644 index 0000000..d28a3ce Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square_screws.png.import new file mode 100644 index 0000000..c2662ec --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgrtt50bm85b5" +path="res://.godot/imported/button_square_header_large_square_screws.png-62a7f11aa2d55a6d21563466c002c35b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_large_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.png-62a7f11aa2d55a6d21563466c002c35b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle.png new file mode 100644 index 0000000..4fc8f50 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle.png.import new file mode 100644 index 0000000..12596e2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dt658ockhueho" +path="res://.godot/imported/button_square_header_notch_rectangle.png-db0906fecaf8ce8f8e05ca0c07b4cdb7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.png-db0906fecaf8ce8f8e05ca0c07b4cdb7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle_screws.png new file mode 100644 index 0000000..500151b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle_screws.png.import new file mode 100644 index 0000000..9cb4ed9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmg1gk5qx7c5" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.png-89c476e0380ff40484075d83321a494e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.png-89c476e0380ff40484075d83321a494e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square.png new file mode 100644 index 0000000..6f1b115 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square.png.import new file mode 100644 index 0000000..29d0a5f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br0pk55wqjed5" +path="res://.godot/imported/button_square_header_notch_square.png-56fc43346c7d239378bfbb430754fb8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square.png" +dest_files=["res://.godot/imported/button_square_header_notch_square.png-56fc43346c7d239378bfbb430754fb8e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square_screws.png new file mode 100644 index 0000000..0b222a5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square_screws.png.import new file mode 100644 index 0000000..8131cd6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg70artk0fgj1" +path="res://.godot/imported/button_square_header_notch_square_screws.png-423d1be8db7debf0abdb37ccd6cf95f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_notch_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.png-423d1be8db7debf0abdb37ccd6cf95f5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle.png new file mode 100644 index 0000000..6bca566 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle.png.import new file mode 100644 index 0000000..90df812 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc5spen0xi0m0" +path="res://.godot/imported/button_square_header_small_rectangle.png-b6c3337aca7b17bf46c9d916b51073eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.png-b6c3337aca7b17bf46c9d916b51073eb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle_screws.png new file mode 100644 index 0000000..1dc1442 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle_screws.png.import new file mode 100644 index 0000000..588fbe9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://davip6dc8k2h3" +path="res://.godot/imported/button_square_header_small_rectangle_screws.png-efe3399eccddea52f24bfa29446a9a3d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.png-efe3399eccddea52f24bfa29446a9a3d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square.png new file mode 100644 index 0000000..5ea6485 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square.png.import new file mode 100644 index 0000000..f9607ca --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs1aab2wjwox8" +path="res://.godot/imported/button_square_header_small_square.png-9fb473feefca5da040aa17e7aeb8cc2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square.png" +dest_files=["res://.godot/imported/button_square_header_small_square.png-9fb473feefca5da040aa17e7aeb8cc2c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square_screws.png new file mode 100644 index 0000000..aaa253b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square_screws.png.import new file mode 100644 index 0000000..4eb8b68 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c57pmbjuhrcac" +path="res://.godot/imported/button_square_header_small_square_screws.png-7aafe33b039608d00bdd5d9554a274bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/button_square_header_small_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.png-7aafe33b039608d00bdd5d9554a274bd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_a.png new file mode 100644 index 0000000..8dbfb2d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_a.png.import new file mode 100644 index 0000000..c40c514 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o5rv8qimanh8" +path="res://.godot/imported/crosshair_color_a.png-8569f46139d42afc507f0b57c11f13cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_a.png" +dest_files=["res://.godot/imported/crosshair_color_a.png-8569f46139d42afc507f0b57c11f13cb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_b.png new file mode 100644 index 0000000..67f8727 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_b.png.import new file mode 100644 index 0000000..051d9a8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpx7y462h5qyu" +path="res://.godot/imported/crosshair_color_b.png-c25848af633dede204cc9b85ccb96857.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_b.png" +dest_files=["res://.godot/imported/crosshair_color_b.png-c25848af633dede204cc9b85ccb96857.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_c.png new file mode 100644 index 0000000..6390e22 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_c.png.import new file mode 100644 index 0000000..9cc39ae --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4o81sabruu3a" +path="res://.godot/imported/crosshair_color_c.png-d8fc9850539661c8b7fc010287d7a08e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_c.png" +dest_files=["res://.godot/imported/crosshair_color_c.png-d8fc9850539661c8b7fc010287d7a08e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_d.png new file mode 100644 index 0000000..5425a17 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_d.png.import new file mode 100644 index 0000000..93b8bcc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4ou3gog6unii" +path="res://.godot/imported/crosshair_color_d.png-07e788ee14eca78d5d10a3f16f7e0590.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Red/Double/crosshair_color_d.png" +dest_files=["res://.godot/imported/crosshair_color_d.png-07e788ee14eca78d5d10a3f16f7e0590.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large.png new file mode 100644 index 0000000..179a1f8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large.png.import new file mode 100644 index 0000000..a1b32db --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdrg5xtqb5q03" +path="res://.godot/imported/bar_round_gloss_large.png-50b3bdf9b26a1f01077c22c2b4cc098b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large.png" +dest_files=["res://.godot/imported/bar_round_gloss_large.png-50b3bdf9b26a1f01077c22c2b4cc098b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_l.png new file mode 100644 index 0000000..067e9a3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_l.png.import new file mode 100644 index 0000000..2486001 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnw5as5di6dei" +path="res://.godot/imported/bar_round_gloss_large_l.png-b7ff7df9892f9a0d7d491f3b4d9b5761.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.png-b7ff7df9892f9a0d7d491f3b4d9b5761.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_m.png new file mode 100644 index 0000000..a55e2a8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_m.png.import new file mode 100644 index 0000000..08f53d5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5gsh8alfxkke" +path="res://.godot/imported/bar_round_gloss_large_m.png-553caaccbe3c6ef9b1c5cc60f4a6094e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.png-553caaccbe3c6ef9b1c5cc60f4a6094e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_r.png new file mode 100644 index 0000000..2e5cc94 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_r.png.import new file mode 100644 index 0000000..da86855 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cm7bj68abow4b" +path="res://.godot/imported/bar_round_gloss_large_r.png-3b808a7511dfda3822004643f6194a50.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.png-3b808a7511dfda3822004643f6194a50.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_square.png new file mode 100644 index 0000000..97f6d1d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_square.png.import new file mode 100644 index 0000000..c11bf6a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyaq2oejfkjdj" +path="res://.godot/imported/bar_round_gloss_large_square.png-fb5510a36e31c1875788a9483cf6d5a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.png-fb5510a36e31c1875788a9483cf6d5a7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small.png new file mode 100644 index 0000000..47999a5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small.png.import new file mode 100644 index 0000000..175e4eb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://damjmotg70k7u" +path="res://.godot/imported/bar_round_gloss_small.png-84c25c99bc634c76fd647f4b53613014.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small.png" +dest_files=["res://.godot/imported/bar_round_gloss_small.png-84c25c99bc634c76fd647f4b53613014.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_l.png new file mode 100644 index 0000000..99f73e1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_l.png.import new file mode 100644 index 0000000..f54ae36 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1qw0kgqw68wj" +path="res://.godot/imported/bar_round_gloss_small_l.png-d234244c39e4359ef8fde09cbbdd6764.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.png-d234244c39e4359ef8fde09cbbdd6764.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_m.png new file mode 100644 index 0000000..7399e7d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_m.png.import new file mode 100644 index 0000000..f9923f5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bluv7rqxn467b" +path="res://.godot/imported/bar_round_gloss_small_m.png-78c8ec1bab1b48c00d21e697ca554763.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.png-78c8ec1bab1b48c00d21e697ca554763.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_r.png new file mode 100644 index 0000000..f8d7dcb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_r.png.import new file mode 100644 index 0000000..ddc142b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dogkbqjymscnl" +path="res://.godot/imported/bar_round_gloss_small_r.png-3c17a0cf08d2fa97e1bd3b7f3559ae39.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.png-3c17a0cf08d2fa97e1bd3b7f3559ae39.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_square.png new file mode 100644 index 0000000..3cdb9c9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_square.png.import new file mode 100644 index 0000000..7f0d55b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvxgflcontr18" +path="res://.godot/imported/bar_round_gloss_small_square.png-3483964f0e5544ba5647d80415f3996a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.png-3483964f0e5544ba5647d80415f3996a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large.png new file mode 100644 index 0000000..8b7ab67 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large.png.import new file mode 100644 index 0000000..14f00db --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvboak4dcbtoq" +path="res://.godot/imported/bar_round_large.png-94ff891be5dd70e81e232c73a856ab49.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large.png" +dest_files=["res://.godot/imported/bar_round_large.png-94ff891be5dd70e81e232c73a856ab49.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_l.png new file mode 100644 index 0000000..65230f3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_l.png.import new file mode 100644 index 0000000..6a8f80c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4awua3tsfcpf" +path="res://.godot/imported/bar_round_large_l.png-2218e318986a5f78fa604926bde2e95a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_l.png" +dest_files=["res://.godot/imported/bar_round_large_l.png-2218e318986a5f78fa604926bde2e95a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_m.png new file mode 100644 index 0000000..7532497 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_m.png.import new file mode 100644 index 0000000..34e9d3f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4jdyw5tdawts" +path="res://.godot/imported/bar_round_large_m.png-ec65efa127ba6491692de2df8ed26f25.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_m.png" +dest_files=["res://.godot/imported/bar_round_large_m.png-ec65efa127ba6491692de2df8ed26f25.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_r.png new file mode 100644 index 0000000..058ceaa Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_r.png.import new file mode 100644 index 0000000..0577c1d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnpf3irk82mws" +path="res://.godot/imported/bar_round_large_r.png-abc49b59cb576fc624925a95dc138f51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_r.png" +dest_files=["res://.godot/imported/bar_round_large_r.png-abc49b59cb576fc624925a95dc138f51.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_square.png new file mode 100644 index 0000000..0c36f0a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_square.png.import new file mode 100644 index 0000000..b9bc36e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3y4pa0lkay70" +path="res://.godot/imported/bar_round_large_square.png-625aed73feb7a2e809c1e7101e9005a0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_large_square.png" +dest_files=["res://.godot/imported/bar_round_large_square.png-625aed73feb7a2e809c1e7101e9005a0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small.png new file mode 100644 index 0000000..2f99f05 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small.png.import new file mode 100644 index 0000000..f67b6fc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk60gw5nlc44d" +path="res://.godot/imported/bar_round_small.png-8993dccfd7c10f48e6e254769453a7b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small.png" +dest_files=["res://.godot/imported/bar_round_small.png-8993dccfd7c10f48e6e254769453a7b6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_l.png new file mode 100644 index 0000000..dc66e65 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_l.png.import new file mode 100644 index 0000000..bbae81d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk3o18y55m5wh" +path="res://.godot/imported/bar_round_small_l.png-77af7d5f8c7784e38935a8aecd184a26.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_l.png" +dest_files=["res://.godot/imported/bar_round_small_l.png-77af7d5f8c7784e38935a8aecd184a26.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_m.png new file mode 100644 index 0000000..cf8a500 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_m.png.import new file mode 100644 index 0000000..cce1ad5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://in3ibqmw65ys" +path="res://.godot/imported/bar_round_small_m.png-a2e13a61ab4341d6937cbe3d347e047f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_m.png" +dest_files=["res://.godot/imported/bar_round_small_m.png-a2e13a61ab4341d6937cbe3d347e047f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_r.png new file mode 100644 index 0000000..ba65b6b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_r.png.import new file mode 100644 index 0000000..24aede8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtwhc6j4sr56j" +path="res://.godot/imported/bar_round_small_r.png-23610e89f3826baf1d5a979a481befce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_r.png" +dest_files=["res://.godot/imported/bar_round_small_r.png-23610e89f3826baf1d5a979a481befce.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_square.png new file mode 100644 index 0000000..74af284 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_square.png.import new file mode 100644 index 0000000..193aacf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs8khw3vt2wbc" +path="res://.godot/imported/bar_round_small_square.png-d61e7dc50d9f5c3a7ef60c278c5bfb92.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_round_small_square.png" +dest_files=["res://.godot/imported/bar_round_small_square.png-d61e7dc50d9f5c3a7ef60c278c5bfb92.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large.png new file mode 100644 index 0000000..16c06f3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large.png.import new file mode 100644 index 0000000..6aa067c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nv5b3owhxpyp" +path="res://.godot/imported/bar_square_gloss_large.png-4b420366fca0780a6661200673afab53.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large.png" +dest_files=["res://.godot/imported/bar_square_gloss_large.png-4b420366fca0780a6661200673afab53.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_l.png new file mode 100644 index 0000000..98c54e8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_l.png.import new file mode 100644 index 0000000..978ef3a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmtt1e0evgxxv" +path="res://.godot/imported/bar_square_gloss_large_l.png-93fdef1e83f054e05fef3b0204fc8daf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.png-93fdef1e83f054e05fef3b0204fc8daf.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_m.png new file mode 100644 index 0000000..a55e2a8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_m.png.import new file mode 100644 index 0000000..1c78932 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gxuwa00jkqjp" +path="res://.godot/imported/bar_square_gloss_large_m.png-efba47fcacc88ff01548da37fe724963.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.png-efba47fcacc88ff01548da37fe724963.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_r.png new file mode 100644 index 0000000..91fe133 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_r.png.import new file mode 100644 index 0000000..4226212 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4ah7olw0ot4s" +path="res://.godot/imported/bar_square_gloss_large_r.png-11a253c93c9231302f46993e097f5d84.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.png-11a253c93c9231302f46993e097f5d84.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_square.png new file mode 100644 index 0000000..ce3a893 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_square.png.import new file mode 100644 index 0000000..8bd1fc9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwy6et4ahi63b" +path="res://.godot/imported/bar_square_gloss_large_square.png-09017318ea253796752a4a7b3684f36a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.png-09017318ea253796752a4a7b3684f36a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small.png new file mode 100644 index 0000000..b9c0989 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small.png.import new file mode 100644 index 0000000..44ea28e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5cc044dr8b6a" +path="res://.godot/imported/bar_square_gloss_small.png-9e3e06021f4e5dc2fcb4812eca4ca6fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small.png" +dest_files=["res://.godot/imported/bar_square_gloss_small.png-9e3e06021f4e5dc2fcb4812eca4ca6fd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_l.png new file mode 100644 index 0000000..c99bc0f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_l.png.import new file mode 100644 index 0000000..12f6bf3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cixqmkf5kvvs3" +path="res://.godot/imported/bar_square_gloss_small_l.png-67b20670d0d53983c055865a945f440a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.png-67b20670d0d53983c055865a945f440a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_m.png new file mode 100644 index 0000000..7399e7d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_m.png.import new file mode 100644 index 0000000..fac0c50 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://er5aoc8aoirx" +path="res://.godot/imported/bar_square_gloss_small_m.png-435d54d7c27adaa4cca47d12e5a82a33.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.png-435d54d7c27adaa4cca47d12e5a82a33.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_r.png new file mode 100644 index 0000000..cd97d56 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_r.png.import new file mode 100644 index 0000000..a7bda37 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clmlu5mqvqam0" +path="res://.godot/imported/bar_square_gloss_small_r.png-f0b104501a7b661623d53d1e923e679a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.png-f0b104501a7b661623d53d1e923e679a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_square.png new file mode 100644 index 0000000..17bda3e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_square.png.import new file mode 100644 index 0000000..2366b08 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvlq10htafabp" +path="res://.godot/imported/bar_square_gloss_small_square.png-20bf5f95cc942f527e4e1da3360e308a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.png-20bf5f95cc942f527e4e1da3360e308a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large.png new file mode 100644 index 0000000..2daa848 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large.png.import new file mode 100644 index 0000000..4264433 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://73hy1g6dnyxt" +path="res://.godot/imported/bar_square_large.png-59158850b1eedb43bfb3ed83d00473d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large.png" +dest_files=["res://.godot/imported/bar_square_large.png-59158850b1eedb43bfb3ed83d00473d1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_l.png new file mode 100644 index 0000000..1a14e03 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_l.png.import new file mode 100644 index 0000000..6cae04d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dypsv1b4fxho3" +path="res://.godot/imported/bar_square_large_l.png-8d4029e250a264096f57268064850e95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_l.png" +dest_files=["res://.godot/imported/bar_square_large_l.png-8d4029e250a264096f57268064850e95.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_m.png new file mode 100644 index 0000000..7532497 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_m.png.import new file mode 100644 index 0000000..f9ed1ad --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0h8b67dduxmq" +path="res://.godot/imported/bar_square_large_m.png-aceec5f114d630567768a8836840ed51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_m.png" +dest_files=["res://.godot/imported/bar_square_large_m.png-aceec5f114d630567768a8836840ed51.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_r.png new file mode 100644 index 0000000..7199ecf Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_r.png.import new file mode 100644 index 0000000..1c3c81a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccp38fj6idg7p" +path="res://.godot/imported/bar_square_large_r.png-9a275e8f2ce83d36cb0af9dea4a1d608.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_r.png" +dest_files=["res://.godot/imported/bar_square_large_r.png-9a275e8f2ce83d36cb0af9dea4a1d608.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_square.png new file mode 100644 index 0000000..0d0a84e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_square.png.import new file mode 100644 index 0000000..c392383 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi1ibqrxa1n5v" +path="res://.godot/imported/bar_square_large_square.png-80083da524604326551488875d7c5fe3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_large_square.png" +dest_files=["res://.godot/imported/bar_square_large_square.png-80083da524604326551488875d7c5fe3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small.png new file mode 100644 index 0000000..45d3e53 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small.png.import new file mode 100644 index 0000000..2e0ade8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nryy6j44nr85" +path="res://.godot/imported/bar_square_small.png-d4f563cc2e2521e888ec1c7b6ee1fe69.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small.png" +dest_files=["res://.godot/imported/bar_square_small.png-d4f563cc2e2521e888ec1c7b6ee1fe69.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_l.png new file mode 100644 index 0000000..17ad20c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_l.png.import new file mode 100644 index 0000000..060dcc4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rlmugasp4u30" +path="res://.godot/imported/bar_square_small_l.png-1d648a87770f64851553bdb9aa9addc5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_l.png" +dest_files=["res://.godot/imported/bar_square_small_l.png-1d648a87770f64851553bdb9aa9addc5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_m.png new file mode 100644 index 0000000..cf8a500 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_m.png.import new file mode 100644 index 0000000..ebda287 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vvtscg8b1254" +path="res://.godot/imported/bar_square_small_m.png-89a4e3ea3303b37a31cc9312b40212b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_m.png" +dest_files=["res://.godot/imported/bar_square_small_m.png-89a4e3ea3303b37a31cc9312b40212b6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_r.png new file mode 100644 index 0000000..8822b61 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_r.png.import new file mode 100644 index 0000000..7ebac91 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6gfdla1m6xe4" +path="res://.godot/imported/bar_square_small_r.png-c9e8361a43510c9d468e2c3b1530cfcd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_r.png" +dest_files=["res://.godot/imported/bar_square_small_r.png-c9e8361a43510c9d468e2c3b1530cfcd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_square.png new file mode 100644 index 0000000..f762b1a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_square.png.import new file mode 100644 index 0000000..3da2ce8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc0rnu7rc1f30" +path="res://.godot/imported/bar_square_small_square.png-f94f04c794b6bf7c07a53bc5e67abe06.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/bar_square_small_square.png" +dest_files=["res://.godot/imported/bar_square_small_square.png-f94f04c794b6bf7c07a53bc5e67abe06.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle.png new file mode 100644 index 0000000..78247a6 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle.png.import new file mode 100644 index 0000000..28a142d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://58ddh5u0m2yf" +path="res://.godot/imported/button_square_header_blade_rectangle.png-e7ec142e4ab705214f853ab38f845a45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.png-e7ec142e4ab705214f853ab38f845a45.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle_screws.png new file mode 100644 index 0000000..768fa7b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle_screws.png.import new file mode 100644 index 0000000..cbe7453 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8747y64mcl2p" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.png-8de4beb9c7dee5ab9aa5f1074f086946.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.png-8de4beb9c7dee5ab9aa5f1074f086946.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square.png new file mode 100644 index 0000000..f72e841 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square.png.import new file mode 100644 index 0000000..fc37819 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de6t8ghhhy1jh" +path="res://.godot/imported/button_square_header_blade_square.png-fdb21709e3e82e9c42b4c80b3e04baae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square.png" +dest_files=["res://.godot/imported/button_square_header_blade_square.png-fdb21709e3e82e9c42b4c80b3e04baae.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square_screws.png new file mode 100644 index 0000000..7142dc2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square_screws.png.import new file mode 100644 index 0000000..a0201d8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx7kgf4r0r8l7" +path="res://.godot/imported/button_square_header_blade_square_screws.png-874169f4ec34945c23f7facf8afd3449.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_blade_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.png-874169f4ec34945c23f7facf8afd3449.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle.png new file mode 100644 index 0000000..ca6b2e3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle.png.import new file mode 100644 index 0000000..a0e5d5a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvhvvkpeenx4o" +path="res://.godot/imported/button_square_header_large_rectangle.png-3939e907faa836635fe5328b03c4dde0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.png-3939e907faa836635fe5328b03c4dde0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle_screws.png new file mode 100644 index 0000000..dfe7920 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle_screws.png.import new file mode 100644 index 0000000..a9c339b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dl3ave27eu3xt" +path="res://.godot/imported/button_square_header_large_rectangle_screws.png-f69649b7ba4a2d0a7e703b99c51885be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.png-f69649b7ba4a2d0a7e703b99c51885be.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square.png new file mode 100644 index 0000000..a7b81fb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square.png.import new file mode 100644 index 0000000..c835db7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3p35fotnynv0" +path="res://.godot/imported/button_square_header_large_square.png-6cc9721ef8aac126cb96043699abc8a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square.png" +dest_files=["res://.godot/imported/button_square_header_large_square.png-6cc9721ef8aac126cb96043699abc8a8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square_screws.png new file mode 100644 index 0000000..b8b893a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square_screws.png.import new file mode 100644 index 0000000..5b132bf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmr8s3i2usrhf" +path="res://.godot/imported/button_square_header_large_square_screws.png-b936435c67abd3ce35d9b7fa9f1f4b78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_large_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.png-b936435c67abd3ce35d9b7fa9f1f4b78.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle.png new file mode 100644 index 0000000..023ed09 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle.png.import new file mode 100644 index 0000000..690d444 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dasgxx00p111e" +path="res://.godot/imported/button_square_header_notch_rectangle.png-91ad4c41ae3d11eb203c399c5555ddee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.png-91ad4c41ae3d11eb203c399c5555ddee.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle_screws.png new file mode 100644 index 0000000..ed7282e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle_screws.png.import new file mode 100644 index 0000000..6a701b6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvs8wlac3jl02" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.png-a81ef5c3be1327d33d56573730ccc902.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.png-a81ef5c3be1327d33d56573730ccc902.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square.png new file mode 100644 index 0000000..10bcfd9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square.png.import new file mode 100644 index 0000000..66eec95 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://can40ha0po55n" +path="res://.godot/imported/button_square_header_notch_square.png-94ba3e9c7ad696d8319769cc6a8285ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square.png" +dest_files=["res://.godot/imported/button_square_header_notch_square.png-94ba3e9c7ad696d8319769cc6a8285ef.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square_screws.png new file mode 100644 index 0000000..1d97925 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square_screws.png.import new file mode 100644 index 0000000..e279121 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkn31lhs0t1lb" +path="res://.godot/imported/button_square_header_notch_square_screws.png-7d2d9918838a0f71fa1b84b3367e9edf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_notch_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.png-7d2d9918838a0f71fa1b84b3367e9edf.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle.png new file mode 100644 index 0000000..e61ece4 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle.png.import new file mode 100644 index 0000000..0112e79 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://j3da1f62tui5" +path="res://.godot/imported/button_square_header_small_rectangle.png-251c9f7f8fe18d5d9c06039268b042ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.png-251c9f7f8fe18d5d9c06039268b042ac.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle_screws.png new file mode 100644 index 0000000..f88487e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle_screws.png.import new file mode 100644 index 0000000..30baa1a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gt4b2wjrl7me" +path="res://.godot/imported/button_square_header_small_rectangle_screws.png-a29feaec592a78a5efc19e96d3215a47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.png-a29feaec592a78a5efc19e96d3215a47.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square.png new file mode 100644 index 0000000..305fbc2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square.png.import new file mode 100644 index 0000000..e9ccc64 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clshfl5gmqhxb" +path="res://.godot/imported/button_square_header_small_square.png-84cb9a45de56e5e5418e621b98e28ca5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square.png" +dest_files=["res://.godot/imported/button_square_header_small_square.png-84cb9a45de56e5e5418e621b98e28ca5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square_screws.png new file mode 100644 index 0000000..290d656 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square_screws.png.import new file mode 100644 index 0000000..e8b13fc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nl0qw5qsjs6y" +path="res://.godot/imported/button_square_header_small_square_screws.png-acaa41986018f9eee171ade53da9b579.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/button_square_header_small_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.png-acaa41986018f9eee171ade53da9b579.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_a.png new file mode 100644 index 0000000..d47bf9c Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_a.png.import new file mode 100644 index 0000000..23bf406 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1o7wunfrfhxy" +path="res://.godot/imported/crosshair_color_a.png-f3bc1457440c807b2ed3cf038d527859.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_a.png" +dest_files=["res://.godot/imported/crosshair_color_a.png-f3bc1457440c807b2ed3cf038d527859.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_b.png new file mode 100644 index 0000000..27e7ba9 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_b.png.import new file mode 100644 index 0000000..645dff2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ngg126i6uw5" +path="res://.godot/imported/crosshair_color_b.png-083b1d3b385ac425ee2911f9495c875a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_b.png" +dest_files=["res://.godot/imported/crosshair_color_b.png-083b1d3b385ac425ee2911f9495c875a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_c.png new file mode 100644 index 0000000..9e73191 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_c.png.import new file mode 100644 index 0000000..b8b9be5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cebgoc4cj4qye" +path="res://.godot/imported/crosshair_color_c.png-341ea194411621f48e901661fc3f9875.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_c.png" +dest_files=["res://.godot/imported/crosshair_color_c.png-341ea194411621f48e901661fc3f9875.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_d.png new file mode 100644 index 0000000..5d97874 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_d.png.import new file mode 100644 index 0000000..bbd9641 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyubngwmr3i07" +path="res://.godot/imported/crosshair_color_d.png-06703ee3b63ca77a248ce4397490ea7e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Default/crosshair_color_d.png" +dest_files=["res://.godot/imported/crosshair_color_d.png-06703ee3b63ca77a248ce4397490ea7e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large.png new file mode 100644 index 0000000..011fdc8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large.png.import new file mode 100644 index 0000000..643ec6f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw1mjjm30evxy" +path="res://.godot/imported/bar_round_gloss_large.png-4df978cbf36f5ffbcfdca5538d038641.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large.png" +dest_files=["res://.godot/imported/bar_round_gloss_large.png-4df978cbf36f5ffbcfdca5538d038641.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_l.png new file mode 100644 index 0000000..99665e1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_l.png.import new file mode 100644 index 0000000..a9da749 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkicii33frbgk" +path="res://.godot/imported/bar_round_gloss_large_l.png-2d74beea76659b0c5d5d70fa45e8dcdf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.png-2d74beea76659b0c5d5d70fa45e8dcdf.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_m.png new file mode 100644 index 0000000..41d305f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_m.png.import new file mode 100644 index 0000000..81b0980 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfvhfgh4gi6i2" +path="res://.godot/imported/bar_round_gloss_large_m.png-2009f7b759a6cb17f6cd0c61f0994125.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.png-2009f7b759a6cb17f6cd0c61f0994125.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_r.png new file mode 100644 index 0000000..562eaad Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_r.png.import new file mode 100644 index 0000000..1c1a6a6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yqxajc7actbo" +path="res://.godot/imported/bar_round_gloss_large_r.png-bd8eb0a799cf87a0fd76a7e9914fd49a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.png-bd8eb0a799cf87a0fd76a7e9914fd49a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_square.png new file mode 100644 index 0000000..cf0c966 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_square.png.import new file mode 100644 index 0000000..b801074 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4fppsek2xe0u" +path="res://.godot/imported/bar_round_gloss_large_square.png-37c93ec3499bf8416bde40c27d1f8ae8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.png-37c93ec3499bf8416bde40c27d1f8ae8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small.png new file mode 100644 index 0000000..8f589f2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small.png.import new file mode 100644 index 0000000..a7004b9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f6gwpmhimwld" +path="res://.godot/imported/bar_round_gloss_small.png-b7e72c4cdc1675ca93b29f4c50bfc2a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small.png" +dest_files=["res://.godot/imported/bar_round_gloss_small.png-b7e72c4cdc1675ca93b29f4c50bfc2a2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_l.png new file mode 100644 index 0000000..e518e51 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_l.png.import new file mode 100644 index 0000000..1e61335 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsfyx1ei0sqhf" +path="res://.godot/imported/bar_round_gloss_small_l.png-8fdfe8f90a8ae2eac23de6908e04c844.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.png-8fdfe8f90a8ae2eac23de6908e04c844.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_m.png new file mode 100644 index 0000000..437a2ea Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_m.png.import new file mode 100644 index 0000000..4ceabb3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b21qb5a816m8b" +path="res://.godot/imported/bar_round_gloss_small_m.png-42dc9006e5b96ae0870dd8fa4b3cabe5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.png-42dc9006e5b96ae0870dd8fa4b3cabe5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_r.png new file mode 100644 index 0000000..a95296e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_r.png.import new file mode 100644 index 0000000..75b9f4d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi5hufx0gu87a" +path="res://.godot/imported/bar_round_gloss_small_r.png-3cad07fa6133a32cb075bd769283fa67.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.png-3cad07fa6133a32cb075bd769283fa67.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_square.png new file mode 100644 index 0000000..17393c3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_square.png.import new file mode 100644 index 0000000..ef74ac1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1pyvt7k78kp" +path="res://.godot/imported/bar_round_gloss_small_square.png-4b24f2880f92c6a19fecb402dd28e1f1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.png-4b24f2880f92c6a19fecb402dd28e1f1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large.png new file mode 100644 index 0000000..a856f55 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large.png.import new file mode 100644 index 0000000..d12ca87 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c65kvhero1hh3" +path="res://.godot/imported/bar_round_large.png-fe987b56e96f41903fd284615a117bba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large.png" +dest_files=["res://.godot/imported/bar_round_large.png-fe987b56e96f41903fd284615a117bba.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_l.png new file mode 100644 index 0000000..896dcfb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_l.png.import new file mode 100644 index 0000000..0a60f15 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8qkkx2xjs5e5" +path="res://.godot/imported/bar_round_large_l.png-21d598c1a3c0c1bee839ec66cdc836ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_l.png" +dest_files=["res://.godot/imported/bar_round_large_l.png-21d598c1a3c0c1bee839ec66cdc836ae.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_m.png new file mode 100644 index 0000000..c3c82c3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_m.png.import new file mode 100644 index 0000000..650517e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buslepacl077p" +path="res://.godot/imported/bar_round_large_m.png-9f48f4ee0058e69a5d42bd22dcd9938f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_m.png" +dest_files=["res://.godot/imported/bar_round_large_m.png-9f48f4ee0058e69a5d42bd22dcd9938f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_r.png new file mode 100644 index 0000000..cb35812 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_r.png.import new file mode 100644 index 0000000..95b35e9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6ca00aoxheru" +path="res://.godot/imported/bar_round_large_r.png-c7ce9cf51480e94a3a3c2b0a3cf187e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_r.png" +dest_files=["res://.godot/imported/bar_round_large_r.png-c7ce9cf51480e94a3a3c2b0a3cf187e3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_square.png new file mode 100644 index 0000000..1659eaf Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_square.png.import new file mode 100644 index 0000000..db28220 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4uoxrrvusol8" +path="res://.godot/imported/bar_round_large_square.png-2cd6d2c2a440ecfe032f7f8eb19c8ad3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_large_square.png" +dest_files=["res://.godot/imported/bar_round_large_square.png-2cd6d2c2a440ecfe032f7f8eb19c8ad3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small.png new file mode 100644 index 0000000..974be79 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small.png.import new file mode 100644 index 0000000..b4db5c5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxlv07llr6tki" +path="res://.godot/imported/bar_round_small.png-089dd5838d165782949fb86c4f3fbe61.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small.png" +dest_files=["res://.godot/imported/bar_round_small.png-089dd5838d165782949fb86c4f3fbe61.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_l.png new file mode 100644 index 0000000..c975be7 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_l.png.import new file mode 100644 index 0000000..a0a0978 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmvkeu25oob2w" +path="res://.godot/imported/bar_round_small_l.png-51b10995ae0e9ec5e8e2114bcebba7d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_l.png" +dest_files=["res://.godot/imported/bar_round_small_l.png-51b10995ae0e9ec5e8e2114bcebba7d8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_m.png new file mode 100644 index 0000000..3d1a3d1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_m.png.import new file mode 100644 index 0000000..4bef685 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b347ukn1854hx" +path="res://.godot/imported/bar_round_small_m.png-b8e0e06ec716a7972ba52f06eed825be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_m.png" +dest_files=["res://.godot/imported/bar_round_small_m.png-b8e0e06ec716a7972ba52f06eed825be.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_r.png new file mode 100644 index 0000000..b7053f1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_r.png.import new file mode 100644 index 0000000..887b609 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl2sdx074hmxh" +path="res://.godot/imported/bar_round_small_r.png-8ad3edf407e41d071ee76b2894f56953.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_r.png" +dest_files=["res://.godot/imported/bar_round_small_r.png-8ad3edf407e41d071ee76b2894f56953.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_square.png new file mode 100644 index 0000000..fbdfaeb Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_square.png.import new file mode 100644 index 0000000..e9f9eb7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkgwfu62g76xw" +path="res://.godot/imported/bar_round_small_square.png-2824f943c9e5d954c90c71ecff4e3d78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_round_small_square.png" +dest_files=["res://.godot/imported/bar_round_small_square.png-2824f943c9e5d954c90c71ecff4e3d78.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large.png new file mode 100644 index 0000000..a304ca3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large.png.import new file mode 100644 index 0000000..025eb6a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3w7yah7ubtqb" +path="res://.godot/imported/bar_square_gloss_large.png-34b848532a07ad26cdb9c765833af363.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large.png" +dest_files=["res://.godot/imported/bar_square_gloss_large.png-34b848532a07ad26cdb9c765833af363.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_l.png new file mode 100644 index 0000000..f5ff035 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_l.png.import new file mode 100644 index 0000000..e36a2fe --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsuh7lipims2r" +path="res://.godot/imported/bar_square_gloss_large_l.png-83340c9a4a7c0e47e4fadd7b1f3f5df6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.png-83340c9a4a7c0e47e4fadd7b1f3f5df6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_m.png new file mode 100644 index 0000000..41d305f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_m.png.import new file mode 100644 index 0000000..16d9157 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdypa4jefyklr" +path="res://.godot/imported/bar_square_gloss_large_m.png-cc3ac1ed509d08453315d1ae24e162ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.png-cc3ac1ed509d08453315d1ae24e162ac.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_r.png new file mode 100644 index 0000000..37880a0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_r.png.import new file mode 100644 index 0000000..70cd0dd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1tde3sydd3m0" +path="res://.godot/imported/bar_square_gloss_large_r.png-7d6e0db0850e6f9c4ac84d4ea389cb1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.png-7d6e0db0850e6f9c4ac84d4ea389cb1b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_square.png new file mode 100644 index 0000000..217fd20 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_square.png.import new file mode 100644 index 0000000..acba38b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7pkm7o04br4i" +path="res://.godot/imported/bar_square_gloss_large_square.png-7598a9f76966a1cadcbd9f189599a628.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_large_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.png-7598a9f76966a1cadcbd9f189599a628.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small.png new file mode 100644 index 0000000..1ca7372 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small.png.import new file mode 100644 index 0000000..e050b26 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6sbj5jj1weq4" +path="res://.godot/imported/bar_square_gloss_small.png-ffcfaf97d37ffb0557afde17b023bdac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small.png" +dest_files=["res://.godot/imported/bar_square_gloss_small.png-ffcfaf97d37ffb0557afde17b023bdac.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_l.png new file mode 100644 index 0000000..e1aa59b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_l.png.import new file mode 100644 index 0000000..f4a1ee9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd864ftldsveg" +path="res://.godot/imported/bar_square_gloss_small_l.png-66e8d23ded573e5511ddeab22990d5c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_l.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.png-66e8d23ded573e5511ddeab22990d5c0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_m.png new file mode 100644 index 0000000..437a2ea Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_m.png.import new file mode 100644 index 0000000..9278337 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpgpw8y8ps8qt" +path="res://.godot/imported/bar_square_gloss_small_m.png-d2f78251c62240226e5e660c93d6527b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_m.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.png-d2f78251c62240226e5e660c93d6527b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_r.png new file mode 100644 index 0000000..7c620a5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_r.png.import new file mode 100644 index 0000000..8dd4174 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dgbrud3skk8v6" +path="res://.godot/imported/bar_square_gloss_small_r.png-dadfd5aec6135e0abf13db88bedaffda.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_r.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.png-dadfd5aec6135e0abf13db88bedaffda.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_square.png new file mode 100644 index 0000000..2666275 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_square.png.import new file mode 100644 index 0000000..f829d51 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://oy41dh72jiwn" +path="res://.godot/imported/bar_square_gloss_small_square.png-97d21d74c8251beac3e347519b2c0447.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_gloss_small_square.png" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.png-97d21d74c8251beac3e347519b2c0447.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large.png new file mode 100644 index 0000000..dd824d2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large.png.import new file mode 100644 index 0000000..3723f1f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc3bg5dycpudh" +path="res://.godot/imported/bar_square_large.png-1ad9c1561db9d9b857a4cd9c898c14a5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large.png" +dest_files=["res://.godot/imported/bar_square_large.png-1ad9c1561db9d9b857a4cd9c898c14a5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_l.png new file mode 100644 index 0000000..1f26e28 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_l.png.import new file mode 100644 index 0000000..a2e790f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj6pisamwpgv4" +path="res://.godot/imported/bar_square_large_l.png-42ddc3ec3ee77434865499b6911a9a80.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_l.png" +dest_files=["res://.godot/imported/bar_square_large_l.png-42ddc3ec3ee77434865499b6911a9a80.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_m.png new file mode 100644 index 0000000..c3c82c3 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_m.png.import new file mode 100644 index 0000000..dd7b778 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dhqagoxsviiyp" +path="res://.godot/imported/bar_square_large_m.png-63bd8c6ab24e0dab5583de58efddf605.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_m.png" +dest_files=["res://.godot/imported/bar_square_large_m.png-63bd8c6ab24e0dab5583de58efddf605.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_r.png new file mode 100644 index 0000000..cb94ed8 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_r.png.import new file mode 100644 index 0000000..eff48e8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daeuraqq70oxx" +path="res://.godot/imported/bar_square_large_r.png-a4583cf10621189f1d8872d11b337588.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_r.png" +dest_files=["res://.godot/imported/bar_square_large_r.png-a4583cf10621189f1d8872d11b337588.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_square.png new file mode 100644 index 0000000..2678113 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_square.png.import new file mode 100644 index 0000000..5a0da59 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n0r6d52k3lan" +path="res://.godot/imported/bar_square_large_square.png-22a9391af249877aa266c1d66543d068.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_large_square.png" +dest_files=["res://.godot/imported/bar_square_large_square.png-22a9391af249877aa266c1d66543d068.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small.png new file mode 100644 index 0000000..6c861d0 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small.png.import new file mode 100644 index 0000000..52d58d9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsvp35hqbccbm" +path="res://.godot/imported/bar_square_small.png-74bbf8479c26ff338d1b9ed6b150fc96.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small.png" +dest_files=["res://.godot/imported/bar_square_small.png-74bbf8479c26ff338d1b9ed6b150fc96.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_l.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_l.png new file mode 100644 index 0000000..9cebd49 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_l.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_l.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_l.png.import new file mode 100644 index 0000000..d70b9f2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_l.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3msnh4lt45nb" +path="res://.godot/imported/bar_square_small_l.png-5bba6344beff0409902ad4064ec6a225.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_l.png" +dest_files=["res://.godot/imported/bar_square_small_l.png-5bba6344beff0409902ad4064ec6a225.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_m.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_m.png new file mode 100644 index 0000000..3d1a3d1 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_m.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_m.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_m.png.import new file mode 100644 index 0000000..3ea43ea --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_m.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ve6071j6j0tw" +path="res://.godot/imported/bar_square_small_m.png-2a459c286c8428ae4b8b264622262bb3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_m.png" +dest_files=["res://.godot/imported/bar_square_small_m.png-2a459c286c8428ae4b8b264622262bb3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_r.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_r.png new file mode 100644 index 0000000..3d2d30f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_r.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_r.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_r.png.import new file mode 100644 index 0000000..4ccb285 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_r.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhqax7pr5yy7c" +path="res://.godot/imported/bar_square_small_r.png-b5545cf5846280de1f4d681c6b1f1fb4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_r.png" +dest_files=["res://.godot/imported/bar_square_small_r.png-b5545cf5846280de1f4d681c6b1f1fb4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_square.png new file mode 100644 index 0000000..ef7471d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_square.png.import new file mode 100644 index 0000000..33a224b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://conudgf5d0ac0" +path="res://.godot/imported/bar_square_small_square.png-cc6d1bd5ad7b2f4312f15e59ba56a1fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/bar_square_small_square.png" +dest_files=["res://.godot/imported/bar_square_small_square.png-cc6d1bd5ad7b2f4312f15e59ba56a1fe.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle.png new file mode 100644 index 0000000..4540f9e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle.png.import new file mode 100644 index 0000000..c62b3c4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cismkusl75xn2" +path="res://.godot/imported/button_square_header_blade_rectangle.png-2de1f19a1a037df0a44085972c20502f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.png-2de1f19a1a037df0a44085972c20502f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle_screws.png new file mode 100644 index 0000000..5674b18 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle_screws.png.import new file mode 100644 index 0000000..6ba7ce4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxgobghmtkp1d" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.png-a5790cb76a7dd07c1f92b11aa510f061.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.png-a5790cb76a7dd07c1f92b11aa510f061.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square.png new file mode 100644 index 0000000..566e02e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square.png.import new file mode 100644 index 0000000..ab966b7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6e25k1hb0til" +path="res://.godot/imported/button_square_header_blade_square.png-26c1b1dc822f5567ae869f7bf317a491.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square.png" +dest_files=["res://.godot/imported/button_square_header_blade_square.png-26c1b1dc822f5567ae869f7bf317a491.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square_screws.png new file mode 100644 index 0000000..9d20a71 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square_screws.png.import new file mode 100644 index 0000000..4a19823 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5h18o1gdn64q" +path="res://.godot/imported/button_square_header_blade_square_screws.png-918de19824c75c46e88378c48c34e4c7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_blade_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.png-918de19824c75c46e88378c48c34e4c7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle.png new file mode 100644 index 0000000..7d7de23 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle.png.import new file mode 100644 index 0000000..7eb0840 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2gkrmjbc7pb0" +path="res://.godot/imported/button_square_header_large_rectangle.png-60d4cd4051b6cf6eb1a5e6d52c8d4c26.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.png-60d4cd4051b6cf6eb1a5e6d52c8d4c26.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle_screws.png new file mode 100644 index 0000000..070567f Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle_screws.png.import new file mode 100644 index 0000000..c498aae --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w1nq3bqppqf6" +path="res://.godot/imported/button_square_header_large_rectangle_screws.png-ca7c04bf19e395a130197a99baeace04.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.png-ca7c04bf19e395a130197a99baeace04.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square.png new file mode 100644 index 0000000..1433144 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square.png.import new file mode 100644 index 0000000..dab45c3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlre1kflpvs7q" +path="res://.godot/imported/button_square_header_large_square.png-9582524d66a5bf8ea3eb77f657eb8661.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square.png" +dest_files=["res://.godot/imported/button_square_header_large_square.png-9582524d66a5bf8ea3eb77f657eb8661.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square_screws.png new file mode 100644 index 0000000..08cebbd Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square_screws.png.import new file mode 100644 index 0000000..885566c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o3m6gxna7i3m" +path="res://.godot/imported/button_square_header_large_square_screws.png-0cd88dd66e5269d771a0c8decfd21f28.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_large_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.png-0cd88dd66e5269d771a0c8decfd21f28.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle.png new file mode 100644 index 0000000..2eec715 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle.png.import new file mode 100644 index 0000000..df3ff9b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yyex8c2whlni" +path="res://.godot/imported/button_square_header_notch_rectangle.png-28cd1314374a1cc85f4e73d828528ff4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.png-28cd1314374a1cc85f4e73d828528ff4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle_screws.png new file mode 100644 index 0000000..36bb96e Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle_screws.png.import new file mode 100644 index 0000000..7dba48f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckuchfdhfof46" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.png-4aa42db23c4eb614e1742d3dac95644c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.png-4aa42db23c4eb614e1742d3dac95644c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square.png new file mode 100644 index 0000000..a5748c6 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square.png.import new file mode 100644 index 0000000..565fc6b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ces0r1id0ag7o" +path="res://.godot/imported/button_square_header_notch_square.png-189643e96ff5f4516e8fe8a3d97216dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square.png" +dest_files=["res://.godot/imported/button_square_header_notch_square.png-189643e96ff5f4516e8fe8a3d97216dc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square_screws.png new file mode 100644 index 0000000..fc5f22b Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square_screws.png.import new file mode 100644 index 0000000..34252ab --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7aqx1v5f5co1" +path="res://.godot/imported/button_square_header_notch_square_screws.png-2544a45dd01f264cc8926ca986e90483.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_notch_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.png-2544a45dd01f264cc8926ca986e90483.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle.png new file mode 100644 index 0000000..0d41bf2 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle.png.import new file mode 100644 index 0000000..42fe2c8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rqmbuow2couf" +path="res://.godot/imported/button_square_header_small_rectangle.png-262481c6ccf8ba911d425beb35ea829d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.png-262481c6ccf8ba911d425beb35ea829d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle_screws.png new file mode 100644 index 0000000..538f4e5 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle_screws.png.import new file mode 100644 index 0000000..76546ba --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx8aone4rn8yp" +path="res://.godot/imported/button_square_header_small_rectangle_screws.png-4885e89707384cc49c8dfa62f0468357.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_rectangle_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.png-4885e89707384cc49c8dfa62f0468357.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square.png new file mode 100644 index 0000000..855e53d Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square.png.import new file mode 100644 index 0000000..cb1a16e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bshis6mgn04mo" +path="res://.godot/imported/button_square_header_small_square.png-f13c6d7424a73c6652656343871800b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square.png" +dest_files=["res://.godot/imported/button_square_header_small_square.png-f13c6d7424a73c6652656343871800b5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square_screws.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square_screws.png new file mode 100644 index 0000000..6b763ac Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square_screws.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square_screws.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square_screws.png.import new file mode 100644 index 0000000..aacf9a3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square_screws.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxrtkxsacpihn" +path="res://.godot/imported/button_square_header_small_square_screws.png-e6c5daa714aed9d45ea914cb92f33e3b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/button_square_header_small_square_screws.png" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.png-e6c5daa714aed9d45ea914cb92f33e3b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_a.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_a.png new file mode 100644 index 0000000..ec8477a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_a.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_a.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_a.png.import new file mode 100644 index 0000000..14b1cdb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_a.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://327vxngk0xfx" +path="res://.godot/imported/crosshair_color_a.png-979b360fa9a3cb41c14bd3fa3bac3e82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_a.png" +dest_files=["res://.godot/imported/crosshair_color_a.png-979b360fa9a3cb41c14bd3fa3bac3e82.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_b.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_b.png new file mode 100644 index 0000000..307538a Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_b.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_b.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_b.png.import new file mode 100644 index 0000000..dab603c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_b.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://42kbbpwlvhbc" +path="res://.godot/imported/crosshair_color_b.png-1897a3dccdec04438bd95be46cbbc2bf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_b.png" +dest_files=["res://.godot/imported/crosshair_color_b.png-1897a3dccdec04438bd95be46cbbc2bf.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_c.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_c.png new file mode 100644 index 0000000..511cf13 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_c.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_c.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_c.png.import new file mode 100644 index 0000000..056968d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_c.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu6un7e8a8s03" +path="res://.godot/imported/crosshair_color_c.png-4ae1b30643dffee70aea6344aa9f4440.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_c.png" +dest_files=["res://.godot/imported/crosshair_color_c.png-4ae1b30643dffee70aea6344aa9f4440.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_d.png b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_d.png new file mode 100644 index 0000000..0fae1af Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_d.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_d.png.import b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_d.png.import new file mode 100644 index 0000000..7084fee --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_d.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rj2jmbmwt6b4" +path="res://.godot/imported/crosshair_color_d.png-a327c0e47e78671961d58da523f61c1d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/PNG/Yellow/Double/crosshair_color_d.png" +dest_files=["res://.godot/imported/crosshair_color_d.png-a327c0e47e78671961d58da523f61c1d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Preview.png b/temp_res/kenney_ui-pack-space-expansion/Preview.png new file mode 100644 index 0000000..9a585fa Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/Preview.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/Preview.png.import b/temp_res/kenney_ui-pack-space-expansion/Preview.png.import new file mode 100644 index 0000000..341041c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Preview.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wgv3wrjl80ne" +path="res://.godot/imported/Preview.png-3f87b387592254a618a701fb87e1ef59.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Preview.png" +dest_files=["res://.godot/imported/Preview.png-3f87b387592254a618a701fb87e1ef59.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Sample.png b/temp_res/kenney_ui-pack-space-expansion/Sample.png new file mode 100644 index 0000000..6d4b903 Binary files /dev/null and b/temp_res/kenney_ui-pack-space-expansion/Sample.png differ diff --git a/temp_res/kenney_ui-pack-space-expansion/Sample.png.import b/temp_res/kenney_ui-pack-space-expansion/Sample.png.import new file mode 100644 index 0000000..9b6b296 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Sample.png.import @@ -0,0 +1,34 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cc701lrv6npv2" +path="res://.godot/imported/Sample.png-e9643afd96f47f4a5792508d2fa6a4fe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Sample.png" +dest_files=["res://.godot/imported/Sample.png-e9643afd96f47f4a5792508d2fa6a4fe.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large.svg new file mode 100644 index 0000000..1dc26d5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large.svg.import new file mode 100644 index 0000000..973a6f4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dke1u1bd1n663" +path="res://.godot/imported/bar_round_gloss_large.svg-d48f2783ab86d14c6fbe1ee1dc10bf68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large.svg-d48f2783ab86d14c6fbe1ee1dc10bf68.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_l.svg new file mode 100644 index 0000000..24c4078 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_l.svg.import new file mode 100644 index 0000000..54d00c3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5hxqynj3owbf" +path="res://.godot/imported/bar_round_gloss_large_l.svg-e04265be15b73a06762af4f1bbc22a9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_l.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.svg-e04265be15b73a06762af4f1bbc22a9f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_m.svg new file mode 100644 index 0000000..62f93e9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_m.svg.import new file mode 100644 index 0000000..c2d7bc7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckmjjtshw3po2" +path="res://.godot/imported/bar_round_gloss_large_m.svg-f1bb50b5494351d6d8685a4161cbf6fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_m.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.svg-f1bb50b5494351d6d8685a4161cbf6fc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_r.svg new file mode 100644 index 0000000..eb896af --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_r.svg.import new file mode 100644 index 0000000..687c3ac --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7y2y26ko84o5" +path="res://.godot/imported/bar_round_gloss_large_r.svg-59167d19cd1b3d54e2036ea98946bb8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_r.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.svg-59167d19cd1b3d54e2036ea98946bb8e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_square.svg new file mode 100644 index 0000000..c1170a5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_square.svg.import new file mode 100644 index 0000000..e7a713f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gf2p4thsmlpt" +path="res://.godot/imported/bar_round_gloss_large_square.svg-75a7ff2fc2b156ac6beff4344b790bad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_large_square.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.svg-75a7ff2fc2b156ac6beff4344b790bad.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small.svg new file mode 100644 index 0000000..28565d0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small.svg.import new file mode 100644 index 0000000..6766552 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4ckelqf7mmhx" +path="res://.godot/imported/bar_round_gloss_small.svg-04060d3829dc5074175eaf58ea23302a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small.svg-04060d3829dc5074175eaf58ea23302a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_l.svg new file mode 100644 index 0000000..2387cd8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_l.svg.import new file mode 100644 index 0000000..7ab3745 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfad7vr5uv0ye" +path="res://.godot/imported/bar_round_gloss_small_l.svg-d38b21178e998ff862629db5586efaf2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_l.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.svg-d38b21178e998ff862629db5586efaf2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_m.svg new file mode 100644 index 0000000..f0cba67 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_m.svg.import new file mode 100644 index 0000000..fe7ff4c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c07r025ttb17u" +path="res://.godot/imported/bar_round_gloss_small_m.svg-9d44a74334d7531b005670b5fd025f61.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_m.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.svg-9d44a74334d7531b005670b5fd025f61.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_r.svg new file mode 100644 index 0000000..3f843be --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_r.svg.import new file mode 100644 index 0000000..7d110fd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0s5ar0vpg7ac" +path="res://.godot/imported/bar_round_gloss_small_r.svg-929064e45193421740eca8255a3c7c74.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_r.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.svg-929064e45193421740eca8255a3c7c74.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_square.svg new file mode 100644 index 0000000..c9bf2cb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_square.svg.import new file mode 100644 index 0000000..247e21b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dce5n5sqkw3lk" +path="res://.godot/imported/bar_round_gloss_small_square.svg-84623718182661b88735537a931fbe9c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_gloss_small_square.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.svg-84623718182661b88735537a931fbe9c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large.svg new file mode 100644 index 0000000..2497dee --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large.svg.import new file mode 100644 index 0000000..8543c7f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1phswl1geumb" +path="res://.godot/imported/bar_round_large.svg-78943515bd9e4418f4d41b78ad7289f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large.svg" +dest_files=["res://.godot/imported/bar_round_large.svg-78943515bd9e4418f4d41b78ad7289f7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_l.svg new file mode 100644 index 0000000..8365326 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_l.svg.import new file mode 100644 index 0000000..3566dce --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgir4gskd44vd" +path="res://.godot/imported/bar_round_large_l.svg-5007f5e6bf9c7288547dda731eaf2219.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_l.svg" +dest_files=["res://.godot/imported/bar_round_large_l.svg-5007f5e6bf9c7288547dda731eaf2219.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_m.svg new file mode 100644 index 0000000..d572aee --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_m.svg.import new file mode 100644 index 0000000..0c949cc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5860qxjt1s6i" +path="res://.godot/imported/bar_round_large_m.svg-5cee6ff7d3786920ae22fa394a0b6d0e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_m.svg" +dest_files=["res://.godot/imported/bar_round_large_m.svg-5cee6ff7d3786920ae22fa394a0b6d0e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_r.svg new file mode 100644 index 0000000..730bfa5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_r.svg.import new file mode 100644 index 0000000..bf9a1f9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3ej73cb807l2" +path="res://.godot/imported/bar_round_large_r.svg-8d48f4605a5524c412caf190b3052d24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_r.svg" +dest_files=["res://.godot/imported/bar_round_large_r.svg-8d48f4605a5524c412caf190b3052d24.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_square.svg new file mode 100644 index 0000000..6c7df24 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_square.svg.import new file mode 100644 index 0000000..3c33dfb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2sbqiciqw1a3" +path="res://.godot/imported/bar_round_large_square.svg-d7a773668d1b6f255438b9509cca210c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_large_square.svg" +dest_files=["res://.godot/imported/bar_round_large_square.svg-d7a773668d1b6f255438b9509cca210c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small.svg new file mode 100644 index 0000000..9593477 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small.svg.import new file mode 100644 index 0000000..ff60075 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dakf1efskkqw1" +path="res://.godot/imported/bar_round_small.svg-36d007dde2ff85f404b0f19cf83ca35f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small.svg" +dest_files=["res://.godot/imported/bar_round_small.svg-36d007dde2ff85f404b0f19cf83ca35f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_l.svg new file mode 100644 index 0000000..29225e3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_l.svg.import new file mode 100644 index 0000000..5b6c62d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cblbw6a7dn42w" +path="res://.godot/imported/bar_round_small_l.svg-524e0805afd5977be1799f90b1fac404.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_l.svg" +dest_files=["res://.godot/imported/bar_round_small_l.svg-524e0805afd5977be1799f90b1fac404.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_m.svg new file mode 100644 index 0000000..917af22 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_m.svg.import new file mode 100644 index 0000000..aa331ba --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfp8hy8orxeea" +path="res://.godot/imported/bar_round_small_m.svg-8a6cb7342a3ad8861df2822fdd89d43a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_m.svg" +dest_files=["res://.godot/imported/bar_round_small_m.svg-8a6cb7342a3ad8861df2822fdd89d43a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_r.svg new file mode 100644 index 0000000..a426476 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_r.svg.import new file mode 100644 index 0000000..2428d5e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnf8enx4fdyjk" +path="res://.godot/imported/bar_round_small_r.svg-a4c4e83896bf95e23441a01e5361e266.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_r.svg" +dest_files=["res://.godot/imported/bar_round_small_r.svg-a4c4e83896bf95e23441a01e5361e266.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_square.svg new file mode 100644 index 0000000..06c36c0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_square.svg.import new file mode 100644 index 0000000..f8b8453 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cv4cvjoj0p4pr" +path="res://.godot/imported/bar_round_small_square.svg-98d93b9d112b69bc40d6971934927422.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_round_small_square.svg" +dest_files=["res://.godot/imported/bar_round_small_square.svg-98d93b9d112b69bc40d6971934927422.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large.svg new file mode 100644 index 0000000..6a1abd4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large.svg.import new file mode 100644 index 0000000..1407462 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0lu1kpoa26qr" +path="res://.godot/imported/bar_square_gloss_large.svg-fb6aef6d57c6cea4054c65d92f810acc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large.svg-fb6aef6d57c6cea4054c65d92f810acc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_l.svg new file mode 100644 index 0000000..7ed60ef --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_l.svg.import new file mode 100644 index 0000000..ca80a1f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btnjcv8dc7roh" +path="res://.godot/imported/bar_square_gloss_large_l.svg-297a70c178d8b26ee2515e2e4c69c214.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_l.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.svg-297a70c178d8b26ee2515e2e4c69c214.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_m.svg new file mode 100644 index 0000000..62f93e9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_m.svg.import new file mode 100644 index 0000000..0734875 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bj4t3lj1t1b2u" +path="res://.godot/imported/bar_square_gloss_large_m.svg-1b5af1e8a59dae3c5024d73cd0579f76.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_m.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.svg-1b5af1e8a59dae3c5024d73cd0579f76.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_r.svg new file mode 100644 index 0000000..1490c92 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_r.svg.import new file mode 100644 index 0000000..652d06b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kci75hftyy5r" +path="res://.godot/imported/bar_square_gloss_large_r.svg-8e6eddf11f4be176545cd474919bc31a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_r.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.svg-8e6eddf11f4be176545cd474919bc31a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_square.svg new file mode 100644 index 0000000..4124e7c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_square.svg.import new file mode 100644 index 0000000..25f2ce4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b61uke83hk1ui" +path="res://.godot/imported/bar_square_gloss_large_square.svg-c5bab1eda0ef2df32196d3bd01db8f24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_large_square.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.svg-c5bab1eda0ef2df32196d3bd01db8f24.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small.svg new file mode 100644 index 0000000..f0461bf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small.svg.import new file mode 100644 index 0000000..a588e97 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cruxfceuum6kp" +path="res://.godot/imported/bar_square_gloss_small.svg-51c88931113d380637b91bd61aa1bf4a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small.svg-51c88931113d380637b91bd61aa1bf4a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_l.svg new file mode 100644 index 0000000..bad52cf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_l.svg.import new file mode 100644 index 0000000..70e95d0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdqxc43e12aqt" +path="res://.godot/imported/bar_square_gloss_small_l.svg-ef2b6f52fb2676141a9b18077d24e4f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_l.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.svg-ef2b6f52fb2676141a9b18077d24e4f0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_m.svg new file mode 100644 index 0000000..172d02b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_m.svg.import new file mode 100644 index 0000000..17a82cb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://enioy7ju1wpj" +path="res://.godot/imported/bar_square_gloss_small_m.svg-253738ee991214cd85f8f9a0eea5dde4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_m.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.svg-253738ee991214cd85f8f9a0eea5dde4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_r.svg new file mode 100644 index 0000000..336eac1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_r.svg.import new file mode 100644 index 0000000..ad9d39c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlyb8pdp84cl2" +path="res://.godot/imported/bar_square_gloss_small_r.svg-095a526809a8aba59c9c1df698f314be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_r.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.svg-095a526809a8aba59c9c1df698f314be.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_square.svg new file mode 100644 index 0000000..d8ac6a4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_square.svg.import new file mode 100644 index 0000000..ea76e30 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3axft0r8470c" +path="res://.godot/imported/bar_square_gloss_small_square.svg-ea9b2106d8e45df78f4a3a47964b43fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_gloss_small_square.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.svg-ea9b2106d8e45df78f4a3a47964b43fc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large.svg new file mode 100644 index 0000000..451a1b9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large.svg.import new file mode 100644 index 0000000..167e803 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dclae0vgl6g4p" +path="res://.godot/imported/bar_square_large.svg-adb142cd6e7ef1a74d9aa997f319453c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large.svg" +dest_files=["res://.godot/imported/bar_square_large.svg-adb142cd6e7ef1a74d9aa997f319453c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_l.svg new file mode 100644 index 0000000..d92c135 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_l.svg.import new file mode 100644 index 0000000..46460b4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmmu0ufrxajuj" +path="res://.godot/imported/bar_square_large_l.svg-7838dbd3b165c5849525853bdd799131.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_l.svg" +dest_files=["res://.godot/imported/bar_square_large_l.svg-7838dbd3b165c5849525853bdd799131.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_m.svg new file mode 100644 index 0000000..d572aee --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_m.svg.import new file mode 100644 index 0000000..2392d4b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4dnxna5o8y0h" +path="res://.godot/imported/bar_square_large_m.svg-989e16bdb6e180798dd7d8d4fe4dab6a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_m.svg" +dest_files=["res://.godot/imported/bar_square_large_m.svg-989e16bdb6e180798dd7d8d4fe4dab6a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_r.svg new file mode 100644 index 0000000..0174b62 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_r.svg.import new file mode 100644 index 0000000..3307dce --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccrntmmu66u08" +path="res://.godot/imported/bar_square_large_r.svg-495074a966f654e1c7786dc38ba66370.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_r.svg" +dest_files=["res://.godot/imported/bar_square_large_r.svg-495074a966f654e1c7786dc38ba66370.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_square.svg new file mode 100644 index 0000000..1948dc8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_square.svg.import new file mode 100644 index 0000000..90111d2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvr5a28t28ydp" +path="res://.godot/imported/bar_square_large_square.svg-3901b5128944b99b344c14e80b246a69.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_large_square.svg" +dest_files=["res://.godot/imported/bar_square_large_square.svg-3901b5128944b99b344c14e80b246a69.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small.svg new file mode 100644 index 0000000..5732c8e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small.svg.import new file mode 100644 index 0000000..5f66163 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://357py1qk464m" +path="res://.godot/imported/bar_square_small.svg-dd7747cdcaba1691fbd9a9fe98030041.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small.svg" +dest_files=["res://.godot/imported/bar_square_small.svg-dd7747cdcaba1691fbd9a9fe98030041.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_l.svg new file mode 100644 index 0000000..4590da4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_l.svg.import new file mode 100644 index 0000000..084864a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chxugdwn5pkc3" +path="res://.godot/imported/bar_square_small_l.svg-d66ef77980a5799ddd1a7cade87d934f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_l.svg" +dest_files=["res://.godot/imported/bar_square_small_l.svg-d66ef77980a5799ddd1a7cade87d934f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_m.svg new file mode 100644 index 0000000..917af22 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_m.svg.import new file mode 100644 index 0000000..342fc98 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bkmwkjmpgpbtk" +path="res://.godot/imported/bar_square_small_m.svg-828147f1358f8f36f03961a2d02cc8da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_m.svg" +dest_files=["res://.godot/imported/bar_square_small_m.svg-828147f1358f8f36f03961a2d02cc8da.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_r.svg new file mode 100644 index 0000000..6c3f5d8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_r.svg.import new file mode 100644 index 0000000..00119f2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmacuvwsdchiw" +path="res://.godot/imported/bar_square_small_r.svg-bac09ab507a43b5a4a4092aa2caea832.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_r.svg" +dest_files=["res://.godot/imported/bar_square_small_r.svg-bac09ab507a43b5a4a4092aa2caea832.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_square.svg new file mode 100644 index 0000000..32518f7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_square.svg.import new file mode 100644 index 0000000..acf7cd3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4ik5h3o0phdh" +path="res://.godot/imported/bar_square_small_square.svg-09cecf7c6473a6dfc815f77007d347b3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/bar_square_small_square.svg" +dest_files=["res://.godot/imported/bar_square_small_square.svg-09cecf7c6473a6dfc815f77007d347b3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle.svg new file mode 100644 index 0000000..500d061 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle.svg.import new file mode 100644 index 0000000..f75fdf9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2usx51fvrv2q" +path="res://.godot/imported/button_square_header_blade_rectangle.svg-d6bdc26dc04ff4ecebd35a72d36e4107.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.svg-d6bdc26dc04ff4ecebd35a72d36e4107.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle_screws.svg new file mode 100644 index 0000000..4992295 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle_screws.svg.import new file mode 100644 index 0000000..745e5a7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyb4tqsygm6b" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.svg-f4331e5615d986d5b41c5be21391faf3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.svg-f4331e5615d986d5b41c5be21391faf3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square.svg new file mode 100644 index 0000000..48a55ea --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square.svg.import new file mode 100644 index 0000000..234b354 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2ks7vlygr80a" +path="res://.godot/imported/button_square_header_blade_square.svg-8b144b5a90c5c31fa8ac38e76ad70ca1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square.svg" +dest_files=["res://.godot/imported/button_square_header_blade_square.svg-8b144b5a90c5c31fa8ac38e76ad70ca1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square_screws.svg new file mode 100644 index 0000000..f1e1694 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square_screws.svg.import new file mode 100644 index 0000000..38b8a51 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hbay42weu60a" +path="res://.godot/imported/button_square_header_blade_square_screws.svg-2b12589abd90b5968c3fab1285f8e87d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_blade_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.svg-2b12589abd90b5968c3fab1285f8e87d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle.svg new file mode 100644 index 0000000..944b38d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle.svg.import new file mode 100644 index 0000000..6c7ab9d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctjnb04674orf" +path="res://.godot/imported/button_square_header_large_rectangle.svg-eb5b4d7b09b85d55f17a9dac3bd9a712.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.svg-eb5b4d7b09b85d55f17a9dac3bd9a712.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle_screws.svg new file mode 100644 index 0000000..0038171 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle_screws.svg.import new file mode 100644 index 0000000..4fdd78d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2yfcuq32k7ab" +path="res://.godot/imported/button_square_header_large_rectangle_screws.svg-032805931b69d4d340ec41e21e6b1137.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.svg-032805931b69d4d340ec41e21e6b1137.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square.svg new file mode 100644 index 0000000..91c1dc2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square.svg.import new file mode 100644 index 0000000..bb91bb2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdin1l4pkyi0r" +path="res://.godot/imported/button_square_header_large_square.svg-38db88d4e1137770e336329e7e360a09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square.svg" +dest_files=["res://.godot/imported/button_square_header_large_square.svg-38db88d4e1137770e336329e7e360a09.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square_screws.svg new file mode 100644 index 0000000..d3998ca --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square_screws.svg.import new file mode 100644 index 0000000..1eb803f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b08ackfix4ijp" +path="res://.godot/imported/button_square_header_large_square_screws.svg-625f16bef5dc2e9bc90924d0552d99ab.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_large_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.svg-625f16bef5dc2e9bc90924d0552d99ab.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle.svg new file mode 100644 index 0000000..5112eb9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle.svg.import new file mode 100644 index 0000000..eba9022 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c65dpyx7whtxx" +path="res://.godot/imported/button_square_header_notch_rectangle.svg-176283e5838c2b893dfa31f4ebdf02d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.svg-176283e5838c2b893dfa31f4ebdf02d8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle_screws.svg new file mode 100644 index 0000000..2ee0bc3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle_screws.svg.import new file mode 100644 index 0000000..4074513 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mgxljeijnju5" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.svg-5bcc75d0fa1340a36952e9a6b22639d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.svg-5bcc75d0fa1340a36952e9a6b22639d8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square.svg new file mode 100644 index 0000000..3dd179b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square.svg.import new file mode 100644 index 0000000..eba6a89 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck8c7vvglh8bb" +path="res://.godot/imported/button_square_header_notch_square.svg-81f0238302c308f2f84316206a627436.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square.svg" +dest_files=["res://.godot/imported/button_square_header_notch_square.svg-81f0238302c308f2f84316206a627436.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square_screws.svg new file mode 100644 index 0000000..4deccf2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square_screws.svg.import new file mode 100644 index 0000000..684eedf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o5ke6efwb2q" +path="res://.godot/imported/button_square_header_notch_square_screws.svg-2abaf79457c40e5fd76ec1204bff5536.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_notch_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.svg-2abaf79457c40e5fd76ec1204bff5536.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle.svg new file mode 100644 index 0000000..17f49f0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle.svg.import new file mode 100644 index 0000000..1941eb4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8xrkj78er5ml" +path="res://.godot/imported/button_square_header_small_rectangle.svg-4741e135e217049f0d944a12916a9dd3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.svg-4741e135e217049f0d944a12916a9dd3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle_screws.svg new file mode 100644 index 0000000..6c534b3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle_screws.svg.import new file mode 100644 index 0000000..1ec40ff --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cig0j03ejkvgt" +path="res://.godot/imported/button_square_header_small_rectangle_screws.svg-e89d607a86511757a905a3a11c5d0544.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.svg-e89d607a86511757a905a3a11c5d0544.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square.svg new file mode 100644 index 0000000..2dd213f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square.svg.import new file mode 100644 index 0000000..77bf514 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdg51umn7aot0" +path="res://.godot/imported/button_square_header_small_square.svg-74807478814a8ca62dadea69542ac5f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square.svg" +dest_files=["res://.godot/imported/button_square_header_small_square.svg-74807478814a8ca62dadea69542ac5f0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square_screws.svg new file mode 100644 index 0000000..11cad1e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square_screws.svg.import new file mode 100644 index 0000000..aebf572 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg0g7v2jq05pj" +path="res://.godot/imported/button_square_header_small_square_screws.svg-bc7205b2c3d77f38c6c13d78ba0c7fa2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/button_square_header_small_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.svg-bc7205b2c3d77f38c6c13d78ba0c7fa2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_a.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_a.svg new file mode 100644 index 0000000..0af13b4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_a.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_a.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_a.svg.import new file mode 100644 index 0000000..4566071 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_a.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxkwhijno4m0x" +path="res://.godot/imported/crosshair_color_a.svg-66aa86bf58a2d0e930eece2e00ce8890.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_a.svg" +dest_files=["res://.godot/imported/crosshair_color_a.svg-66aa86bf58a2d0e930eece2e00ce8890.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_b.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_b.svg new file mode 100644 index 0000000..b10b884 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_b.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_b.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_b.svg.import new file mode 100644 index 0000000..a30476a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_b.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqsstu3wy717o" +path="res://.godot/imported/crosshair_color_b.svg-e7ae59b7ff5a2597b1f6bdc42ee610eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_b.svg" +dest_files=["res://.godot/imported/crosshair_color_b.svg-e7ae59b7ff5a2597b1f6bdc42ee610eb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_c.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_c.svg new file mode 100644 index 0000000..2ceb795 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_c.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_c.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_c.svg.import new file mode 100644 index 0000000..98da88c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_c.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqagoedjnsoxt" +path="res://.godot/imported/crosshair_color_c.svg-0710d7c06aff92e9764234b6e212bbde.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_c.svg" +dest_files=["res://.godot/imported/crosshair_color_c.svg-0710d7c06aff92e9764234b6e212bbde.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_d.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_d.svg new file mode 100644 index 0000000..1bacffa --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_d.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_d.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_d.svg.import new file mode 100644 index 0000000..bbb3ada --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_d.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bawlvw6rp0dpe" +path="res://.godot/imported/crosshair_color_d.svg-f8171f3769f550b11033697659fd6f3b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Blue/crosshair_color_d.svg" +dest_files=["res://.godot/imported/crosshair_color_d.svg-f8171f3769f550b11033697659fd6f3b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large.svg new file mode 100644 index 0000000..f9e5263 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large.svg.import new file mode 100644 index 0000000..6a706e5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7xn7usgtho1l" +path="res://.godot/imported/bar_shadow_round_large.svg-9e62e9ee72fbac1deffefd797b6a5042.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large.svg" +dest_files=["res://.godot/imported/bar_shadow_round_large.svg-9e62e9ee72fbac1deffefd797b6a5042.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_l.svg new file mode 100644 index 0000000..d8b3675 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_l.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_l.svg.import new file mode 100644 index 0000000..47e4766 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcnxrhl7vr5xi" +path="res://.godot/imported/bar_shadow_round_large_l.svg-969f3d972f9ae5a10ed5284869e24cca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_l.svg" +dest_files=["res://.godot/imported/bar_shadow_round_large_l.svg-969f3d972f9ae5a10ed5284869e24cca.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_m.svg new file mode 100644 index 0000000..fc7aa42 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_m.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_m.svg.import new file mode 100644 index 0000000..9301e75 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cue8k33dnyi80" +path="res://.godot/imported/bar_shadow_round_large_m.svg-2bde4c18b8a48d9878ab9864905f2eb0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_m.svg" +dest_files=["res://.godot/imported/bar_shadow_round_large_m.svg-2bde4c18b8a48d9878ab9864905f2eb0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_r.svg new file mode 100644 index 0000000..ec1e6b8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_r.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_r.svg.import new file mode 100644 index 0000000..15180a0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://74hg6lblc7p4" +path="res://.godot/imported/bar_shadow_round_large_r.svg-f0a3b76759fa174405dc522e8149c2b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_r.svg" +dest_files=["res://.godot/imported/bar_shadow_round_large_r.svg-f0a3b76759fa174405dc522e8149c2b7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_square.svg new file mode 100644 index 0000000..379aece --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_square.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_square.svg.import new file mode 100644 index 0000000..be6c1e8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bovfgqso56hlt" +path="res://.godot/imported/bar_shadow_round_large_square.svg-067723fa580802cd45e6f63ddfdb94c3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_large_square.svg" +dest_files=["res://.godot/imported/bar_shadow_round_large_square.svg-067723fa580802cd45e6f63ddfdb94c3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large.svg new file mode 100644 index 0000000..6a86505 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large.svg.import new file mode 100644 index 0000000..5bbf6d6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwsfvg76dvhl7" +path="res://.godot/imported/bar_shadow_round_outline_large.svg-1de9582d8740a93c2dbc8fae8048c18d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large.svg" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large.svg-1de9582d8740a93c2dbc8fae8048c18d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_l.svg new file mode 100644 index 0000000..fdeb254 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_l.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_l.svg.import new file mode 100644 index 0000000..c8c1b54 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8e6j31yqxw2v" +path="res://.godot/imported/bar_shadow_round_outline_large_l.svg-e5cd5a30b412e71f0ba653126ebb685b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_l.svg" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large_l.svg-e5cd5a30b412e71f0ba653126ebb685b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_m.svg new file mode 100644 index 0000000..87b0f53 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_m.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_m.svg.import new file mode 100644 index 0000000..66df250 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iy0jeer02oig" +path="res://.godot/imported/bar_shadow_round_outline_large_m.svg-805d2280a405f7267263271140959a45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_m.svg" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large_m.svg-805d2280a405f7267263271140959a45.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_r.svg new file mode 100644 index 0000000..de92ae3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_r.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_r.svg.import new file mode 100644 index 0000000..1153aac --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw36ngb3c4xsk" +path="res://.godot/imported/bar_shadow_round_outline_large_r.svg-dc92ad52e1ee56ea01910602df04f8a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_r.svg" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large_r.svg-dc92ad52e1ee56ea01910602df04f8a2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_square.svg new file mode 100644 index 0000000..b9a92ba --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_square.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_square.svg.import new file mode 100644 index 0000000..49dc9da --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8pish5voq1i0" +path="res://.godot/imported/bar_shadow_round_outline_large_square.svg-6c15ce7a6773276ae1759938557b5fba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_large_square.svg" +dest_files=["res://.godot/imported/bar_shadow_round_outline_large_square.svg-6c15ce7a6773276ae1759938557b5fba.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small.svg new file mode 100644 index 0000000..6ac1040 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small.svg.import new file mode 100644 index 0000000..f881745 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbfgneb7tp47p" +path="res://.godot/imported/bar_shadow_round_outline_small.svg-4c2dc67cffaf444f1836f4cbafbb1d98.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small.svg" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small.svg-4c2dc67cffaf444f1836f4cbafbb1d98.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_l.svg new file mode 100644 index 0000000..eab4c62 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_l.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_l.svg.import new file mode 100644 index 0000000..a7bc8bc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://eitip1xow2fo" +path="res://.godot/imported/bar_shadow_round_outline_small_l.svg-62f1cb1ce8eeacef8a4eeed5d83ba97c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_l.svg" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small_l.svg-62f1cb1ce8eeacef8a4eeed5d83ba97c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_m.svg new file mode 100644 index 0000000..3f2d7b9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_m.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_m.svg.import new file mode 100644 index 0000000..342d820 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ctfhertrm87rp" +path="res://.godot/imported/bar_shadow_round_outline_small_m.svg-b36e40ceb235367ae72007fc158c3592.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_m.svg" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small_m.svg-b36e40ceb235367ae72007fc158c3592.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_r.svg new file mode 100644 index 0000000..80a9db8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_r.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_r.svg.import new file mode 100644 index 0000000..4d8d9ce --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbktjd5t01im2" +path="res://.godot/imported/bar_shadow_round_outline_small_r.svg-1e028982c4c33e1b828fa1792edafa7c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_r.svg" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small_r.svg-1e028982c4c33e1b828fa1792edafa7c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_square.svg new file mode 100644 index 0000000..1dd9d6c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_square.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_square.svg.import new file mode 100644 index 0000000..065d63d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fbfejfowhg50" +path="res://.godot/imported/bar_shadow_round_outline_small_square.svg-780e8f74543dbef50b137f2e48b3ee9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_outline_small_square.svg" +dest_files=["res://.godot/imported/bar_shadow_round_outline_small_square.svg-780e8f74543dbef50b137f2e48b3ee9e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small.svg new file mode 100644 index 0000000..bfcd5bc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small.svg.import new file mode 100644 index 0000000..1e43f2b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdjqqffdufrw8" +path="res://.godot/imported/bar_shadow_round_small.svg-e052c9c52f927e1d26e4fa425b78983a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small.svg" +dest_files=["res://.godot/imported/bar_shadow_round_small.svg-e052c9c52f927e1d26e4fa425b78983a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_l.svg new file mode 100644 index 0000000..e65517e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_l.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_l.svg.import new file mode 100644 index 0000000..69a870b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du7vanvnbr4c3" +path="res://.godot/imported/bar_shadow_round_small_l.svg-351619a94cfff447590f011e35a6eaa3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_l.svg" +dest_files=["res://.godot/imported/bar_shadow_round_small_l.svg-351619a94cfff447590f011e35a6eaa3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_m.svg new file mode 100644 index 0000000..c4dd342 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_m.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_m.svg.import new file mode 100644 index 0000000..165d8fa --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://capvkvlirasdq" +path="res://.godot/imported/bar_shadow_round_small_m.svg-5ed97d39d4fca9a6c91143826e90a23f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_m.svg" +dest_files=["res://.godot/imported/bar_shadow_round_small_m.svg-5ed97d39d4fca9a6c91143826e90a23f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_r.svg new file mode 100644 index 0000000..38e6986 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_r.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_r.svg.import new file mode 100644 index 0000000..45cb5ed --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxhosqksxc2if" +path="res://.godot/imported/bar_shadow_round_small_r.svg-33e3bec1112003838a565fc56f3d2175.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_r.svg" +dest_files=["res://.godot/imported/bar_shadow_round_small_r.svg-33e3bec1112003838a565fc56f3d2175.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_square.svg new file mode 100644 index 0000000..439bb63 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_square.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_square.svg.import new file mode 100644 index 0000000..5fc1c0e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch7ood8cl3vnh" +path="res://.godot/imported/bar_shadow_round_small_square.svg-656c9b551e919dfdb1eeab984f25f5e0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_round_small_square.svg" +dest_files=["res://.godot/imported/bar_shadow_round_small_square.svg-656c9b551e919dfdb1eeab984f25f5e0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large.svg new file mode 100644 index 0000000..970f251 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large.svg.import new file mode 100644 index 0000000..41e194d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h8o3pjrd03g7" +path="res://.godot/imported/bar_shadow_square_large.svg-982ca9488f176a1b4e6f12627092106e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large.svg" +dest_files=["res://.godot/imported/bar_shadow_square_large.svg-982ca9488f176a1b4e6f12627092106e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_l.svg new file mode 100644 index 0000000..8af33ef --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_l.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_l.svg.import new file mode 100644 index 0000000..d27e197 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2boeefqmdvva" +path="res://.godot/imported/bar_shadow_square_large_l.svg-7bca10325b6d73b61868dcb9b7c8ccfb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_l.svg" +dest_files=["res://.godot/imported/bar_shadow_square_large_l.svg-7bca10325b6d73b61868dcb9b7c8ccfb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_m.svg new file mode 100644 index 0000000..fc7aa42 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_m.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_m.svg.import new file mode 100644 index 0000000..6368e51 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8vk33tdfr868" +path="res://.godot/imported/bar_shadow_square_large_m.svg-3346c5d68d52afa98eb4424d23e49a42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_m.svg" +dest_files=["res://.godot/imported/bar_shadow_square_large_m.svg-3346c5d68d52afa98eb4424d23e49a42.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_r.svg new file mode 100644 index 0000000..787c57a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_r.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_r.svg.import new file mode 100644 index 0000000..4dd7156 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc8p3gqs8tnmh" +path="res://.godot/imported/bar_shadow_square_large_r.svg-06726c98e5ac0ce3969f41c6868db875.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_r.svg" +dest_files=["res://.godot/imported/bar_shadow_square_large_r.svg-06726c98e5ac0ce3969f41c6868db875.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_square.svg new file mode 100644 index 0000000..24c6381 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_square.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_square.svg.import new file mode 100644 index 0000000..69a9937 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bee87qsvw7swr" +path="res://.godot/imported/bar_shadow_square_large_square.svg-d7a69867bed438d52f99b6205fb4f2be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_large_square.svg" +dest_files=["res://.godot/imported/bar_shadow_square_large_square.svg-d7a69867bed438d52f99b6205fb4f2be.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large.svg new file mode 100644 index 0000000..0bcc5a7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large.svg.import new file mode 100644 index 0000000..3947314 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://k7p5jyix6clh" +path="res://.godot/imported/bar_shadow_square_outline_large.svg-cd4733afa81f976e71ec9452363b72f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large.svg" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large.svg-cd4733afa81f976e71ec9452363b72f7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_l.svg new file mode 100644 index 0000000..dcfb509 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_l.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_l.svg.import new file mode 100644 index 0000000..137af30 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b0yv4oyj7hgt5" +path="res://.godot/imported/bar_shadow_square_outline_large_l.svg-b86c76b6c234eb58e771e971262a57b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_l.svg" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large_l.svg-b86c76b6c234eb58e771e971262a57b6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_m.svg new file mode 100644 index 0000000..bdd10a6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_m.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_m.svg.import new file mode 100644 index 0000000..1ff7745 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dc1b1alqu1str" +path="res://.godot/imported/bar_shadow_square_outline_large_m.svg-369be80fe40e9314cde7a937c495fe28.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_m.svg" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large_m.svg-369be80fe40e9314cde7a937c495fe28.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_r.svg new file mode 100644 index 0000000..33b91f4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_r.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_r.svg.import new file mode 100644 index 0000000..cb49bd7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqu8ee6vcy0ii" +path="res://.godot/imported/bar_shadow_square_outline_large_r.svg-eb1427dd92545cc7c5a9bc1b0b5f17ec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_r.svg" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large_r.svg-eb1427dd92545cc7c5a9bc1b0b5f17ec.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_square.svg new file mode 100644 index 0000000..67ea337 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_square.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_square.svg.import new file mode 100644 index 0000000..169ab74 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bve3n4ewpfo53" +path="res://.godot/imported/bar_shadow_square_outline_large_square.svg-ed8b118812b05d7727b3735926441eb1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_large_square.svg" +dest_files=["res://.godot/imported/bar_shadow_square_outline_large_square.svg-ed8b118812b05d7727b3735926441eb1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small.svg new file mode 100644 index 0000000..4bd91af --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small.svg.import new file mode 100644 index 0000000..2f15400 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://06itaeyis6q5" +path="res://.godot/imported/bar_shadow_square_outline_small.svg-ba361522ac125964e5fe6084af979c08.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small.svg" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small.svg-ba361522ac125964e5fe6084af979c08.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_l.svg new file mode 100644 index 0000000..4d3cef6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_l.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_l.svg.import new file mode 100644 index 0000000..2d07368 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbypul2fneaft" +path="res://.godot/imported/bar_shadow_square_outline_small_l.svg-3b4c93bb37dff79917ad6ac474f54a08.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_l.svg" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small_l.svg-3b4c93bb37dff79917ad6ac474f54a08.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_m.svg new file mode 100644 index 0000000..e5f2f99 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_m.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_m.svg.import new file mode 100644 index 0000000..2993a4f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chwouj2v6x5ir" +path="res://.godot/imported/bar_shadow_square_outline_small_m.svg-dec0cadec770f9bd536d1af37320cd44.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_m.svg" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small_m.svg-dec0cadec770f9bd536d1af37320cd44.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_r.svg new file mode 100644 index 0000000..a9a808d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_r.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_r.svg.import new file mode 100644 index 0000000..3adcbfa --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0x30xdx5mam7" +path="res://.godot/imported/bar_shadow_square_outline_small_r.svg-2596b1f4dd44ee9c84e492759428c26a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_r.svg" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small_r.svg-2596b1f4dd44ee9c84e492759428c26a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_square.svg new file mode 100644 index 0000000..2febf10 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_square.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_square.svg.import new file mode 100644 index 0000000..bfb9517 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cch7rwf05o7m3" +path="res://.godot/imported/bar_shadow_square_outline_small_square.svg-597a4fd37d9786630d613261ade29704.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_outline_small_square.svg" +dest_files=["res://.godot/imported/bar_shadow_square_outline_small_square.svg-597a4fd37d9786630d613261ade29704.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small.svg new file mode 100644 index 0000000..bc8b83b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small.svg.import new file mode 100644 index 0000000..f77d48f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2endudhdj170" +path="res://.godot/imported/bar_shadow_square_small.svg-68a1374cf29f22ed5b162e10f8737a0b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small.svg" +dest_files=["res://.godot/imported/bar_shadow_square_small.svg-68a1374cf29f22ed5b162e10f8737a0b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_l.svg new file mode 100644 index 0000000..608ec8c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_l.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_l.svg.import new file mode 100644 index 0000000..d5f743a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://botca8i6m2kk1" +path="res://.godot/imported/bar_shadow_square_small_l.svg-ab4454a9d6b83eb53ae5b707fb003d8d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_l.svg" +dest_files=["res://.godot/imported/bar_shadow_square_small_l.svg-ab4454a9d6b83eb53ae5b707fb003d8d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_m.svg new file mode 100644 index 0000000..96d1ca4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_m.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_m.svg.import new file mode 100644 index 0000000..b101978 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nvs6gqw36u61" +path="res://.godot/imported/bar_shadow_square_small_m.svg-10357dd23cebbd9726b136a2e48e5acc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_m.svg" +dest_files=["res://.godot/imported/bar_shadow_square_small_m.svg-10357dd23cebbd9726b136a2e48e5acc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_r.svg new file mode 100644 index 0000000..4b4dcd0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_r.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_r.svg.import new file mode 100644 index 0000000..04103f4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cs3bjvl4wkuox" +path="res://.godot/imported/bar_shadow_square_small_r.svg-138a9983decebe23b6833b5c7f5e83fb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_r.svg" +dest_files=["res://.godot/imported/bar_shadow_square_small_r.svg-138a9983decebe23b6833b5c7f5e83fb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_square.svg new file mode 100644 index 0000000..e12317c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_square.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_square.svg.import new file mode 100644 index 0000000..9d81bc2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc02y0uqi3vwt" +path="res://.godot/imported/bar_shadow_square_small_square.svg-8ad8d8b76251e8ca32fcfda6a8ecfdcb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/bar_shadow_square_small_square.svg" +dest_files=["res://.godot/imported/bar_shadow_square_small_square.svg-8ad8d8b76251e8ca32fcfda6a8ecfdcb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle.svg new file mode 100644 index 0000000..1d6b278 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle.svg.import new file mode 100644 index 0000000..b838735 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dx80ixkbjb71c" +path="res://.godot/imported/button_rectangle.svg-bb5a250ac2e10aa0149ab5d0b4d5fe44.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle.svg" +dest_files=["res://.godot/imported/button_rectangle.svg-bb5a250ac2e10aa0149ab5d0b4d5fe44.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle_depth.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle_depth.svg new file mode 100644 index 0000000..bf245ce --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle_depth.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle_depth.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle_depth.svg.import new file mode 100644 index 0000000..25dd825 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle_depth.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1q4hyul4jcug" +path="res://.godot/imported/button_rectangle_depth.svg-bd1e5362dea2193eca5a150872dedc99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_rectangle_depth.svg" +dest_files=["res://.godot/imported/button_rectangle_depth.svg-bd1e5362dea2193eca5a150872dedc99.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square.svg new file mode 100644 index 0000000..e67fdcb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square.svg.import new file mode 100644 index 0000000..d2f5803 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmrx7cuyfanuq" +path="res://.godot/imported/button_square.svg-5b5c3e2da5f1a9b25ee179965482ed75.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square.svg" +dest_files=["res://.godot/imported/button_square.svg-5b5c3e2da5f1a9b25ee179965482ed75.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square_depth.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square_depth.svg new file mode 100644 index 0000000..9492478 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square_depth.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square_depth.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square_depth.svg.import new file mode 100644 index 0000000..9426990 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square_depth.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqdtfywo5roj8" +path="res://.godot/imported/button_square_depth.svg-4a9e3e5aebe42c902dc2be2a12e31f93.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/button_square_depth.svg" +dest_files=["res://.godot/imported/button_square_depth.svg-4a9e3e5aebe42c902dc2be2a12e31f93.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_a.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_a.svg new file mode 100644 index 0000000..cd46a92 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_a.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_a.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_a.svg.import new file mode 100644 index 0000000..163dd1f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_a.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfclc1fid0e10" +path="res://.godot/imported/crosshair_a.svg-1a92364afd43bd652bbfc92e441bc6a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_a.svg" +dest_files=["res://.godot/imported/crosshair_a.svg-1a92364afd43bd652bbfc92e441bc6a9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_b.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_b.svg new file mode 100644 index 0000000..3ce78a3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_b.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_b.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_b.svg.import new file mode 100644 index 0000000..2846472 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_b.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db816rgbhrsoh" +path="res://.godot/imported/crosshair_b.svg-cdbe50972c760ecbd3304a5eac5cb654.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_b.svg" +dest_files=["res://.godot/imported/crosshair_b.svg-cdbe50972c760ecbd3304a5eac5cb654.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_c.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_c.svg new file mode 100644 index 0000000..e1a28d3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_c.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_c.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_c.svg.import new file mode 100644 index 0000000..f148423 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_c.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8r5fqtowjga5" +path="res://.godot/imported/crosshair_c.svg-2322d736ac0c785b9ea7d741f4eb4f82.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_c.svg" +dest_files=["res://.godot/imported/crosshair_c.svg-2322d736ac0c785b9ea7d741f4eb4f82.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_d.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_d.svg new file mode 100644 index 0000000..cc85dab --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_d.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_d.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_d.svg.import new file mode 100644 index 0000000..dfa113e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_d.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsu5t2wdk66pt" +path="res://.godot/imported/crosshair_d.svg-7cc6328aeabe6a8fdaabaa506ef32735.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/crosshair_d.svg" +dest_files=["res://.godot/imported/crosshair_d.svg-7cc6328aeabe6a8fdaabaa506ef32735.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_a.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_a.svg new file mode 100644 index 0000000..c90be93 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_a.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_a.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_a.svg.import new file mode 100644 index 0000000..e71bfc1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_a.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6h85vxklyaf8" +path="res://.godot/imported/cursor_a.svg-7112d836fa01bb98e6829be3cc39ae0a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_a.svg" +dest_files=["res://.godot/imported/cursor_a.svg-7112d836fa01bb98e6829be3cc39ae0a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_b.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_b.svg new file mode 100644 index 0000000..87ae49c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_b.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_b.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_b.svg.import new file mode 100644 index 0000000..e4f44e7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_b.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cimncaoe5tlrq" +path="res://.godot/imported/cursor_b.svg-ca411e94be20c84bb3d60159733db38b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_b.svg" +dest_files=["res://.godot/imported/cursor_b.svg-ca411e94be20c84bb3d60159733db38b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_c.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_c.svg new file mode 100644 index 0000000..480469b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_c.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_c.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_c.svg.import new file mode 100644 index 0000000..c0e5633 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_c.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpi8tvmhlann8" +path="res://.godot/imported/cursor_c.svg-6c51d815d16d3795d880553735620254.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_c.svg" +dest_files=["res://.godot/imported/cursor_c.svg-6c51d815d16d3795d880553735620254.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_d.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_d.svg new file mode 100644 index 0000000..6409625 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_d.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_d.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_d.svg.import new file mode 100644 index 0000000..41fca21 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_d.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coasuy46yg5qp" +path="res://.godot/imported/cursor_d.svg-5d398fda998fa972c9ee5e28056286ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_d.svg" +dest_files=["res://.godot/imported/cursor_d.svg-5d398fda998fa972c9ee5e28056286ae.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_e.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_e.svg new file mode 100644 index 0000000..e77418f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_e.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_e.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_e.svg.import new file mode 100644 index 0000000..2c5150b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_e.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://belk1py8f4xop" +path="res://.godot/imported/cursor_e.svg-b6e212b02eba19c14ca87a59553e6033.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_e.svg" +dest_files=["res://.godot/imported/cursor_e.svg-b6e212b02eba19c14ca87a59553e6033.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_f.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_f.svg new file mode 100644 index 0000000..bdaec2d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_f.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_f.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_f.svg.import new file mode 100644 index 0000000..6192923 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_f.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmqdnvg2uj8qy" +path="res://.godot/imported/cursor_f.svg-3f68b3e3c2be8172bbd63a3522d598b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_f.svg" +dest_files=["res://.godot/imported/cursor_f.svg-3f68b3e3c2be8172bbd63a3522d598b5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_g.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_g.svg new file mode 100644 index 0000000..868d306 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_g.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_g.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_g.svg.import new file mode 100644 index 0000000..b4108b2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_g.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbd3kyfnjnjff" +path="res://.godot/imported/cursor_g.svg-2fd1d4eaa81c486f218e1795d8034690.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_g.svg" +dest_files=["res://.godot/imported/cursor_g.svg-2fd1d4eaa81c486f218e1795d8034690.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_h.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_h.svg new file mode 100644 index 0000000..d05d867 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_h.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_h.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_h.svg.import new file mode 100644 index 0000000..f1d662c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_h.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bapu07ga2ade6" +path="res://.godot/imported/cursor_h.svg-a4438514a7fa63630b4f1b0f04d76ae6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/cursor_h.svg" +dest_files=["res://.godot/imported/cursor_h.svg-a4438514a7fa63630b4f1b0f04d76ae6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass.svg new file mode 100644 index 0000000..6936828 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass.svg.import new file mode 100644 index 0000000..14c2df6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8xyot6cww0mw" +path="res://.godot/imported/panel_glass.svg-6e05670cb0786ef96f2686932799f0ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass.svg" +dest_files=["res://.godot/imported/panel_glass.svg-6e05670cb0786ef96f2686932799f0ae.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_bl.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_bl.svg new file mode 100644 index 0000000..2339d86 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_bl.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_bl.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_bl.svg.import new file mode 100644 index 0000000..fd79f04 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_bl.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://buqj7bql5gohf" +path="res://.godot/imported/panel_glass_notch_bl.svg-4be74bfd33ecea70dccafe497dc6eaf7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_bl.svg" +dest_files=["res://.godot/imported/panel_glass_notch_bl.svg-4be74bfd33ecea70dccafe497dc6eaf7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_br.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_br.svg new file mode 100644 index 0000000..424474c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_br.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_br.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_br.svg.import new file mode 100644 index 0000000..21c6287 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_br.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8q3xqqq5ogqn" +path="res://.godot/imported/panel_glass_notch_br.svg-a8f3972b390bf4e79f4108de44364d94.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_br.svg" +dest_files=["res://.godot/imported/panel_glass_notch_br.svg-a8f3972b390bf4e79f4108de44364d94.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tl.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tl.svg new file mode 100644 index 0000000..c94634a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tl.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tl.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tl.svg.import new file mode 100644 index 0000000..4e68347 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tl.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://civkm8rqqi1mg" +path="res://.godot/imported/panel_glass_notch_tl.svg-2836fa28abda221e9d77e931f2540898.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tl.svg" +dest_files=["res://.godot/imported/panel_glass_notch_tl.svg-2836fa28abda221e9d77e931f2540898.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tr.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tr.svg new file mode 100644 index 0000000..40ab90c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tr.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tr.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tr.svg.import new file mode 100644 index 0000000..a3e2ff0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tr.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://be7orbtptjp6x" +path="res://.godot/imported/panel_glass_notch_tr.svg-8440f5cf48f8fa847a617f36e512e4db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notch_tr.svg" +dest_files=["res://.godot/imported/panel_glass_notch_tr.svg-8440f5cf48f8fa847a617f36e512e4db.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches.svg new file mode 100644 index 0000000..5bb1299 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches.svg.import new file mode 100644 index 0000000..fa142a9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyedisf0tqop6" +path="res://.godot/imported/panel_glass_notches.svg-40fc9013ea01515ed7f250ac796ff011.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches.svg" +dest_files=["res://.godot/imported/panel_glass_notches.svg-40fc9013ea01515ed7f250ac796ff011.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches_top.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches_top.svg new file mode 100644 index 0000000..f61af84 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches_top.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches_top.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches_top.svg.import new file mode 100644 index 0000000..ef35404 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches_top.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvd2rrlyc3kbc" +path="res://.godot/imported/panel_glass_notches_top.svg-94e4135c45cf6097cd2232784cd92bc1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_notches_top.svg" +dest_files=["res://.godot/imported/panel_glass_notches_top.svg-94e4135c45cf6097cd2232784cd92bc1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_screws.svg new file mode 100644 index 0000000..40753cc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_screws.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_screws.svg.import new file mode 100644 index 0000000..694f7c1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8pb2q6qntw8i" +path="res://.godot/imported/panel_glass_screws.svg-cbe59f5a48257259ecb68017fd4d078b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_screws.svg" +dest_files=["res://.godot/imported/panel_glass_screws.svg-cbe59f5a48257259ecb68017fd4d078b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab.svg new file mode 100644 index 0000000..20bbdb3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab.svg.import new file mode 100644 index 0000000..a6459f1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7q27w7a0surl" +path="res://.godot/imported/panel_glass_tab.svg-3bad85c979e206703419fb6bdf87529c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab.svg" +dest_files=["res://.godot/imported/panel_glass_tab.svg-3bad85c979e206703419fb6bdf87529c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab_blade.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab_blade.svg new file mode 100644 index 0000000..c13e91f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab_blade.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab_blade.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab_blade.svg.import new file mode 100644 index 0000000..2becb2c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab_blade.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db0obww4en0j0" +path="res://.godot/imported/panel_glass_tab_blade.svg-b0ee9fc499ca2ffc77eba7f4d83d4d99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_glass_tab_blade.svg" +dest_files=["res://.godot/imported/panel_glass_tab_blade.svg-b0ee9fc499ca2ffc77eba7f4d83d4d99.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle.svg new file mode 100644 index 0000000..681cfb2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle.svg.import new file mode 100644 index 0000000..19e8c8c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxkks4sa5mc28" +path="res://.godot/imported/panel_rectangle.svg-cf2ea292c78f7a8b01713c0158687c99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle.svg" +dest_files=["res://.godot/imported/panel_rectangle.svg-cf2ea292c78f7a8b01713c0158687c99.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle_screws.svg new file mode 100644 index 0000000..91c775d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle_screws.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle_screws.svg.import new file mode 100644 index 0000000..99b463e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://np8t7lbnxphd" +path="res://.godot/imported/panel_rectangle_screws.svg-fa8b3f4a058e3d2aee7bb739b2d1017d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_rectangle_screws.svg" +dest_files=["res://.godot/imported/panel_rectangle_screws.svg-fa8b3f4a058e3d2aee7bb739b2d1017d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square.svg new file mode 100644 index 0000000..5596038 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square.svg.import new file mode 100644 index 0000000..fe22d68 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p1wspqbldbkm" +path="res://.godot/imported/panel_square.svg-5e0df7acd58c3805fcb7956c71c7a2cd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square.svg" +dest_files=["res://.godot/imported/panel_square.svg-5e0df7acd58c3805fcb7956c71c7a2cd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square_screws.svg new file mode 100644 index 0000000..a717045 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square_screws.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square_screws.svg.import new file mode 100644 index 0000000..fecb954 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqwwnw73f4lrm" +path="res://.godot/imported/panel_square_screws.svg-62068149eb6f69fbab664f4067ee3879.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Extra/panel_square_screws.svg" +dest_files=["res://.godot/imported/panel_square_screws.svg-62068149eb6f69fbab664f4067ee3879.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large.svg new file mode 100644 index 0000000..05de19e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large.svg.import new file mode 100644 index 0000000..f9fbf9e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brqg0dvmv4v5l" +path="res://.godot/imported/bar_round_gloss_large.svg-879a2beb9dcccda49a530aa2b79cfce1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large.svg-879a2beb9dcccda49a530aa2b79cfce1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_l.svg new file mode 100644 index 0000000..1b58e76 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_l.svg.import new file mode 100644 index 0000000..9779652 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqsailiyelc17" +path="res://.godot/imported/bar_round_gloss_large_l.svg-b9ea55bc328f709fc91010f57a90b314.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_l.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.svg-b9ea55bc328f709fc91010f57a90b314.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_m.svg new file mode 100644 index 0000000..28400b0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_m.svg.import new file mode 100644 index 0000000..19459e4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d218r870cn7yt" +path="res://.godot/imported/bar_round_gloss_large_m.svg-7330a1c3d7714c77e11d517efa6cbdbe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_m.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.svg-7330a1c3d7714c77e11d517efa6cbdbe.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_r.svg new file mode 100644 index 0000000..0251124 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_r.svg.import new file mode 100644 index 0000000..fc7eff4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h0jfwt2g8itw" +path="res://.godot/imported/bar_round_gloss_large_r.svg-1a19ed648a46672ea2d6f1fa66eadcdb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_r.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.svg-1a19ed648a46672ea2d6f1fa66eadcdb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_square.svg new file mode 100644 index 0000000..71175f6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_square.svg.import new file mode 100644 index 0000000..1a96bcf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpdhpjotx4xrk" +path="res://.godot/imported/bar_round_gloss_large_square.svg-fcc59501228535fe1566e3c3b7bdadbc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_large_square.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.svg-fcc59501228535fe1566e3c3b7bdadbc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small.svg new file mode 100644 index 0000000..1021891 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small.svg.import new file mode 100644 index 0000000..5f580c1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgo8s32sxuiqn" +path="res://.godot/imported/bar_round_gloss_small.svg-532f69d77b832f6a5b8e879d18d97bd2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small.svg-532f69d77b832f6a5b8e879d18d97bd2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_l.svg new file mode 100644 index 0000000..df991b6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_l.svg.import new file mode 100644 index 0000000..d958ec9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xau0pbfyhdrk" +path="res://.godot/imported/bar_round_gloss_small_l.svg-c1bf2d690b845de3cb6e3e0d79b273c9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_l.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.svg-c1bf2d690b845de3cb6e3e0d79b273c9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_m.svg new file mode 100644 index 0000000..eb10cff --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_m.svg.import new file mode 100644 index 0000000..ec4264a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0iwlyt6io25g" +path="res://.godot/imported/bar_round_gloss_small_m.svg-d67ca542f8177dcd71ddc0a6f3057043.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_m.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.svg-d67ca542f8177dcd71ddc0a6f3057043.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_r.svg new file mode 100644 index 0000000..265025b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_r.svg.import new file mode 100644 index 0000000..a41c140 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5c8potk3yc6" +path="res://.godot/imported/bar_round_gloss_small_r.svg-15029fd6a11deb198e20f9545ed7c40f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_r.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.svg-15029fd6a11deb198e20f9545ed7c40f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_square.svg new file mode 100644 index 0000000..eca0b7c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_square.svg.import new file mode 100644 index 0000000..dff95c4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1c75hhguf134" +path="res://.godot/imported/bar_round_gloss_small_square.svg-68a976f6cfd33ef6c29abbfbba2a8bb1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_gloss_small_square.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.svg-68a976f6cfd33ef6c29abbfbba2a8bb1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large.svg new file mode 100644 index 0000000..525a3a1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large.svg.import new file mode 100644 index 0000000..f2f1abb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3fsf6uwbee8e" +path="res://.godot/imported/bar_round_large.svg-924ec35f62da6a51bc709701c9f858cb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large.svg" +dest_files=["res://.godot/imported/bar_round_large.svg-924ec35f62da6a51bc709701c9f858cb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_l.svg new file mode 100644 index 0000000..472fc74 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_l.svg.import new file mode 100644 index 0000000..b360e98 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwyyges8r8twf" +path="res://.godot/imported/bar_round_large_l.svg-24dca6d8ab83d295a6f82f8307df3c89.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_l.svg" +dest_files=["res://.godot/imported/bar_round_large_l.svg-24dca6d8ab83d295a6f82f8307df3c89.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_m.svg new file mode 100644 index 0000000..f283083 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_m.svg.import new file mode 100644 index 0000000..595212d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kpjfthk1llrw" +path="res://.godot/imported/bar_round_large_m.svg-94ded0973ff92a710ac4405c270a6b40.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_m.svg" +dest_files=["res://.godot/imported/bar_round_large_m.svg-94ded0973ff92a710ac4405c270a6b40.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_r.svg new file mode 100644 index 0000000..986d2f5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_r.svg.import new file mode 100644 index 0000000..1d48531 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bu4pmf7yipbpi" +path="res://.godot/imported/bar_round_large_r.svg-604fd5af3f63e1b109a01b5c657a007e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_r.svg" +dest_files=["res://.godot/imported/bar_round_large_r.svg-604fd5af3f63e1b109a01b5c657a007e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_square.svg new file mode 100644 index 0000000..2c29b3d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_square.svg.import new file mode 100644 index 0000000..d4491fd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tmrsv44rtaan" +path="res://.godot/imported/bar_round_large_square.svg-2c9ee710e512e5584e37f299d0da3fcb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_large_square.svg" +dest_files=["res://.godot/imported/bar_round_large_square.svg-2c9ee710e512e5584e37f299d0da3fcb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small.svg new file mode 100644 index 0000000..9a06a8b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small.svg.import new file mode 100644 index 0000000..7738131 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dobv43uyxsfkp" +path="res://.godot/imported/bar_round_small.svg-84af7b23f936ca6591a85e4964e3a8d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small.svg" +dest_files=["res://.godot/imported/bar_round_small.svg-84af7b23f936ca6591a85e4964e3a8d9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_l.svg new file mode 100644 index 0000000..33db0fc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_l.svg.import new file mode 100644 index 0000000..04a29e4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jilrx0qbq62w" +path="res://.godot/imported/bar_round_small_l.svg-01f04a952a2663b3b5a62d85d1b1efcd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_l.svg" +dest_files=["res://.godot/imported/bar_round_small_l.svg-01f04a952a2663b3b5a62d85d1b1efcd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_m.svg new file mode 100644 index 0000000..9db975f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_m.svg.import new file mode 100644 index 0000000..d9a9dec --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cuoyjepg1le8g" +path="res://.godot/imported/bar_round_small_m.svg-5f201baca306dc12405fafcf818ec77a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_m.svg" +dest_files=["res://.godot/imported/bar_round_small_m.svg-5f201baca306dc12405fafcf818ec77a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_r.svg new file mode 100644 index 0000000..fbc3664 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_r.svg.import new file mode 100644 index 0000000..b21a55e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7umvph4yhsny" +path="res://.godot/imported/bar_round_small_r.svg-b3f1c0e4aace9776900e17353b3cb9d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_r.svg" +dest_files=["res://.godot/imported/bar_round_small_r.svg-b3f1c0e4aace9776900e17353b3cb9d7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_square.svg new file mode 100644 index 0000000..39f935a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_square.svg.import new file mode 100644 index 0000000..cfedc6a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8ivg0rqjj1p0" +path="res://.godot/imported/bar_round_small_square.svg-3d98c9a9c0c085b27144764773c083f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_round_small_square.svg" +dest_files=["res://.godot/imported/bar_round_small_square.svg-3d98c9a9c0c085b27144764773c083f7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large.svg new file mode 100644 index 0000000..c59eebe --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large.svg.import new file mode 100644 index 0000000..e17b92b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbqjugplwih8l" +path="res://.godot/imported/bar_square_gloss_large.svg-62ee2af0aa4ed635944b48f5fbf48c0c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large.svg-62ee2af0aa4ed635944b48f5fbf48c0c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_l.svg new file mode 100644 index 0000000..9edbe31 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_l.svg.import new file mode 100644 index 0000000..2792941 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqdauct5cs5wk" +path="res://.godot/imported/bar_square_gloss_large_l.svg-76b13843b5680957c3daeadb1a0acbea.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_l.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.svg-76b13843b5680957c3daeadb1a0acbea.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_m.svg new file mode 100644 index 0000000..28400b0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_m.svg.import new file mode 100644 index 0000000..3fc0042 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl3whriu78ti" +path="res://.godot/imported/bar_square_gloss_large_m.svg-5af1b7e3555b02cb5b75f3048fb37ac0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_m.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.svg-5af1b7e3555b02cb5b75f3048fb37ac0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_r.svg new file mode 100644 index 0000000..07c1d3d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_r.svg.import new file mode 100644 index 0000000..55065bb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpdwo4jsqr8p4" +path="res://.godot/imported/bar_square_gloss_large_r.svg-9a7748ab70af6b9b138088674e664667.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_r.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.svg-9a7748ab70af6b9b138088674e664667.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_square.svg new file mode 100644 index 0000000..3efdb33 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_square.svg.import new file mode 100644 index 0000000..19fbae7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dpqselacomkp" +path="res://.godot/imported/bar_square_gloss_large_square.svg-6d63568818156f8aa22fd65dcf8642f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_large_square.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.svg-6d63568818156f8aa22fd65dcf8642f5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small.svg new file mode 100644 index 0000000..a810285 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small.svg.import new file mode 100644 index 0000000..d35dc4a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bt7blvw0ix0i7" +path="res://.godot/imported/bar_square_gloss_small.svg-9163ac40bc2f6e18f3d959626b087ba6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small.svg-9163ac40bc2f6e18f3d959626b087ba6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_l.svg new file mode 100644 index 0000000..e9e9351 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_l.svg.import new file mode 100644 index 0000000..ccfbb70 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnr7i2lkwn3jx" +path="res://.godot/imported/bar_square_gloss_small_l.svg-9a7d8fd9bd6ad047b7c3982a1a2214dc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_l.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.svg-9a7d8fd9bd6ad047b7c3982a1a2214dc.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_m.svg new file mode 100644 index 0000000..f1a315c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_m.svg.import new file mode 100644 index 0000000..2418526 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5wqeafyfw73k" +path="res://.godot/imported/bar_square_gloss_small_m.svg-0df7496f83dbc4bab28699386d90c29d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_m.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.svg-0df7496f83dbc4bab28699386d90c29d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_r.svg new file mode 100644 index 0000000..f20d24a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_r.svg.import new file mode 100644 index 0000000..e384307 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://du10shc5oa1lp" +path="res://.godot/imported/bar_square_gloss_small_r.svg-6841f3f8e42de1a627943649ee22ae37.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_r.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.svg-6841f3f8e42de1a627943649ee22ae37.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_square.svg new file mode 100644 index 0000000..cb6f372 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_square.svg.import new file mode 100644 index 0000000..3c12b57 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s7rb81mubvph" +path="res://.godot/imported/bar_square_gloss_small_square.svg-798762feb9147b03d4f2754bc1d7dcda.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_gloss_small_square.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.svg-798762feb9147b03d4f2754bc1d7dcda.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large.svg new file mode 100644 index 0000000..98834b9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large.svg.import new file mode 100644 index 0000000..47d9418 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nbkuivr7c57p" +path="res://.godot/imported/bar_square_large.svg-8d537906f0ba73dc21df9550b7728202.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large.svg" +dest_files=["res://.godot/imported/bar_square_large.svg-8d537906f0ba73dc21df9550b7728202.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_l.svg new file mode 100644 index 0000000..78342df --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_l.svg.import new file mode 100644 index 0000000..51fa664 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brv7wgc777kmd" +path="res://.godot/imported/bar_square_large_l.svg-2aa5246380759a4caa62e2fb6be1c2c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_l.svg" +dest_files=["res://.godot/imported/bar_square_large_l.svg-2aa5246380759a4caa62e2fb6be1c2c4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_m.svg new file mode 100644 index 0000000..f283083 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_m.svg.import new file mode 100644 index 0000000..3182ee0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xihx4ei5cye6" +path="res://.godot/imported/bar_square_large_m.svg-ff0b74bbe9cc3dd9d55ea5477f254184.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_m.svg" +dest_files=["res://.godot/imported/bar_square_large_m.svg-ff0b74bbe9cc3dd9d55ea5477f254184.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_r.svg new file mode 100644 index 0000000..f961da3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_r.svg.import new file mode 100644 index 0000000..9be3f8f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://evrnkqp8krpg" +path="res://.godot/imported/bar_square_large_r.svg-d42d8d223ecbabba590f184d28ae9d21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_r.svg" +dest_files=["res://.godot/imported/bar_square_large_r.svg-d42d8d223ecbabba590f184d28ae9d21.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_square.svg new file mode 100644 index 0000000..ee2a5ce --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_square.svg.import new file mode 100644 index 0000000..f0e13e1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbllecbudn5i0" +path="res://.godot/imported/bar_square_large_square.svg-d9d46dd3284caa9e01bbc490dcc01a1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_large_square.svg" +dest_files=["res://.godot/imported/bar_square_large_square.svg-d9d46dd3284caa9e01bbc490dcc01a1b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small.svg new file mode 100644 index 0000000..9d124b2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small.svg.import new file mode 100644 index 0000000..8632dc4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjddmubvfmviw" +path="res://.godot/imported/bar_square_small.svg-30b3848af95ea439ba16826f9646b020.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small.svg" +dest_files=["res://.godot/imported/bar_square_small.svg-30b3848af95ea439ba16826f9646b020.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_l.svg new file mode 100644 index 0000000..a550e12 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_l.svg.import new file mode 100644 index 0000000..4123f17 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bv7dcuvivj1qw" +path="res://.godot/imported/bar_square_small_l.svg-14cfd339dacbae328808a117512fea4d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_l.svg" +dest_files=["res://.godot/imported/bar_square_small_l.svg-14cfd339dacbae328808a117512fea4d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_m.svg new file mode 100644 index 0000000..9db975f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_m.svg.import new file mode 100644 index 0000000..3769d0c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdbb2rw5efti3" +path="res://.godot/imported/bar_square_small_m.svg-82fd04fadd2ca626a0ff7b2204e599d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_m.svg" +dest_files=["res://.godot/imported/bar_square_small_m.svg-82fd04fadd2ca626a0ff7b2204e599d9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_r.svg new file mode 100644 index 0000000..872a732 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_r.svg.import new file mode 100644 index 0000000..c143b8b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cry7xla6f5rmq" +path="res://.godot/imported/bar_square_small_r.svg-fa4e12f8e393db1b3b1e06bd51c391d0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_r.svg" +dest_files=["res://.godot/imported/bar_square_small_r.svg-fa4e12f8e393db1b3b1e06bd51c391d0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_square.svg new file mode 100644 index 0000000..12abd7e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_square.svg.import new file mode 100644 index 0000000..2500874 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmgmwwswrat2g" +path="res://.godot/imported/bar_square_small_square.svg-b2ceeafd267cf8bae6af8847e4a2d760.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/bar_square_small_square.svg" +dest_files=["res://.godot/imported/bar_square_small_square.svg-b2ceeafd267cf8bae6af8847e4a2d760.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle.svg new file mode 100644 index 0000000..b02f2dd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle.svg.import new file mode 100644 index 0000000..2641c0b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0uqx641ss3lo" +path="res://.godot/imported/button_square_header_blade_rectangle.svg-cb1f1df01fb9f457c444140ad2aea42a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.svg-cb1f1df01fb9f457c444140ad2aea42a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle_screws.svg new file mode 100644 index 0000000..7a9fc04 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle_screws.svg.import new file mode 100644 index 0000000..4e06e0b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c61fe24xov5vb" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.svg-f933bf46c70e5b27df61dc8d4bab76ae.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.svg-f933bf46c70e5b27df61dc8d4bab76ae.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square.svg new file mode 100644 index 0000000..c5262d1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square.svg.import new file mode 100644 index 0000000..6bb8aa0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhapsvu3o4ogw" +path="res://.godot/imported/button_square_header_blade_square.svg-5ed3fbabacbc6da2504b8d1813a29e57.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square.svg" +dest_files=["res://.godot/imported/button_square_header_blade_square.svg-5ed3fbabacbc6da2504b8d1813a29e57.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square_screws.svg new file mode 100644 index 0000000..203ebe4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square_screws.svg.import new file mode 100644 index 0000000..e91278d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do0gl6tslk3d0" +path="res://.godot/imported/button_square_header_blade_square_screws.svg-5c910949d1357b6f45778ea31b53bdf1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_blade_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.svg-5c910949d1357b6f45778ea31b53bdf1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle.svg new file mode 100644 index 0000000..c89357b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle.svg.import new file mode 100644 index 0000000..acd4a46 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2e3clgw6fp4n" +path="res://.godot/imported/button_square_header_large_rectangle.svg-da8d635e1fca4d600401d46f5f781d95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.svg-da8d635e1fca4d600401d46f5f781d95.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle_screws.svg new file mode 100644 index 0000000..aab49d3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle_screws.svg.import new file mode 100644 index 0000000..c0d3233 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://doois2buusxjk" +path="res://.godot/imported/button_square_header_large_rectangle_screws.svg-35c1302979d67acd87982356e864a769.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.svg-35c1302979d67acd87982356e864a769.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square.svg new file mode 100644 index 0000000..dd1242b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square.svg.import new file mode 100644 index 0000000..8dde590 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://eos5ypasf5ue" +path="res://.godot/imported/button_square_header_large_square.svg-c6ccade6058459272c4ff376fa61664e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square.svg" +dest_files=["res://.godot/imported/button_square_header_large_square.svg-c6ccade6058459272c4ff376fa61664e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square_screws.svg new file mode 100644 index 0000000..82f58d8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square_screws.svg.import new file mode 100644 index 0000000..caa3b8a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqyvino4o8jcb" +path="res://.godot/imported/button_square_header_large_square_screws.svg-1ac1dd53d623f3efc600c4e81250983a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_large_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.svg-1ac1dd53d623f3efc600c4e81250983a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle.svg new file mode 100644 index 0000000..11541c1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle.svg.import new file mode 100644 index 0000000..f0e5ba9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hqliphj5hcm2" +path="res://.godot/imported/button_square_header_notch_rectangle.svg-43ebaac00834cdbf995b227f42e48f4c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.svg-43ebaac00834cdbf995b227f42e48f4c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle_screws.svg new file mode 100644 index 0000000..9836aac --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle_screws.svg.import new file mode 100644 index 0000000..506a9f8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqhewi7f13nat" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.svg-ac8db7c887ffecab16e305ae01cb59fa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.svg-ac8db7c887ffecab16e305ae01cb59fa.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square.svg new file mode 100644 index 0000000..a40899f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square.svg.import new file mode 100644 index 0000000..af2081b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cwo0j5rbnk4hc" +path="res://.godot/imported/button_square_header_notch_square.svg-e06425d5568862891fe2ba0f9ac3e4e7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square.svg" +dest_files=["res://.godot/imported/button_square_header_notch_square.svg-e06425d5568862891fe2ba0f9ac3e4e7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square_screws.svg new file mode 100644 index 0000000..32091dd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square_screws.svg.import new file mode 100644 index 0000000..1a9afeb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mj7roypeu6" +path="res://.godot/imported/button_square_header_notch_square_screws.svg-6258962c11738531739675d05a0ceeac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_notch_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.svg-6258962c11738531739675d05a0ceeac.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle.svg new file mode 100644 index 0000000..8c8ee7a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle.svg.import new file mode 100644 index 0000000..eda1744 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://de3424f216or6" +path="res://.godot/imported/button_square_header_small_rectangle.svg-8ea0855c06084653cdaeaa6a72769cc7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.svg-8ea0855c06084653cdaeaa6a72769cc7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle_screws.svg new file mode 100644 index 0000000..b1fc141 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle_screws.svg.import new file mode 100644 index 0000000..ebd3870 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dghjhf0epirx3" +path="res://.godot/imported/button_square_header_small_rectangle_screws.svg-9e2e19666d19f33b7a08fad244e40be3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.svg-9e2e19666d19f33b7a08fad244e40be3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square.svg new file mode 100644 index 0000000..319c29a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square.svg.import new file mode 100644 index 0000000..3b01763 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo5llfukf7pq4" +path="res://.godot/imported/button_square_header_small_square.svg-7d27d36891c05142c6be32624a58cd24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square.svg" +dest_files=["res://.godot/imported/button_square_header_small_square.svg-7d27d36891c05142c6be32624a58cd24.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square_screws.svg new file mode 100644 index 0000000..7950aec --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square_screws.svg.import new file mode 100644 index 0000000..d6978e8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dosiifctr7c6p" +path="res://.godot/imported/button_square_header_small_square_screws.svg-45a0aa101271fc3d044a1b60ddbab0b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/button_square_header_small_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.svg-45a0aa101271fc3d044a1b60ddbab0b9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_a.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_a.svg new file mode 100644 index 0000000..d90920a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_a.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_a.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_a.svg.import new file mode 100644 index 0000000..21306e7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_a.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdq8i3erh32ob" +path="res://.godot/imported/crosshair_color_a.svg-2cf4d4edc73f03772f7227c89872c88a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_a.svg" +dest_files=["res://.godot/imported/crosshair_color_a.svg-2cf4d4edc73f03772f7227c89872c88a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_b.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_b.svg new file mode 100644 index 0000000..d87bdd9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_b.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_b.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_b.svg.import new file mode 100644 index 0000000..e5b4514 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_b.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o8wgna1hs2ms" +path="res://.godot/imported/crosshair_color_b.svg-f04802a4878502917898779f10062595.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_b.svg" +dest_files=["res://.godot/imported/crosshair_color_b.svg-f04802a4878502917898779f10062595.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_c.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_c.svg new file mode 100644 index 0000000..d07b417 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_c.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_c.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_c.svg.import new file mode 100644 index 0000000..b2cc4d4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_c.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2wd3nj3vjoav" +path="res://.godot/imported/crosshair_color_c.svg-cf2c167a6cf0cd954ab43fee0f7aec35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_c.svg" +dest_files=["res://.godot/imported/crosshair_color_c.svg-cf2c167a6cf0cd954ab43fee0f7aec35.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_d.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_d.svg new file mode 100644 index 0000000..4a01720 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_d.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_d.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_d.svg.import new file mode 100644 index 0000000..7b8cbe8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_d.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsmowlf1iyiu3" +path="res://.godot/imported/crosshair_color_d.svg-a7f9d61305a7bba88b9be922f684a7aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Green/crosshair_color_d.svg" +dest_files=["res://.godot/imported/crosshair_color_d.svg-a7f9d61305a7bba88b9be922f684a7aa.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large.svg new file mode 100644 index 0000000..b592cc2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large.svg.import new file mode 100644 index 0000000..aab66a9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3x1e7n7eo8ef" +path="res://.godot/imported/bar_round_gloss_large.svg-777163bbab81d4e995aa7f3036c020f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large.svg-777163bbab81d4e995aa7f3036c020f7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_l.svg new file mode 100644 index 0000000..683ced5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_l.svg.import new file mode 100644 index 0000000..f4d2768 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmpri8qre68g2" +path="res://.godot/imported/bar_round_gloss_large_l.svg-0e534c13ee5604e16aac63650e39a307.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_l.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.svg-0e534c13ee5604e16aac63650e39a307.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_m.svg new file mode 100644 index 0000000..a1442d5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_m.svg.import new file mode 100644 index 0000000..fd3687d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vrregxao3q28" +path="res://.godot/imported/bar_round_gloss_large_m.svg-0d6569ce0b828c96745453dea26a9ed8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_m.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.svg-0d6569ce0b828c96745453dea26a9ed8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_r.svg new file mode 100644 index 0000000..f918a6e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_r.svg.import new file mode 100644 index 0000000..9e1a98e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b4sluo4tva4d" +path="res://.godot/imported/bar_round_gloss_large_r.svg-9a20831574810eee6a741ac94dba7c11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_r.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.svg-9a20831574810eee6a741ac94dba7c11.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_square.svg new file mode 100644 index 0000000..210dbc6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_square.svg.import new file mode 100644 index 0000000..9275d5b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cst08ifhhx5vx" +path="res://.godot/imported/bar_round_gloss_large_square.svg-9c730c094374f0346c2868b1771a8f47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_large_square.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.svg-9c730c094374f0346c2868b1771a8f47.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small.svg new file mode 100644 index 0000000..d5fd0e0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small.svg.import new file mode 100644 index 0000000..9283065 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdctvbfc02l6x" +path="res://.godot/imported/bar_round_gloss_small.svg-4d388c411ef60e2695188566e507bd8b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small.svg-4d388c411ef60e2695188566e507bd8b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_l.svg new file mode 100644 index 0000000..05be1f2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_l.svg.import new file mode 100644 index 0000000..a7f660a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm1tcma16bfqe" +path="res://.godot/imported/bar_round_gloss_small_l.svg-339c1d30de16e6311b7cab2a05f58bc9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_l.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.svg-339c1d30de16e6311b7cab2a05f58bc9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_m.svg new file mode 100644 index 0000000..11a2be7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_m.svg.import new file mode 100644 index 0000000..9c85eae --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://15cjopjvgtq7" +path="res://.godot/imported/bar_round_gloss_small_m.svg-e9c67b3f2a7e2e7d2d0f4a01050f5318.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_m.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.svg-e9c67b3f2a7e2e7d2d0f4a01050f5318.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_r.svg new file mode 100644 index 0000000..bfef9c3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_r.svg.import new file mode 100644 index 0000000..01a5fe1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bni7lk8prmwiq" +path="res://.godot/imported/bar_round_gloss_small_r.svg-84e09b15ebae02b94ecbc95d480e965b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_r.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.svg-84e09b15ebae02b94ecbc95d480e965b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_square.svg new file mode 100644 index 0000000..1df7beb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_square.svg.import new file mode 100644 index 0000000..3781fa7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://imy7p55yvcqn" +path="res://.godot/imported/bar_round_gloss_small_square.svg-88b7a726afb15ec2f15afab59400b9a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_gloss_small_square.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.svg-88b7a726afb15ec2f15afab59400b9a7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large.svg new file mode 100644 index 0000000..659a07d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large.svg.import new file mode 100644 index 0000000..f8bc9c9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckvrp24vpbyeu" +path="res://.godot/imported/bar_round_large.svg-251c3f76f540e196cded25032266e1f4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large.svg" +dest_files=["res://.godot/imported/bar_round_large.svg-251c3f76f540e196cded25032266e1f4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_l.svg new file mode 100644 index 0000000..ab7d435 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_l.svg.import new file mode 100644 index 0000000..a8ae4ec --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcxrviobasc86" +path="res://.godot/imported/bar_round_large_l.svg-5d008a3cb91594c8c31d7fc7b84584f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_l.svg" +dest_files=["res://.godot/imported/bar_round_large_l.svg-5d008a3cb91594c8c31d7fc7b84584f7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_m.svg new file mode 100644 index 0000000..8f4b4aa --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_m.svg.import new file mode 100644 index 0000000..d9d8b1b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daqd1yjlv1112" +path="res://.godot/imported/bar_round_large_m.svg-6886358a43eff21aa8345c719ca96a41.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_m.svg" +dest_files=["res://.godot/imported/bar_round_large_m.svg-6886358a43eff21aa8345c719ca96a41.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_r.svg new file mode 100644 index 0000000..56accca --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_r.svg.import new file mode 100644 index 0000000..880316b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmefyr0scavl5" +path="res://.godot/imported/bar_round_large_r.svg-ad94a90852889f5750e5c8a6653a2af9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_r.svg" +dest_files=["res://.godot/imported/bar_round_large_r.svg-ad94a90852889f5750e5c8a6653a2af9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_square.svg new file mode 100644 index 0000000..8058ec2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_square.svg.import new file mode 100644 index 0000000..2b89455 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0vyae1ubjcso" +path="res://.godot/imported/bar_round_large_square.svg-538aec8715f120567c5932d756c60d1d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_large_square.svg" +dest_files=["res://.godot/imported/bar_round_large_square.svg-538aec8715f120567c5932d756c60d1d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small.svg new file mode 100644 index 0000000..7096490 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small.svg.import new file mode 100644 index 0000000..527e077 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dr6eoiqerewei" +path="res://.godot/imported/bar_round_small.svg-c6bb5aaef641ba0f736980ef9e902ef8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small.svg" +dest_files=["res://.godot/imported/bar_round_small.svg-c6bb5aaef641ba0f736980ef9e902ef8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_l.svg new file mode 100644 index 0000000..0508aa6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_l.svg.import new file mode 100644 index 0000000..7867e7a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cslrceisly5t0" +path="res://.godot/imported/bar_round_small_l.svg-9dfdaae1c7ca0eeef011a99fc48a59d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_l.svg" +dest_files=["res://.godot/imported/bar_round_small_l.svg-9dfdaae1c7ca0eeef011a99fc48a59d3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_m.svg new file mode 100644 index 0000000..7297249 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_m.svg.import new file mode 100644 index 0000000..50ce464 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7falrvvwrd7h" +path="res://.godot/imported/bar_round_small_m.svg-aeb098b8d1f9cdd83ffbcee17cdbb4f5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_m.svg" +dest_files=["res://.godot/imported/bar_round_small_m.svg-aeb098b8d1f9cdd83ffbcee17cdbb4f5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_r.svg new file mode 100644 index 0000000..3d8528d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_r.svg.import new file mode 100644 index 0000000..c0dc8f7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ww7fvxim2gq" +path="res://.godot/imported/bar_round_small_r.svg-f041b6cfa67296901f2b34e55a4147b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_r.svg" +dest_files=["res://.godot/imported/bar_round_small_r.svg-f041b6cfa67296901f2b34e55a4147b6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_square.svg new file mode 100644 index 0000000..555ad20 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_square.svg.import new file mode 100644 index 0000000..4db7d5c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dau4tbh87ijb" +path="res://.godot/imported/bar_round_small_square.svg-ed368ff3da10d166011d204d70c5c5fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_round_small_square.svg" +dest_files=["res://.godot/imported/bar_round_small_square.svg-ed368ff3da10d166011d204d70c5c5fd.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large.svg new file mode 100644 index 0000000..39b3ef8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large.svg.import new file mode 100644 index 0000000..8764c53 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpl34jtelhr18" +path="res://.godot/imported/bar_square_gloss_large.svg-254f4c2a4f76ea17dddc71d70e7c1a3f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large.svg-254f4c2a4f76ea17dddc71d70e7c1a3f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_l.svg new file mode 100644 index 0000000..0e7dbb5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_l.svg.import new file mode 100644 index 0000000..cd2f19c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5g5p1phic78o" +path="res://.godot/imported/bar_square_gloss_large_l.svg-611cbcf7e85711eb9bfc511725d60dac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_l.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.svg-611cbcf7e85711eb9bfc511725d60dac.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_m.svg new file mode 100644 index 0000000..a1442d5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_m.svg.import new file mode 100644 index 0000000..3002a89 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wg3dtoaxuqc5" +path="res://.godot/imported/bar_square_gloss_large_m.svg-e3ce41408b308da8482b256a85d03feb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_m.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.svg-e3ce41408b308da8482b256a85d03feb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_r.svg new file mode 100644 index 0000000..c775156 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_r.svg.import new file mode 100644 index 0000000..698dd16 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://co08ulvlmemt2" +path="res://.godot/imported/bar_square_gloss_large_r.svg-ba9f6a5909dce09a7ac4d084b51df8f7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_r.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.svg-ba9f6a5909dce09a7ac4d084b51df8f7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_square.svg new file mode 100644 index 0000000..e2994c2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_square.svg.import new file mode 100644 index 0000000..021f53e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clrqlsie2cvj8" +path="res://.godot/imported/bar_square_gloss_large_square.svg-e4f4fee070552c8333cf531cd1e5a6f2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_large_square.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.svg-e4f4fee070552c8333cf531cd1e5a6f2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small.svg new file mode 100644 index 0000000..cc44d8c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small.svg.import new file mode 100644 index 0000000..a94264a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkbvbi6g48bkh" +path="res://.godot/imported/bar_square_gloss_small.svg-68ed16fac838203b179f9950a6299045.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small.svg-68ed16fac838203b179f9950a6299045.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_l.svg new file mode 100644 index 0000000..050e78f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_l.svg.import new file mode 100644 index 0000000..029942f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfxnc6q5beog7" +path="res://.godot/imported/bar_square_gloss_small_l.svg-aca857170c1560f7a80d1fea7a18c678.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_l.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.svg-aca857170c1560f7a80d1fea7a18c678.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_m.svg new file mode 100644 index 0000000..6ffb6fd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_m.svg.import new file mode 100644 index 0000000..a540400 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://broglh5rvdlve" +path="res://.godot/imported/bar_square_gloss_small_m.svg-89ab9c238840c34dd25481d80b24b404.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_m.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.svg-89ab9c238840c34dd25481d80b24b404.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_r.svg new file mode 100644 index 0000000..430da3b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_r.svg.import new file mode 100644 index 0000000..61d196e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddhmoiuynr5ab" +path="res://.godot/imported/bar_square_gloss_small_r.svg-3a44fe3e7a5315dc8fbb848a5ff7f7c9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_r.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.svg-3a44fe3e7a5315dc8fbb848a5ff7f7c9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_square.svg new file mode 100644 index 0000000..5a4191b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_square.svg.import new file mode 100644 index 0000000..05e182d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsxlu1sn4og4t" +path="res://.godot/imported/bar_square_gloss_small_square.svg-322733eccde1111945ea3091dd561453.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_gloss_small_square.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.svg-322733eccde1111945ea3091dd561453.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large.svg new file mode 100644 index 0000000..1ac9ba8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large.svg.import new file mode 100644 index 0000000..5737370 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://o7w7pcg76yrs" +path="res://.godot/imported/bar_square_large.svg-95bbe984fa4a7c0f44dd07ed5d2b7832.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large.svg" +dest_files=["res://.godot/imported/bar_square_large.svg-95bbe984fa4a7c0f44dd07ed5d2b7832.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_l.svg new file mode 100644 index 0000000..99b92ec --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_l.svg.import new file mode 100644 index 0000000..6f0ff08 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e2kj6x5ipssw" +path="res://.godot/imported/bar_square_large_l.svg-c85d4004d5752b66fd8aaf7f65bbb858.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_l.svg" +dest_files=["res://.godot/imported/bar_square_large_l.svg-c85d4004d5752b66fd8aaf7f65bbb858.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_m.svg new file mode 100644 index 0000000..8f4b4aa --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_m.svg.import new file mode 100644 index 0000000..eed9c14 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bne068tnftbvd" +path="res://.godot/imported/bar_square_large_m.svg-305aa70122736e994f817366c9b1a18d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_m.svg" +dest_files=["res://.godot/imported/bar_square_large_m.svg-305aa70122736e994f817366c9b1a18d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_r.svg new file mode 100644 index 0000000..c9cda5f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_r.svg.import new file mode 100644 index 0000000..bc98580 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdl2iku8w2cpa" +path="res://.godot/imported/bar_square_large_r.svg-17f5f87b9ec570c1e0d1c82ac4dc445b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_r.svg" +dest_files=["res://.godot/imported/bar_square_large_r.svg-17f5f87b9ec570c1e0d1c82ac4dc445b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_square.svg new file mode 100644 index 0000000..e1e5239 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_square.svg.import new file mode 100644 index 0000000..b7ef6c8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b22n1peuxv6t1" +path="res://.godot/imported/bar_square_large_square.svg-025119453dc77ceef7747671026ee59b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_large_square.svg" +dest_files=["res://.godot/imported/bar_square_large_square.svg-025119453dc77ceef7747671026ee59b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small.svg new file mode 100644 index 0000000..fddbd07 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small.svg.import new file mode 100644 index 0000000..c751c74 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1q5bp8qjmhsa" +path="res://.godot/imported/bar_square_small.svg-a4630966a8316f4fa5f4b9ecb69a928c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small.svg" +dest_files=["res://.godot/imported/bar_square_small.svg-a4630966a8316f4fa5f4b9ecb69a928c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_l.svg new file mode 100644 index 0000000..da30c5d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_l.svg.import new file mode 100644 index 0000000..8c57061 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccqni4lxjpdcp" +path="res://.godot/imported/bar_square_small_l.svg-cdc7e222a1d5d43c1f0d68555c243e40.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_l.svg" +dest_files=["res://.godot/imported/bar_square_small_l.svg-cdc7e222a1d5d43c1f0d68555c243e40.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_m.svg new file mode 100644 index 0000000..7297249 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_m.svg.import new file mode 100644 index 0000000..e73119f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b8ww3qxekl8s6" +path="res://.godot/imported/bar_square_small_m.svg-b532a8af2e2d96f218a5587ab76cb55c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_m.svg" +dest_files=["res://.godot/imported/bar_square_small_m.svg-b532a8af2e2d96f218a5587ab76cb55c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_r.svg new file mode 100644 index 0000000..4fd26bc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_r.svg.import new file mode 100644 index 0000000..2d530fe --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://yy1pc12wsmid" +path="res://.godot/imported/bar_square_small_r.svg-3e1c50b7d80260adc7fc243a1c0d3dd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_r.svg" +dest_files=["res://.godot/imported/bar_square_small_r.svg-3e1c50b7d80260adc7fc243a1c0d3dd0.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_square.svg new file mode 100644 index 0000000..b7e5459 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_square.svg.import new file mode 100644 index 0000000..3fb661d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b23xr6pksawu4" +path="res://.godot/imported/bar_square_small_square.svg-61e70a7ecf6113a045226a0e1b461476.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/bar_square_small_square.svg" +dest_files=["res://.godot/imported/bar_square_small_square.svg-61e70a7ecf6113a045226a0e1b461476.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle.svg new file mode 100644 index 0000000..af49f27 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle.svg.import new file mode 100644 index 0000000..463ddef --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6ss2k5ibpodx" +path="res://.godot/imported/button_square_header_blade_rectangle.svg-2d038e41d9cd165d8a603db8bc974e22.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.svg-2d038e41d9cd165d8a603db8bc974e22.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle_screws.svg new file mode 100644 index 0000000..c66d6da --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle_screws.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle_screws.svg.import new file mode 100644 index 0000000..e72dceb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbsbonr6h3vk4" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.svg-11a623ee13255cfc75a0be2536f0ec47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.svg-11a623ee13255cfc75a0be2536f0ec47.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square.svg new file mode 100644 index 0000000..dafd633 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square.svg.import new file mode 100644 index 0000000..1047de9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8o5ybvn83p1k" +path="res://.godot/imported/button_square_header_blade_square.svg-e4e4c162d38c8fff922e15eba0486a3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square.svg" +dest_files=["res://.godot/imported/button_square_header_blade_square.svg-e4e4c162d38c8fff922e15eba0486a3c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square_screws.svg new file mode 100644 index 0000000..b1234ec --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square_screws.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square_screws.svg.import new file mode 100644 index 0000000..38e009f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ct6p0652qrxp2" +path="res://.godot/imported/button_square_header_blade_square_screws.svg-c5caf36dd9bf1d27d198bae1517272d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_blade_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.svg-c5caf36dd9bf1d27d198bae1517272d8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle.svg new file mode 100644 index 0000000..5c08473 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle.svg.import new file mode 100644 index 0000000..49760d1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2clviovmj6w3" +path="res://.godot/imported/button_square_header_large_rectangle.svg-8b74dd2899daf4e361b871bf57352f78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.svg-8b74dd2899daf4e361b871bf57352f78.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle_screws.svg new file mode 100644 index 0000000..d7f0dc5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle_screws.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle_screws.svg.import new file mode 100644 index 0000000..7a1eb8c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdiva58rcpx45" +path="res://.godot/imported/button_square_header_large_rectangle_screws.svg-5477f33a952b3fee9cbc434ceda06242.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.svg-5477f33a952b3fee9cbc434ceda06242.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square.svg new file mode 100644 index 0000000..6f086dd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square.svg.import new file mode 100644 index 0000000..d245e9a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bahk4rtqk74g7" +path="res://.godot/imported/button_square_header_large_square.svg-8f66689ea4e9d324e07d3677410a41a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square.svg" +dest_files=["res://.godot/imported/button_square_header_large_square.svg-8f66689ea4e9d324e07d3677410a41a4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square_screws.svg new file mode 100644 index 0000000..c105f4e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square_screws.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square_screws.svg.import new file mode 100644 index 0000000..d5de0fc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyt2ihcdedv4h" +path="res://.godot/imported/button_square_header_large_square_screws.svg-a5c8c8de7b5ddddea524b65887d93e9b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_large_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.svg-a5c8c8de7b5ddddea524b65887d93e9b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle.svg new file mode 100644 index 0000000..cb0d572 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle.svg.import new file mode 100644 index 0000000..e5fd194 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cckwdlh0u3d3v" +path="res://.godot/imported/button_square_header_notch_rectangle.svg-8b33a1da71b4faa99bde586b5c3b2e26.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.svg-8b33a1da71b4faa99bde586b5c3b2e26.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle_screws.svg new file mode 100644 index 0000000..506eaba --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle_screws.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle_screws.svg.import new file mode 100644 index 0000000..2b8399e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://g8romw2aqax6" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.svg-21a73af1ed96d24ea1e6e3d7dee8a5ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.svg-21a73af1ed96d24ea1e6e3d7dee8a5ca.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square.svg new file mode 100644 index 0000000..80789f9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square.svg.import new file mode 100644 index 0000000..57b5ab9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dirdxowcxlelm" +path="res://.godot/imported/button_square_header_notch_square.svg-d582213f8ceb77b5e768544b43c45ea7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square.svg" +dest_files=["res://.godot/imported/button_square_header_notch_square.svg-d582213f8ceb77b5e768544b43c45ea7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square_screws.svg new file mode 100644 index 0000000..4e1ec91 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square_screws.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square_screws.svg.import new file mode 100644 index 0000000..74641e7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgpg2i8lvavme" +path="res://.godot/imported/button_square_header_notch_square_screws.svg-c8dc8002249fc2098276e4e077e60363.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_notch_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.svg-c8dc8002249fc2098276e4e077e60363.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle.svg new file mode 100644 index 0000000..d3ba40f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle.svg.import new file mode 100644 index 0000000..5d037f3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bx0jmm4upsfdn" +path="res://.godot/imported/button_square_header_small_rectangle.svg-eb424921331601fc7ab59b989ed3ad79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.svg-eb424921331601fc7ab59b989ed3ad79.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle_screws.svg new file mode 100644 index 0000000..784d79b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle_screws.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle_screws.svg.import new file mode 100644 index 0000000..af62fcd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c38ss2tbiecwm" +path="res://.godot/imported/button_square_header_small_rectangle_screws.svg-bfded334ee876be57c40e445dd949827.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.svg-bfded334ee876be57c40e445dd949827.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square.svg new file mode 100644 index 0000000..6ce8599 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square.svg.import new file mode 100644 index 0000000..4975131 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dppbtv20b227u" +path="res://.godot/imported/button_square_header_small_square.svg-8026eb74c46700df01889f772c6281f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square.svg" +dest_files=["res://.godot/imported/button_square_header_small_square.svg-8026eb74c46700df01889f772c6281f3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square_screws.svg new file mode 100644 index 0000000..15f4234 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square_screws.svg @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square_screws.svg.import new file mode 100644 index 0000000..e929609 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by4waxh2e2tt7" +path="res://.godot/imported/button_square_header_small_square_screws.svg-b35a0df5f4fb3d4bff9ba961befa0628.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/button_square_header_small_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.svg-b35a0df5f4fb3d4bff9ba961befa0628.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_a.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_a.svg new file mode 100644 index 0000000..b0ba8b7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_a.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_a.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_a.svg.import new file mode 100644 index 0000000..89fe603 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_a.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://biugxgfn2r14s" +path="res://.godot/imported/crosshair_color_a.svg-d44e772b22a9349d2b2f7684cb442401.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_a.svg" +dest_files=["res://.godot/imported/crosshair_color_a.svg-d44e772b22a9349d2b2f7684cb442401.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_b.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_b.svg new file mode 100644 index 0000000..5e1447d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_b.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_b.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_b.svg.import new file mode 100644 index 0000000..6c58df4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_b.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://phbggbybniaq" +path="res://.godot/imported/crosshair_color_b.svg-424b53a8598fe93e9a63f2455692bb86.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_b.svg" +dest_files=["res://.godot/imported/crosshair_color_b.svg-424b53a8598fe93e9a63f2455692bb86.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_c.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_c.svg new file mode 100644 index 0000000..f03bc94 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_c.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_c.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_c.svg.import new file mode 100644 index 0000000..7e3285f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_c.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxwq5ipvgc7ox" +path="res://.godot/imported/crosshair_color_c.svg-45bd62ebd4a309404d5cdd2238ca388c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_c.svg" +dest_files=["res://.godot/imported/crosshair_color_c.svg-45bd62ebd4a309404d5cdd2238ca388c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_d.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_d.svg new file mode 100644 index 0000000..da0c476 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_d.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_d.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_d.svg.import new file mode 100644 index 0000000..61b3f14 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_d.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hg7qqpo8eff4" +path="res://.godot/imported/crosshair_color_d.svg-5bc6baffbb2d6126c9be1ba672fc4c2d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Grey/crosshair_color_d.svg" +dest_files=["res://.godot/imported/crosshair_color_d.svg-5bc6baffbb2d6126c9be1ba672fc4c2d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large.svg new file mode 100644 index 0000000..4542904 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large.svg.import new file mode 100644 index 0000000..5b3e816 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv0ro4k0y8vxc" +path="res://.godot/imported/bar_round_gloss_large.svg-b15016bdfa571226908b2f0700cca4be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large.svg-b15016bdfa571226908b2f0700cca4be.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_l.svg new file mode 100644 index 0000000..8c76f90 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_l.svg.import new file mode 100644 index 0000000..5b5c1a0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dyhi8ahv5tmr6" +path="res://.godot/imported/bar_round_gloss_large_l.svg-846a3dfde034a6ec143494aa6af40e10.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_l.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.svg-846a3dfde034a6ec143494aa6af40e10.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_m.svg new file mode 100644 index 0000000..a157178 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_m.svg.import new file mode 100644 index 0000000..f5b7dbe --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcnd3elkj8le2" +path="res://.godot/imported/bar_round_gloss_large_m.svg-29ce51b34f0b90f3a4ceb899c8269125.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_m.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.svg-29ce51b34f0b90f3a4ceb899c8269125.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_r.svg new file mode 100644 index 0000000..82eec18 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_r.svg.import new file mode 100644 index 0000000..b7db6ae --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca8uxq8a1rtqx" +path="res://.godot/imported/bar_round_gloss_large_r.svg-9a0d67c451b2bfe56a6928c4fe722805.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_r.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.svg-9a0d67c451b2bfe56a6928c4fe722805.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_square.svg new file mode 100644 index 0000000..5630a85 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_square.svg.import new file mode 100644 index 0000000..39ad173 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cgmgkxsbdvmju" +path="res://.godot/imported/bar_round_gloss_large_square.svg-f351f0327cb52854cce21a3f6eb6b175.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_large_square.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.svg-f351f0327cb52854cce21a3f6eb6b175.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small.svg new file mode 100644 index 0000000..25d1d3e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small.svg.import new file mode 100644 index 0000000..74d1eeb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tcclvj1cd8l4" +path="res://.godot/imported/bar_round_gloss_small.svg-86cb353cd5e12ace553b82321306c585.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small.svg-86cb353cd5e12ace553b82321306c585.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_l.svg new file mode 100644 index 0000000..6182c2a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_l.svg.import new file mode 100644 index 0000000..3eb67e8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://btxdrokn1ajy8" +path="res://.godot/imported/bar_round_gloss_small_l.svg-cca81897979962f331093486699dff8e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_l.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.svg-cca81897979962f331093486699dff8e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_m.svg new file mode 100644 index 0000000..2dd06af --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_m.svg.import new file mode 100644 index 0000000..beb3f1b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo743gep8n548" +path="res://.godot/imported/bar_round_gloss_small_m.svg-6cfa669f74d0099bdc4ddb78f86e7da1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_m.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.svg-6cfa669f74d0099bdc4ddb78f86e7da1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_r.svg new file mode 100644 index 0000000..054a453 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_r.svg.import new file mode 100644 index 0000000..99922f0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh62mugmipgex" +path="res://.godot/imported/bar_round_gloss_small_r.svg-2171c9e540cfa2098db4739c8b281d5e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_r.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.svg-2171c9e540cfa2098db4739c8b281d5e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_square.svg new file mode 100644 index 0000000..8d471b2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_square.svg.import new file mode 100644 index 0000000..9753a91 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vx3jtcq7tue" +path="res://.godot/imported/bar_round_gloss_small_square.svg-6608b1ecce0001bf9ef44096aaf251b7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_gloss_small_square.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.svg-6608b1ecce0001bf9ef44096aaf251b7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large.svg new file mode 100644 index 0000000..265b6d7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large.svg.import new file mode 100644 index 0000000..2d7b571 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ci1yfxfspa1it" +path="res://.godot/imported/bar_round_large.svg-b01ad4ad0fce92c710503813a504f1f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large.svg" +dest_files=["res://.godot/imported/bar_round_large.svg-b01ad4ad0fce92c710503813a504f1f6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_l.svg new file mode 100644 index 0000000..c3a814a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_l.svg.import new file mode 100644 index 0000000..a788113 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://clow0d08pd1uj" +path="res://.godot/imported/bar_round_large_l.svg-a1599652375e8ac53c0896511ca0f909.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_l.svg" +dest_files=["res://.godot/imported/bar_round_large_l.svg-a1599652375e8ac53c0896511ca0f909.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_m.svg new file mode 100644 index 0000000..ac449c8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_m.svg.import new file mode 100644 index 0000000..0c88bcd --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csikc5dtm6avr" +path="res://.godot/imported/bar_round_large_m.svg-835129213ccda900f8b409d6f9876845.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_m.svg" +dest_files=["res://.godot/imported/bar_round_large_m.svg-835129213ccda900f8b409d6f9876845.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_r.svg new file mode 100644 index 0000000..3297097 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_r.svg.import new file mode 100644 index 0000000..198318c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbee6b6rqhov" +path="res://.godot/imported/bar_round_large_r.svg-50817069a1392db4dc78ca9b66807560.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_r.svg" +dest_files=["res://.godot/imported/bar_round_large_r.svg-50817069a1392db4dc78ca9b66807560.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_square.svg new file mode 100644 index 0000000..8329c34 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_square.svg.import new file mode 100644 index 0000000..ad17a03 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1wpc4cv5v0nj" +path="res://.godot/imported/bar_round_large_square.svg-306bf6da73a00c7cb4796d3afc00f4d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_large_square.svg" +dest_files=["res://.godot/imported/bar_round_large_square.svg-306bf6da73a00c7cb4796d3afc00f4d8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small.svg new file mode 100644 index 0000000..022d0e3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small.svg.import new file mode 100644 index 0000000..1b9d69c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfor44vhwgdwf" +path="res://.godot/imported/bar_round_small.svg-e02f96f50e234cfd4b8a9e5923dae271.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small.svg" +dest_files=["res://.godot/imported/bar_round_small.svg-e02f96f50e234cfd4b8a9e5923dae271.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_l.svg new file mode 100644 index 0000000..a375a01 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_l.svg.import new file mode 100644 index 0000000..a9f1ea5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djlawxdvv8iq8" +path="res://.godot/imported/bar_round_small_l.svg-0ccdcd0ffc6592998a611a9619f4a942.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_l.svg" +dest_files=["res://.godot/imported/bar_round_small_l.svg-0ccdcd0ffc6592998a611a9619f4a942.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_m.svg new file mode 100644 index 0000000..a688948 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_m.svg.import new file mode 100644 index 0000000..328f9f8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baexsd16wvv3j" +path="res://.godot/imported/bar_round_small_m.svg-49691a4e419edb344e5cdb3044264560.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_m.svg" +dest_files=["res://.godot/imported/bar_round_small_m.svg-49691a4e419edb344e5cdb3044264560.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_r.svg new file mode 100644 index 0000000..9bc093a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_r.svg.import new file mode 100644 index 0000000..cc09cf7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dd87lf40fvxd3" +path="res://.godot/imported/bar_round_small_r.svg-170c13ae5ac646e9d0054c6bc2682c24.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_r.svg" +dest_files=["res://.godot/imported/bar_round_small_r.svg-170c13ae5ac646e9d0054c6bc2682c24.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_square.svg new file mode 100644 index 0000000..50bcce6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_square.svg.import new file mode 100644 index 0000000..23db007 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xkap3x14yi12" +path="res://.godot/imported/bar_round_small_square.svg-9712c78b8e2fe72d1dd9dcf15a721c07.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_round_small_square.svg" +dest_files=["res://.godot/imported/bar_round_small_square.svg-9712c78b8e2fe72d1dd9dcf15a721c07.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large.svg new file mode 100644 index 0000000..e514eda --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large.svg.import new file mode 100644 index 0000000..88099e3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hh7mmwwcy3km" +path="res://.godot/imported/bar_square_gloss_large.svg-b60401838f4a4638cf36d11749c3e662.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large.svg-b60401838f4a4638cf36d11749c3e662.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_l.svg new file mode 100644 index 0000000..eb48a47 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_l.svg.import new file mode 100644 index 0000000..c943e87 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cob0ef00056y5" +path="res://.godot/imported/bar_square_gloss_large_l.svg-f76b697f1b70365e9a00cd71f68e7877.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_l.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.svg-f76b697f1b70365e9a00cd71f68e7877.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_m.svg new file mode 100644 index 0000000..a157178 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_m.svg.import new file mode 100644 index 0000000..1754a67 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7ee4h8q4mdy1" +path="res://.godot/imported/bar_square_gloss_large_m.svg-7ab5d69d7a7ed0ae9b65a01fdd1cc511.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_m.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.svg-7ab5d69d7a7ed0ae9b65a01fdd1cc511.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_r.svg new file mode 100644 index 0000000..704a079 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_r.svg.import new file mode 100644 index 0000000..a1f19d0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dovqdsr0t2yim" +path="res://.godot/imported/bar_square_gloss_large_r.svg-a098176c0dba81ed24342a4d9888a860.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_r.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.svg-a098176c0dba81ed24342a4d9888a860.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_square.svg new file mode 100644 index 0000000..07376e0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_square.svg.import new file mode 100644 index 0000000..5143271 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lx66h2wpu6tl" +path="res://.godot/imported/bar_square_gloss_large_square.svg-4d73d7702e5a84ef7465fcf47357bba4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_large_square.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.svg-4d73d7702e5a84ef7465fcf47357bba4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small.svg new file mode 100644 index 0000000..074361b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small.svg.import new file mode 100644 index 0000000..21f3f9d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0pfm24pu4tgo" +path="res://.godot/imported/bar_square_gloss_small.svg-d7a87df78cf7a1b2ad5c3f5a4f6a40ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small.svg-d7a87df78cf7a1b2ad5c3f5a4f6a40ac.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_l.svg new file mode 100644 index 0000000..44cc93f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_l.svg.import new file mode 100644 index 0000000..9693fe7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcyprd7ta3g4a" +path="res://.godot/imported/bar_square_gloss_small_l.svg-a990c8284c01fb720f50d1366b741067.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_l.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.svg-a990c8284c01fb720f50d1366b741067.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_m.svg new file mode 100644 index 0000000..0282342 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_m.svg.import new file mode 100644 index 0000000..a2045f5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg7qego0qd1hm" +path="res://.godot/imported/bar_square_gloss_small_m.svg-f5089e0faeee6bc67240e2ddbf32e798.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_m.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.svg-f5089e0faeee6bc67240e2ddbf32e798.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_r.svg new file mode 100644 index 0000000..67eaceb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_r.svg.import new file mode 100644 index 0000000..cb21f47 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://f7bu8k1x8h0e" +path="res://.godot/imported/bar_square_gloss_small_r.svg-1455374f612e4754665ae667d23d42ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_r.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.svg-1455374f612e4754665ae667d23d42ad.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_square.svg new file mode 100644 index 0000000..2f2af93 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_square.svg.import new file mode 100644 index 0000000..9c4e897 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://usxjy4o0kvxf" +path="res://.godot/imported/bar_square_gloss_small_square.svg-a6bed4eac6eaada780d32705a0eb1f8a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_gloss_small_square.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.svg-a6bed4eac6eaada780d32705a0eb1f8a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large.svg new file mode 100644 index 0000000..37eb9f0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large.svg.import new file mode 100644 index 0000000..606242e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://mgonigd1psyi" +path="res://.godot/imported/bar_square_large.svg-fcc7849b472c8569560bed80873fe336.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large.svg" +dest_files=["res://.godot/imported/bar_square_large.svg-fcc7849b472c8569560bed80873fe336.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_l.svg new file mode 100644 index 0000000..0f1bae8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_l.svg.import new file mode 100644 index 0000000..42f9dd4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dodhctwekpq21" +path="res://.godot/imported/bar_square_large_l.svg-e6e472460e959258e026ee1a0958c927.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_l.svg" +dest_files=["res://.godot/imported/bar_square_large_l.svg-e6e472460e959258e026ee1a0958c927.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_m.svg new file mode 100644 index 0000000..ac449c8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_m.svg.import new file mode 100644 index 0000000..4ceff3b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://djfwq8exg8jlt" +path="res://.godot/imported/bar_square_large_m.svg-93b500e34e99591ede7b1157cbfd824b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_m.svg" +dest_files=["res://.godot/imported/bar_square_large_m.svg-93b500e34e99591ede7b1157cbfd824b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_r.svg new file mode 100644 index 0000000..9c4b705 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_r.svg.import new file mode 100644 index 0000000..49677fc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkyfxxrhrq434" +path="res://.godot/imported/bar_square_large_r.svg-0abca3572f827ca48825a9a369ddc2db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_r.svg" +dest_files=["res://.godot/imported/bar_square_large_r.svg-0abca3572f827ca48825a9a369ddc2db.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_square.svg new file mode 100644 index 0000000..e5e840e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_square.svg.import new file mode 100644 index 0000000..6684f86 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg3d1a2r5ad4h" +path="res://.godot/imported/bar_square_large_square.svg-33444248caae3abbe77784c9613fd043.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_large_square.svg" +dest_files=["res://.godot/imported/bar_square_large_square.svg-33444248caae3abbe77784c9613fd043.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small.svg new file mode 100644 index 0000000..487b286 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small.svg.import new file mode 100644 index 0000000..be9f5c3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqe0e82dc1r32" +path="res://.godot/imported/bar_square_small.svg-41d261abd1becad2f8b937d72b0fd532.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small.svg" +dest_files=["res://.godot/imported/bar_square_small.svg-41d261abd1becad2f8b937d72b0fd532.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_l.svg new file mode 100644 index 0000000..17d291e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_l.svg.import new file mode 100644 index 0000000..a1e14c4 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by8bjn4wautro" +path="res://.godot/imported/bar_square_small_l.svg-683e73d8bd1f64b2b822e2d8c369fc29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_l.svg" +dest_files=["res://.godot/imported/bar_square_small_l.svg-683e73d8bd1f64b2b822e2d8c369fc29.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_m.svg new file mode 100644 index 0000000..a688948 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_m.svg.import new file mode 100644 index 0000000..0fb2eb2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3krief6v32lu" +path="res://.godot/imported/bar_square_small_m.svg-e139ade1f3f888f68acfb9f3e286ac3c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_m.svg" +dest_files=["res://.godot/imported/bar_square_small_m.svg-e139ade1f3f888f68acfb9f3e286ac3c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_r.svg new file mode 100644 index 0000000..61b71ed --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_r.svg.import new file mode 100644 index 0000000..f902719 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvd6jjr2jg6pc" +path="res://.godot/imported/bar_square_small_r.svg-bdffcca775edbbbaf82451c9bf3f9539.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_r.svg" +dest_files=["res://.godot/imported/bar_square_small_r.svg-bdffcca775edbbbaf82451c9bf3f9539.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_square.svg new file mode 100644 index 0000000..e82c8a3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_square.svg.import new file mode 100644 index 0000000..82a9e17 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ey37n1sb5fry" +path="res://.godot/imported/bar_square_small_square.svg-463e2bcab88612a36ffda4652a8aa676.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/bar_square_small_square.svg" +dest_files=["res://.godot/imported/bar_square_small_square.svg-463e2bcab88612a36ffda4652a8aa676.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle.svg new file mode 100644 index 0000000..e071114 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle.svg.import new file mode 100644 index 0000000..d743e54 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6yihui5wu3n6" +path="res://.godot/imported/button_square_header_blade_rectangle.svg-a5bcdbeaf7dd415eeb6f9b612864e632.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.svg-a5bcdbeaf7dd415eeb6f9b612864e632.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle_screws.svg new file mode 100644 index 0000000..a41ad9d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle_screws.svg.import new file mode 100644 index 0000000..653b1c8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b06ke1ce6wr61" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.svg-381d6c1d503abdaf6af7098c396c1a05.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.svg-381d6c1d503abdaf6af7098c396c1a05.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square.svg new file mode 100644 index 0000000..56a1fc6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square.svg.import new file mode 100644 index 0000000..ab362d9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bcc5gc2cgik02" +path="res://.godot/imported/button_square_header_blade_square.svg-0588f24d085e38b7d966638fe1c5b824.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square.svg" +dest_files=["res://.godot/imported/button_square_header_blade_square.svg-0588f24d085e38b7d966638fe1c5b824.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square_screws.svg new file mode 100644 index 0000000..2a2a3a5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square_screws.svg.import new file mode 100644 index 0000000..ea96de1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd28gkik6ygvo" +path="res://.godot/imported/button_square_header_blade_square_screws.svg-bdf49d7ff1dd5f01103337909eb8926d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_blade_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.svg-bdf49d7ff1dd5f01103337909eb8926d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle.svg new file mode 100644 index 0000000..dc8b69a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle.svg.import new file mode 100644 index 0000000..3ff909f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bin5rehow3th0" +path="res://.godot/imported/button_square_header_large_rectangle.svg-2a9d7f5502d3a946d85fec864a323c08.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.svg-2a9d7f5502d3a946d85fec864a323c08.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle_screws.svg new file mode 100644 index 0000000..b7f55c2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle_screws.svg.import new file mode 100644 index 0000000..9afef7a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmtcxmfuxlity" +path="res://.godot/imported/button_square_header_large_rectangle_screws.svg-470f00d33ecb55936c091847267fd461.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.svg-470f00d33ecb55936c091847267fd461.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square.svg new file mode 100644 index 0000000..2a9e62f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square.svg.import new file mode 100644 index 0000000..115766e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d7kpvw70kpue" +path="res://.godot/imported/button_square_header_large_square.svg-029ef265005c2225774bedd1a51625c1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square.svg" +dest_files=["res://.godot/imported/button_square_header_large_square.svg-029ef265005c2225774bedd1a51625c1.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square_screws.svg new file mode 100644 index 0000000..de991c6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square_screws.svg.import new file mode 100644 index 0000000..620c2fc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://pm87ymxstht6" +path="res://.godot/imported/button_square_header_large_square_screws.svg-da8a00297ee990b36e43239544a7641c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_large_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.svg-da8a00297ee990b36e43239544a7641c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle.svg new file mode 100644 index 0000000..d1827a8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle.svg.import new file mode 100644 index 0000000..3756180 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xuh2pnpq0frv" +path="res://.godot/imported/button_square_header_notch_rectangle.svg-bf2b32a27a19ccffa07dda95201a0cfa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.svg-bf2b32a27a19ccffa07dda95201a0cfa.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle_screws.svg new file mode 100644 index 0000000..1b45c4f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle_screws.svg.import new file mode 100644 index 0000000..c55fc59 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c31ddprh1ebex" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.svg-e261ce5ec2a57e245cb158859a52c7e5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.svg-e261ce5ec2a57e245cb158859a52c7e5.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square.svg new file mode 100644 index 0000000..2c0f5a3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square.svg.import new file mode 100644 index 0000000..1d4a652 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2gbo7b1c0vv4" +path="res://.godot/imported/button_square_header_notch_square.svg-9c95955fba59689028178c611298e088.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square.svg" +dest_files=["res://.godot/imported/button_square_header_notch_square.svg-9c95955fba59689028178c611298e088.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square_screws.svg new file mode 100644 index 0000000..fba0d79 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square_screws.svg.import new file mode 100644 index 0000000..f0f2912 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc62l7xlca8fi" +path="res://.godot/imported/button_square_header_notch_square_screws.svg-1c829ce31c3d4984cd7db09c496b1c06.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_notch_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.svg-1c829ce31c3d4984cd7db09c496b1c06.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle.svg new file mode 100644 index 0000000..8188c9e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle.svg.import new file mode 100644 index 0000000..cea1f48 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b2471y72xuj6n" +path="res://.godot/imported/button_square_header_small_rectangle.svg-8abfedd85a983e87f73da45bb152f173.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.svg-8abfedd85a983e87f73da45bb152f173.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle_screws.svg new file mode 100644 index 0000000..3d342c5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle_screws.svg.import new file mode 100644 index 0000000..6970ccb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd8liwqnb0wco" +path="res://.godot/imported/button_square_header_small_rectangle_screws.svg-ad95a1810797b19d870630400ccd7902.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.svg-ad95a1810797b19d870630400ccd7902.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square.svg new file mode 100644 index 0000000..8d47b8c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square.svg.import new file mode 100644 index 0000000..b04ce50 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyylxu36nvadd" +path="res://.godot/imported/button_square_header_small_square.svg-3d514fc6decbba0d5434f4852d883c23.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square.svg" +dest_files=["res://.godot/imported/button_square_header_small_square.svg-3d514fc6decbba0d5434f4852d883c23.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square_screws.svg new file mode 100644 index 0000000..0eb0fb1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square_screws.svg.import new file mode 100644 index 0000000..ab5d432 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dbybxdytvnank" +path="res://.godot/imported/button_square_header_small_square_screws.svg-98e7595db78881384676fb4a9fce536f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/button_square_header_small_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.svg-98e7595db78881384676fb4a9fce536f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_a.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_a.svg new file mode 100644 index 0000000..af89f20 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_a.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_a.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_a.svg.import new file mode 100644 index 0000000..b028f4e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_a.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0hihbta7and3" +path="res://.godot/imported/crosshair_color_a.svg-cc6fb091627304263a717a56627a5a4d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_a.svg" +dest_files=["res://.godot/imported/crosshair_color_a.svg-cc6fb091627304263a717a56627a5a4d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_b.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_b.svg new file mode 100644 index 0000000..d03f9c0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_b.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_b.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_b.svg.import new file mode 100644 index 0000000..f566947 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_b.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dw7ml68iuxa4k" +path="res://.godot/imported/crosshair_color_b.svg-cdf6b58a0aea51c12c2bb2181a548fe7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_b.svg" +dest_files=["res://.godot/imported/crosshair_color_b.svg-cdf6b58a0aea51c12c2bb2181a548fe7.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_c.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_c.svg new file mode 100644 index 0000000..eb079bb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_c.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_c.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_c.svg.import new file mode 100644 index 0000000..baf4a98 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_c.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwbqxq0o47sxi" +path="res://.godot/imported/crosshair_color_c.svg-8e04dfb5a014dc6dc649babe063e118e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_c.svg" +dest_files=["res://.godot/imported/crosshair_color_c.svg-8e04dfb5a014dc6dc649babe063e118e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_d.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_d.svg new file mode 100644 index 0000000..9a96ecb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_d.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_d.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_d.svg.import new file mode 100644 index 0000000..ce824c9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_d.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xvdj6flg3n8x" +path="res://.godot/imported/crosshair_color_d.svg-6db41ea82c33e713b179a357e8da7220.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Red/crosshair_color_d.svg" +dest_files=["res://.godot/imported/crosshair_color_d.svg-6db41ea82c33e713b179a357e8da7220.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large.svg new file mode 100644 index 0000000..450b46f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large.svg.import new file mode 100644 index 0000000..7bfe719 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q7tl3ribgy4q" +path="res://.godot/imported/bar_round_gloss_large.svg-ba5e141d43207f9effd9f9049e01cae8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large.svg-ba5e141d43207f9effd9f9049e01cae8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_l.svg new file mode 100644 index 0000000..f6bd23d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_l.svg.import new file mode 100644 index 0000000..cfb9ba8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5fgqer64y0m" +path="res://.godot/imported/bar_round_gloss_large_l.svg-baf141649d57cef2ca3fb2e765ca9348.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_l.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_l.svg-baf141649d57cef2ca3fb2e765ca9348.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_m.svg new file mode 100644 index 0000000..3f89918 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_m.svg.import new file mode 100644 index 0000000..509c0c9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://daip2dvhsd78" +path="res://.godot/imported/bar_round_gloss_large_m.svg-b9d466c2a1cf024561fe46d64394bf45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_m.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_m.svg-b9d466c2a1cf024561fe46d64394bf45.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_r.svg new file mode 100644 index 0000000..606ec4a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_r.svg.import new file mode 100644 index 0000000..75ea4f6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gpul3r3vteel" +path="res://.godot/imported/bar_round_gloss_large_r.svg-d60c465ad51b9967d32ef25d133c3127.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_r.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_r.svg-d60c465ad51b9967d32ef25d133c3127.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_square.svg new file mode 100644 index 0000000..039bdd6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_square.svg.import new file mode 100644 index 0000000..d9810af --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0oca8ai316qj" +path="res://.godot/imported/bar_round_gloss_large_square.svg-d2eadd4b5df9584524fa5a0a97229166.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_large_square.svg" +dest_files=["res://.godot/imported/bar_round_gloss_large_square.svg-d2eadd4b5df9584524fa5a0a97229166.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small.svg new file mode 100644 index 0000000..9692cb7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small.svg.import new file mode 100644 index 0000000..6dbc6d8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5kmdq7sbq4l7" +path="res://.godot/imported/bar_round_gloss_small.svg-bc2f8afd3f67000f89f1b36db87653c8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small.svg-bc2f8afd3f67000f89f1b36db87653c8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_l.svg new file mode 100644 index 0000000..c544c04 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_l.svg.import new file mode 100644 index 0000000..72f8e1d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1xn0wa2w1bcu" +path="res://.godot/imported/bar_round_gloss_small_l.svg-6a9dc22d0304191f44459742eb95d89e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_l.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_l.svg-6a9dc22d0304191f44459742eb95d89e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_m.svg new file mode 100644 index 0000000..5a1a2e7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_m.svg.import new file mode 100644 index 0000000..e2c9a99 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cb5vx0pjh88wj" +path="res://.godot/imported/bar_round_gloss_small_m.svg-843e1b69bff4caeea1f9720027660f83.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_m.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_m.svg-843e1b69bff4caeea1f9720027660f83.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_r.svg new file mode 100644 index 0000000..e7d24c9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_r.svg.import new file mode 100644 index 0000000..9f19f73 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfweql653cav2" +path="res://.godot/imported/bar_round_gloss_small_r.svg-14e4e208b2233f3f20aad46ab34e46e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_r.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_r.svg-14e4e208b2233f3f20aad46ab34e46e4.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_square.svg new file mode 100644 index 0000000..9eb59bf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_square.svg.import new file mode 100644 index 0000000..077f2d6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bicl2j3vctnht" +path="res://.godot/imported/bar_round_gloss_small_square.svg-c634aee5b53358fee8d04365db71f48d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_gloss_small_square.svg" +dest_files=["res://.godot/imported/bar_round_gloss_small_square.svg-c634aee5b53358fee8d04365db71f48d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large.svg new file mode 100644 index 0000000..7d5cd46 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large.svg.import new file mode 100644 index 0000000..dee6865 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cfwb81sqy5ou2" +path="res://.godot/imported/bar_round_large.svg-744ff93a131805aedce522bae952e93c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large.svg" +dest_files=["res://.godot/imported/bar_round_large.svg-744ff93a131805aedce522bae952e93c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_l.svg new file mode 100644 index 0000000..17e3be8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_l.svg.import new file mode 100644 index 0000000..6e347f1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://t151h5cld6u3" +path="res://.godot/imported/bar_round_large_l.svg-a35f69f5e77c3ba0aa7629bdd29324a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_l.svg" +dest_files=["res://.godot/imported/bar_round_large_l.svg-a35f69f5e77c3ba0aa7629bdd29324a6.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_m.svg new file mode 100644 index 0000000..c8a9831 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_m.svg.import new file mode 100644 index 0000000..fec31c2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1fwyupiiii8p" +path="res://.godot/imported/bar_round_large_m.svg-a0845bfe7983f05418df684fba250345.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_m.svg" +dest_files=["res://.godot/imported/bar_round_large_m.svg-a0845bfe7983f05418df684fba250345.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_r.svg new file mode 100644 index 0000000..fe2e58d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_r.svg.import new file mode 100644 index 0000000..6efa84d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rsvhkhehxikh" +path="res://.godot/imported/bar_round_large_r.svg-e66e1a383822a3d2bb9bfad833945a0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_r.svg" +dest_files=["res://.godot/imported/bar_round_large_r.svg-e66e1a383822a3d2bb9bfad833945a0f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_square.svg new file mode 100644 index 0000000..75dcf7e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_square.svg.import new file mode 100644 index 0000000..9087ffa --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chkcok1kx4vr7" +path="res://.godot/imported/bar_round_large_square.svg-df1ed4141da57e408cfb4d8133a29603.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_large_square.svg" +dest_files=["res://.godot/imported/bar_round_large_square.svg-df1ed4141da57e408cfb4d8133a29603.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small.svg new file mode 100644 index 0000000..79a9464 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small.svg.import new file mode 100644 index 0000000..d3f2f82 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://db8h276bj36e8" +path="res://.godot/imported/bar_round_small.svg-0daa2a584bef4b1d8cddcf2e424a0fba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small.svg" +dest_files=["res://.godot/imported/bar_round_small.svg-0daa2a584bef4b1d8cddcf2e424a0fba.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_l.svg new file mode 100644 index 0000000..7c88848 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_l.svg.import new file mode 100644 index 0000000..037c6d9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmdhigmel6ewh" +path="res://.godot/imported/bar_round_small_l.svg-64275b0dc6d13aa8d1eb589098d617df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_l.svg" +dest_files=["res://.godot/imported/bar_round_small_l.svg-64275b0dc6d13aa8d1eb589098d617df.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_m.svg new file mode 100644 index 0000000..8dd861e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_m.svg.import new file mode 100644 index 0000000..3029846 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw334xyql7xts" +path="res://.godot/imported/bar_round_small_m.svg-1726fa146ee7053dfbd7678df93f552e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_m.svg" +dest_files=["res://.godot/imported/bar_round_small_m.svg-1726fa146ee7053dfbd7678df93f552e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_r.svg new file mode 100644 index 0000000..6c053b7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_r.svg.import new file mode 100644 index 0000000..3231549 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brog1ar7gytfr" +path="res://.godot/imported/bar_round_small_r.svg-e33b444f2bc06cd8f2bd4e1a6df861ca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_r.svg" +dest_files=["res://.godot/imported/bar_round_small_r.svg-e33b444f2bc06cd8f2bd4e1a6df861ca.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_square.svg new file mode 100644 index 0000000..6875e19 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_square.svg.import new file mode 100644 index 0000000..d693ab9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0h4676ic71qp" +path="res://.godot/imported/bar_round_small_square.svg-f28dc16817faaf56dc682d702d8cc648.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_round_small_square.svg" +dest_files=["res://.godot/imported/bar_round_small_square.svg-f28dc16817faaf56dc682d702d8cc648.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large.svg new file mode 100644 index 0000000..f83fbd9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large.svg.import new file mode 100644 index 0000000..c6ed3eb --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1t7d235awkmp" +path="res://.godot/imported/bar_square_gloss_large.svg-32c43ebaf469716d4fad1b62c0f2897b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large.svg-32c43ebaf469716d4fad1b62c0f2897b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_l.svg new file mode 100644 index 0000000..9fab150 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_l.svg.import new file mode 100644 index 0000000..f1f3e14 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxv2feeb2bojf" +path="res://.godot/imported/bar_square_gloss_large_l.svg-be644e7803f662de0e75599b33105c09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_l.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_l.svg-be644e7803f662de0e75599b33105c09.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_m.svg new file mode 100644 index 0000000..3f89918 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_m.svg.import new file mode 100644 index 0000000..bbd35e7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crngufdlaohnj" +path="res://.godot/imported/bar_square_gloss_large_m.svg-8923617cf3d4efd6f5f8df714ff896b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_m.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_m.svg-8923617cf3d4efd6f5f8df714ff896b9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_r.svg new file mode 100644 index 0000000..1b4f984 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_r.svg.import new file mode 100644 index 0000000..f490d8b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7jckyt1uoc0s" +path="res://.godot/imported/bar_square_gloss_large_r.svg-2c9464103eba3f5453324709e9338ab2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_r.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_r.svg-2c9464103eba3f5453324709e9338ab2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_square.svg new file mode 100644 index 0000000..8bc301a --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_square.svg.import new file mode 100644 index 0000000..97fc0a2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq4kwj5fscj40" +path="res://.godot/imported/bar_square_gloss_large_square.svg-abe38b0beb062a4d0759c47e37afa4db.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_large_square.svg" +dest_files=["res://.godot/imported/bar_square_gloss_large_square.svg-abe38b0beb062a4d0759c47e37afa4db.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small.svg new file mode 100644 index 0000000..23108a5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small.svg.import new file mode 100644 index 0000000..903f820 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bccmb5uvnpytn" +path="res://.godot/imported/bar_square_gloss_small.svg-a21a412684ea7ad9602b3964a45af5d2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small.svg-a21a412684ea7ad9602b3964a45af5d2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_l.svg new file mode 100644 index 0000000..8c7d8c7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_l.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_l.svg.import new file mode 100644 index 0000000..87deeee --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://shfuo5lq7v18" +path="res://.godot/imported/bar_square_gloss_small_l.svg-f3ac05583adaf909e9d11c2a09a97035.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_l.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_l.svg-f3ac05583adaf909e9d11c2a09a97035.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_m.svg new file mode 100644 index 0000000..2cce3e9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_m.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_m.svg.import new file mode 100644 index 0000000..e3e3cc3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqtly0h3vytcp" +path="res://.godot/imported/bar_square_gloss_small_m.svg-3cad3b13d5f9906817f7e66ce4196049.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_m.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_m.svg-3cad3b13d5f9906817f7e66ce4196049.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_r.svg new file mode 100644 index 0000000..66915f1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_r.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_r.svg.import new file mode 100644 index 0000000..9e20c09 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jaf6lts2jmo0" +path="res://.godot/imported/bar_square_gloss_small_r.svg-85291311e9e9431cee4f4cf5d7633d29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_r.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_r.svg-85291311e9e9431cee4f4cf5d7633d29.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_square.svg new file mode 100644 index 0000000..f103171 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_square.svg @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_square.svg.import new file mode 100644 index 0000000..3640400 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://463py3o54os7" +path="res://.godot/imported/bar_square_gloss_small_square.svg-1613a65d464f0f11a7a615d56315531d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_gloss_small_square.svg" +dest_files=["res://.godot/imported/bar_square_gloss_small_square.svg-1613a65d464f0f11a7a615d56315531d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large.svg new file mode 100644 index 0000000..7ad93a5 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large.svg.import new file mode 100644 index 0000000..b5e2789 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c0vbrc3ld7dq8" +path="res://.godot/imported/bar_square_large.svg-03ce8393a150f9d3ab91ce36db2d4106.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large.svg" +dest_files=["res://.godot/imported/bar_square_large.svg-03ce8393a150f9d3ab91ce36db2d4106.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_l.svg new file mode 100644 index 0000000..c88e210 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_l.svg.import new file mode 100644 index 0000000..7241551 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://kynboc7lqni0" +path="res://.godot/imported/bar_square_large_l.svg-fb9304195f85e81d2fb83e967f9e3952.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_l.svg" +dest_files=["res://.godot/imported/bar_square_large_l.svg-fb9304195f85e81d2fb83e967f9e3952.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_m.svg new file mode 100644 index 0000000..c8a9831 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_m.svg.import new file mode 100644 index 0000000..249d45b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsihhrpyfys73" +path="res://.godot/imported/bar_square_large_m.svg-fbcdd665d66da49fcda6e37c891ec6ba.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_m.svg" +dest_files=["res://.godot/imported/bar_square_large_m.svg-fbcdd665d66da49fcda6e37c891ec6ba.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_r.svg new file mode 100644 index 0000000..c62f00e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_r.svg.import new file mode 100644 index 0000000..4de0e52 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhxt7vjf0fxsm" +path="res://.godot/imported/bar_square_large_r.svg-02a1f5d273b8a56c116def3af572e6c9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_r.svg" +dest_files=["res://.godot/imported/bar_square_large_r.svg-02a1f5d273b8a56c116def3af572e6c9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_square.svg new file mode 100644 index 0000000..eed3a19 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_square.svg.import new file mode 100644 index 0000000..d63e359 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bmdy37mdsm8kn" +path="res://.godot/imported/bar_square_large_square.svg-ce3281abbcd12e6022cd9c2f5f364929.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_large_square.svg" +dest_files=["res://.godot/imported/bar_square_large_square.svg-ce3281abbcd12e6022cd9c2f5f364929.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small.svg new file mode 100644 index 0000000..08e7ec2 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small.svg.import new file mode 100644 index 0000000..8a48100 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ca0kpmufm0wur" +path="res://.godot/imported/bar_square_small.svg-d2c2c453c8c7145dbc6fa0cef1848655.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small.svg" +dest_files=["res://.godot/imported/bar_square_small.svg-d2c2c453c8c7145dbc6fa0cef1848655.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_l.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_l.svg new file mode 100644 index 0000000..7e2f312 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_l.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_l.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_l.svg.import new file mode 100644 index 0000000..e69bdde --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_l.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dm8gd7sdf0w6i" +path="res://.godot/imported/bar_square_small_l.svg-9e4395defbc0ab559064e9a206eeb04a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_l.svg" +dest_files=["res://.godot/imported/bar_square_small_l.svg-9e4395defbc0ab559064e9a206eeb04a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_m.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_m.svg new file mode 100644 index 0000000..8dd861e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_m.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_m.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_m.svg.import new file mode 100644 index 0000000..83f4f31 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_m.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jhmybdfxiw5q" +path="res://.godot/imported/bar_square_small_m.svg-d18eb766cdc51742c9ba6533f93e1175.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_m.svg" +dest_files=["res://.godot/imported/bar_square_small_m.svg-d18eb766cdc51742c9ba6533f93e1175.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_r.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_r.svg new file mode 100644 index 0000000..8e16f86 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_r.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_r.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_r.svg.import new file mode 100644 index 0000000..e0feaa9 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_r.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://suxjmad4ufvr" +path="res://.godot/imported/bar_square_small_r.svg-9b07dfdc435253c76c312e4e4dafa31d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_r.svg" +dest_files=["res://.godot/imported/bar_square_small_r.svg-9b07dfdc435253c76c312e4e4dafa31d.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_square.svg new file mode 100644 index 0000000..d064c01 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_square.svg @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_square.svg.import new file mode 100644 index 0000000..05cb62c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cunmaxtgs2sbs" +path="res://.godot/imported/bar_square_small_square.svg-f5986901d50f73eb2d957dcc2dcc8ace.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/bar_square_small_square.svg" +dest_files=["res://.godot/imported/bar_square_small_square.svg-f5986901d50f73eb2d957dcc2dcc8ace.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle.svg new file mode 100644 index 0000000..230b8a6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle.svg.import new file mode 100644 index 0000000..6415b3e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7s6vmwenn61p" +path="res://.godot/imported/button_square_header_blade_rectangle.svg-fce0c264874eb02156d290f364d7823f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle.svg-fce0c264874eb02156d290f364d7823f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle_screws.svg new file mode 100644 index 0000000..c0e485f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle_screws.svg.import new file mode 100644 index 0000000..9775ac6 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ooanhutb3o" +path="res://.godot/imported/button_square_header_blade_rectangle_screws.svg-4eef246114f7f1eb6d14473440e40df3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_blade_rectangle_screws.svg-4eef246114f7f1eb6d14473440e40df3.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square.svg new file mode 100644 index 0000000..20617dc --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square.svg.import new file mode 100644 index 0000000..835c6a3 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cftyqgta6shx5" +path="res://.godot/imported/button_square_header_blade_square.svg-a7c2f6e1b2a8d6f396bfd5cbade668bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square.svg" +dest_files=["res://.godot/imported/button_square_header_blade_square.svg-a7c2f6e1b2a8d6f396bfd5cbade668bb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square_screws.svg new file mode 100644 index 0000000..d970296 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square_screws.svg.import new file mode 100644 index 0000000..0211290 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmboov12aeypy" +path="res://.godot/imported/button_square_header_blade_square_screws.svg-ddc73635ebcca46f365adc3b24c34385.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_blade_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_blade_square_screws.svg-ddc73635ebcca46f365adc3b24c34385.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle.svg new file mode 100644 index 0000000..ce129d0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle.svg.import new file mode 100644 index 0000000..ca8cd4b --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbc3eaa8ktjdh" +path="res://.godot/imported/button_square_header_large_rectangle.svg-f0a425e425b551db4c61bc585781f6df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_large_rectangle.svg-f0a425e425b551db4c61bc585781f6df.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle_screws.svg new file mode 100644 index 0000000..51af012 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle_screws.svg.import new file mode 100644 index 0000000..cb6d3a8 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dsm7etxhkjcis" +path="res://.godot/imported/button_square_header_large_rectangle_screws.svg-a8ec52ccc0f2f44d5170b5e899917b6e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_large_rectangle_screws.svg-a8ec52ccc0f2f44d5170b5e899917b6e.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square.svg new file mode 100644 index 0000000..f113d26 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square.svg.import new file mode 100644 index 0000000..bd57ded --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyt4oq66q5wiq" +path="res://.godot/imported/button_square_header_large_square.svg-84c5431945f0a78717f3357aa1a6c000.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square.svg" +dest_files=["res://.godot/imported/button_square_header_large_square.svg-84c5431945f0a78717f3357aa1a6c000.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square_screws.svg new file mode 100644 index 0000000..278bd27 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square_screws.svg.import new file mode 100644 index 0000000..c93f6ae --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cops7p70vyvyn" +path="res://.godot/imported/button_square_header_large_square_screws.svg-dc729c05b9050a337eb9ec0e8f69157b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_large_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_large_square_screws.svg-dc729c05b9050a337eb9ec0e8f69157b.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle.svg new file mode 100644 index 0000000..66b012c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle.svg.import new file mode 100644 index 0000000..210364f --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmuqrej18hvvb" +path="res://.godot/imported/button_square_header_notch_rectangle.svg-f8d9f4c90dc3d34732b43b46e4549f6a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle.svg-f8d9f4c90dc3d34732b43b46e4549f6a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle_screws.svg new file mode 100644 index 0000000..0c0af69 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle_screws.svg.import new file mode 100644 index 0000000..1a28ba1 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh6355bpealfj" +path="res://.godot/imported/button_square_header_notch_rectangle_screws.svg-882d26a46aed4a0aafb98990a76c71b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_notch_rectangle_screws.svg-882d26a46aed4a0aafb98990a76c71b2.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square.svg new file mode 100644 index 0000000..1863723 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square.svg.import new file mode 100644 index 0000000..3ff4c2d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvqeracih33h0" +path="res://.godot/imported/button_square_header_notch_square.svg-9b916f88c6659fc569fd5b649d315e7c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square.svg" +dest_files=["res://.godot/imported/button_square_header_notch_square.svg-9b916f88c6659fc569fd5b649d315e7c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square_screws.svg new file mode 100644 index 0000000..d6280db --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square_screws.svg.import new file mode 100644 index 0000000..291533c --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c1l7gy8qxj1uu" +path="res://.godot/imported/button_square_header_notch_square_screws.svg-51aa0cce2e25360a9f224bec95af9c7c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_notch_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_notch_square_screws.svg-51aa0cce2e25360a9f224bec95af9c7c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle.svg new file mode 100644 index 0000000..6258d50 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle.svg.import new file mode 100644 index 0000000..e64df39 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chjijevwqk35p" +path="res://.godot/imported/button_square_header_small_rectangle.svg-86afafa8509c4a3952e038536d3368a9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle.svg" +dest_files=["res://.godot/imported/button_square_header_small_rectangle.svg-86afafa8509c4a3952e038536d3368a9.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle_screws.svg new file mode 100644 index 0000000..39e79c0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle_screws.svg.import new file mode 100644 index 0000000..684431e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ny12pf7utvwe" +path="res://.godot/imported/button_square_header_small_rectangle_screws.svg-05eb443b912b5430d643b2b680640fbb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_rectangle_screws.svg" +dest_files=["res://.godot/imported/button_square_header_small_rectangle_screws.svg-05eb443b912b5430d643b2b680640fbb.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square.svg new file mode 100644 index 0000000..55ce578 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square.svg.import new file mode 100644 index 0000000..be79130 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccslxwhq5gvc5" +path="res://.godot/imported/button_square_header_small_square.svg-0645a32975c4fd35e9e8645714e9a8a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square.svg" +dest_files=["res://.godot/imported/button_square_header_small_square.svg-0645a32975c4fd35e9e8645714e9a8a8.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square_screws.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square_screws.svg new file mode 100644 index 0000000..bd649ea --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square_screws.svg @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square_screws.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square_screws.svg.import new file mode 100644 index 0000000..c962ef0 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square_screws.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6qn7dhukw7wu" +path="res://.godot/imported/button_square_header_small_square_screws.svg-3d5cd4b71981ef803db1b4b8382bb03a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/button_square_header_small_square_screws.svg" +dest_files=["res://.godot/imported/button_square_header_small_square_screws.svg-3d5cd4b71981ef803db1b4b8382bb03a.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_a.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_a.svg new file mode 100644 index 0000000..78a64e7 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_a.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_a.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_a.svg.import new file mode 100644 index 0000000..b1b08bf --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_a.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bc254t1srxq34" +path="res://.godot/imported/crosshair_color_a.svg-f128a4667933556c528f1409ff74bc7c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_a.svg" +dest_files=["res://.godot/imported/crosshair_color_a.svg-f128a4667933556c528f1409ff74bc7c.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_b.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_b.svg new file mode 100644 index 0000000..5d9a112 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_b.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_b.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_b.svg.import new file mode 100644 index 0000000..ab0ad49 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_b.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bhardglx73n1b" +path="res://.godot/imported/crosshair_color_b.svg-ce2bff5969f9afe578b86743fda75710.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_b.svg" +dest_files=["res://.godot/imported/crosshair_color_b.svg-ce2bff5969f9afe578b86743fda75710.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_c.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_c.svg new file mode 100644 index 0000000..ce87b85 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_c.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_c.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_c.svg.import new file mode 100644 index 0000000..5d2de9d --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_c.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cy2xakhb1bmib" +path="res://.godot/imported/crosshair_color_c.svg-edea0a7192a2c85aad2faaa617e7b97f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_c.svg" +dest_files=["res://.godot/imported/crosshair_color_c.svg-edea0a7192a2c85aad2faaa617e7b97f.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_d.svg b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_d.svg new file mode 100644 index 0000000..355b60e --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_d.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_d.svg.import b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_d.svg.import new file mode 100644 index 0000000..409f447 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_d.svg.import @@ -0,0 +1,37 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1tseg4hbqpnd" +path="res://.godot/imported/crosshair_color_d.svg-75f96dd3316cf5059c651be39dbb4459.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://temp_res/kenney_ui-pack-space-expansion/Vector/Yellow/crosshair_color_d.svg" +dest_files=["res://.godot/imported/crosshair_color_d.svg-75f96dd3316cf5059c651be39dbb4459.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 diff --git a/temp_res/kenney_ui-pack-space-expansion/Visit Kenney.url b/temp_res/kenney_ui-pack-space-expansion/Visit Kenney.url new file mode 100644 index 0000000..fbdde43 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Visit Kenney.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=http://www.kenney.nl/ \ No newline at end of file diff --git a/temp_res/kenney_ui-pack-space-expansion/Visit Patreon.url b/temp_res/kenney_ui-pack-space-expansion/Visit Patreon.url new file mode 100644 index 0000000..439ef26 --- /dev/null +++ b/temp_res/kenney_ui-pack-space-expansion/Visit Patreon.url @@ -0,0 +1,2 @@ +[InternetShortcut] +URL=https://www.patreon.com/kenney/ \ No newline at end of file