diff --git a/.gitignore b/.gitignore index f4e9b95..51df176 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,10 @@ # Godot 4+ specific ignores .godot/ /android/ -builds/ \ No newline at end of file +builds/ +src/workflow/.venv/**/* +src/workflow/tool-py/blender-render/__pycache__ +src/workflow/tool/bin/**/* +src/workflow/tool/obj/**/* +src/workflow/outputs/**/* +src/workflow/tool/render/**/* \ No newline at end of file diff --git a/WrplatGodot.csproj b/WrplatGodot.csproj index dff3bfb..30ebce8 100644 --- a/WrplatGodot.csproj +++ b/WrplatGodot.csproj @@ -5,4 +5,8 @@ true preview + + + + \ No newline at end of file diff --git a/addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporter.cs b/addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporter.cs new file mode 100644 index 0000000..7eb0ed3 --- /dev/null +++ b/addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporter.cs @@ -0,0 +1,106 @@ +#if TOOLS +using Godot; +using Godot.Collections; +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Text.Json; +using System.Text.Json.Serialization; + +[Tool] +public partial class RDatCanvasTextureImporter : EditorImportPlugin { + public override string _GetImporterName() { + return "aeqw89.rdatImporter"; + } + + public override string _GetVisibleName() { + return "RDAT CanvasTexture Importer"; + } + + public override string[] _GetRecognizedExtensions() { + return ["rdat"]; + } + + public override string _GetSaveExtension() { + return "tres"; + } + + public override string _GetResourceType() { + return nameof(CanvasTexture); + } + + public override int _GetPresetCount() { + return 1; + } + + public override string _GetPresetName(int presetIndex) { + return presetIndex switch { + 0 => "Conventionally Named Layers", + _ => "Undefined Preset" + }; + } + + public override Array _GetImportOptions(string path, int presetIndex) { + Console.WriteLine("Building options here!"); + return [ + ImportOption.CreateAsMap(new("normal", "normal", PropertyHint.None, "Normal Map Data Field Name")), + ImportOption.CreateAsMap(new("diffuse", "diffuse", PropertyHint.None, "Diffuse Map Data Field Name")), + ImportOption.CreateAsMap(new("specular", "specular", PropertyHint.None, "Glossy Map Data Field Name")) + ]; + } + + private record ImportOption<[MustBeVariant] T>( + string Name, + T DefaultValue, + [property: JsonPropertyName("property_hint")] PropertyHint PropertyHint = PropertyHint.None, + [property: JsonPropertyName("hint_string")] string HintString = "", + [property: JsonPropertyName("usage")] PropertyUsageFlags Usage = PropertyUsageFlags.Default + ) { + + public static Dictionary CreateAsMap(ImportOption option) { + return new Dictionary() { + {"name", option.Name}, + {"default_value", Variant.From(option.DefaultValue)}, + {"property_hint", Variant.From(option.PropertyHint)}, + {"hint_string", option.HintString}, + {"usage", Variant.From(option.Usage)} + }; + } + } + + public override string[] _GetBuildDependencies(string path) { + using var file = FileAccess.Open(path, FileAccess.ModeFlags.Read); + var data = JsonSerializer.Deserialize>(file.GetAsText()); + return data.Values.ToArray(); + } + + + public override Error _Import(string sourceFile, string savePath, Dictionary options, Array platformVariants, Array genFiles) { + using var file = FileAccess.Open(sourceFile, FileAccess.ModeFlags.Read); + var data = JsonSerializer.Deserialize>(file.GetAsText()); + + System.Collections.Generic.Dictionary resources = []; + foreach(var (attributeName, path) in data) { + if (attributeName == "index") continue; + resources[attributeName] = ResourceLoader.Load(path); + if (resources[attributeName] is null) { + GD.PrintErr($"Unable to load texture with path {path}. "); + } + } + + CanvasTexture texture = new CanvasTexture(); + if (options.TryGetValue("diffuse", out var key ) && resources.TryGetValue(key.AsString(), out var diffuseTexture)) + texture.DiffuseTexture = diffuseTexture; + if (options.TryGetValue("normal", out key ) && resources.TryGetValue(key.AsString(), out var normalTexture)) + texture.NormalTexture = normalTexture; + if (options.TryGetValue("specular", out key ) && resources.TryGetValue(key.AsString(), out var glossyTexture)) + texture.SpecularTexture = glossyTexture; + + var filename = savePath + "." + _GetSaveExtension(); + return ResourceSaver.Save(texture, filename); + } + + +} +#endif diff --git a/addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporter.cs.uid b/addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporter.cs.uid new file mode 100644 index 0000000..ce37ddd --- /dev/null +++ b/addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporter.cs.uid @@ -0,0 +1 @@ +uid://dqdx3nl3bttwi diff --git a/addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporterEditorPlugin.cs b/addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporterEditorPlugin.cs new file mode 100644 index 0000000..e092d32 --- /dev/null +++ b/addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporterEditorPlugin.cs @@ -0,0 +1,20 @@ +#if TOOLS +using Godot; + +[Tool] +public partial class RDatCanvasTextureImporterEditorPlugin : EditorPlugin { + private RDatCanvasTextureImporter _importer; + public override void _EnterTree() { + // Initialization of the plugin goes here. + var script = ResourceLoader.Load("res://addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporter.cs").New(); + _importer = script.As(); + AddImportPlugin(_importer); + } + + public override void _ExitTree() { + // Clean-up of the plugin goes here. + RemoveImportPlugin(_importer); + _importer = null; + } +} +#endif \ No newline at end of file diff --git a/addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporterEditorPlugin.cs.uid b/addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporterEditorPlugin.cs.uid new file mode 100644 index 0000000..44e64d8 --- /dev/null +++ b/addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporterEditorPlugin.cs.uid @@ -0,0 +1 @@ +uid://dhr30jnf7n1bd diff --git a/addons/aeqw89.RDatCanvasTextureImporterPlugin/plugin.cfg b/addons/aeqw89.RDatCanvasTextureImporterPlugin/plugin.cfg new file mode 100644 index 0000000..5c47061 --- /dev/null +++ b/addons/aeqw89.RDatCanvasTextureImporterPlugin/plugin.cfg @@ -0,0 +1,7 @@ +[plugin] + +name="RDatCanvasTextureImporter" +description="" +author="aeqw89" +version="0.0.1" +script="RDatCanvasTextureImporterEditorPlugin.cs" diff --git a/attribution/Fleur De Leah LICENSE.txt b/attribution/Fleur De Leah LICENSE.txt new file mode 100644 index 0000000..df5dbc6 --- /dev/null +++ b/attribution/Fleur De Leah LICENSE.txt @@ -0,0 +1,93 @@ +Copyright 2008-2021 The Fleur De Leah Project Authors (https://github.com/googlefonts/fleurdeleah) + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/attribution/Henny Penny LICENSE.txt b/attribution/Henny Penny LICENSE.txt new file mode 100644 index 0000000..41eb80d --- /dev/null +++ b/attribution/Henny Penny LICENSE.txt @@ -0,0 +1,94 @@ +Copyright (c) 2011, BrownFox (gayaneh.b@gmail.com|www.brownfox.org), +with Reserved Font Names "Henny Penny" + +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +https://openfontlicense.org + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the components of the +Original Version, by changing formats or by porting the Font Software to a +new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, +redistributed and/or sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s) unless explicit written permission is granted by the corresponding +Copyright Holder. This restriction only applies to the primary font name as +presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder(s) and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed entirely under this license, and must not be +distributed under any other license. The requirement for fonts to +remain under this license does not apply to any document created +using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/objects/3d/person.glb b/objects/3d/person.glb new file mode 100644 index 0000000..fe58f9d Binary files /dev/null and b/objects/3d/person.glb differ diff --git a/objects/3d/person.glb.import b/objects/3d/person.glb.import new file mode 100644 index 0000000..dab08f2 --- /dev/null +++ b/objects/3d/person.glb.import @@ -0,0 +1,42 @@ +[remap] + +importer="scene" +importer_version=1 +type="PackedScene" +uid="uid://c4hd5js6lujd2" +path="res://.godot/imported/person.glb-63492ffaffd2b2d043a12e45a140ac52.scn" + +[deps] + +source_file="res://objects/3d/person.glb" +dest_files=["res://.godot/imported/person.glb-63492ffaffd2b2d043a12e45a140ac52.scn"] + +[params] + +nodes/root_type="" +nodes/root_name="" +nodes/root_script=null +nodes/apply_root_scale=true +nodes/root_scale=1.0 +nodes/import_as_skeleton_bones=false +nodes/use_name_suffixes=true +nodes/use_node_type_suffixes=true +meshes/ensure_tangents=true +meshes/generate_lods=true +meshes/create_shadow_meshes=true +meshes/light_baking=1 +meshes/lightmap_texel_size=0.2 +meshes/force_disable_compression=false +skins/use_named_skins=true +animation/import=true +animation/fps=30 +animation/trimming=false +animation/remove_immutable_tracks=true +animation/import_rest_as_RESET=false +import_script/path="" +materials/extract=0 +materials/extract_format=0 +materials/extract_path="" +_subresources={} +gltf/naming_version=2 +gltf/embedded_image_handling=1 diff --git a/objects/animation/frames/mm_background.tres b/objects/animation/frames/mm_background.tres index a44653d..c796981 100644 --- a/objects/animation/frames/mm_background.tres +++ b/objects/animation/frames/mm_background.tres @@ -1,226 +1,226 @@ [gd_resource type="SpriteFrames" format=3 uid="uid://cxf0kefqrxk0d"] -[ext_resource type="Texture2D" uid="uid://dguixxqcuh35j" path="res://sprites/frames/mm_background/Image0030.png" id="1_uv47v"] -[ext_resource type="Texture2D" uid="uid://6asdpllof6no" path="res://sprites/frames/mm_background/Image0031.png" id="2_ydck8"] -[ext_resource type="Texture2D" uid="uid://b6f8nbqdfcpb7" path="res://sprites/frames/mm_background/Image0032.png" id="3_eceky"] -[ext_resource type="Texture2D" uid="uid://b2pwc1uthv5o5" path="res://sprites/frames/mm_background/Image0033.png" id="4_1auei"] -[ext_resource type="Texture2D" uid="uid://cbpeecwghw1ti" path="res://sprites/frames/mm_background/Image0034.png" id="5_5jo4e"] -[ext_resource type="Texture2D" uid="uid://d3y54wcu16p6v" path="res://sprites/frames/mm_background/Image0035.png" id="6_3k4ee"] -[ext_resource type="Texture2D" uid="uid://bqq1tn1h1i438" path="res://sprites/frames/mm_background/Image0036.png" id="7_isebb"] -[ext_resource type="Texture2D" uid="uid://bxfysywkjufxh" path="res://sprites/frames/mm_background/Image0037.png" id="8_ay88b"] -[ext_resource type="Texture2D" uid="uid://dvs4dboeo8lyh" path="res://sprites/frames/mm_background/Image0038.png" id="9_51i8q"] -[ext_resource type="Texture2D" uid="uid://b4a3ogjvu216r" path="res://sprites/frames/mm_background/Image0039.png" id="10_n4k2w"] -[ext_resource type="Texture2D" uid="uid://ct2csgmr5rxco" path="res://sprites/frames/mm_background/Image0040.png" id="11_bm1on"] -[ext_resource type="Texture2D" uid="uid://cjfnurt7qdftm" path="res://sprites/frames/mm_background/Image0041.png" id="12_2v8or"] -[ext_resource type="Texture2D" uid="uid://di415hqbl0vjb" path="res://sprites/frames/mm_background/Image0042.png" id="13_r3plk"] -[ext_resource type="Texture2D" uid="uid://lukurle8lso8" path="res://sprites/frames/mm_background/Image0043.png" id="14_obgqt"] -[ext_resource type="Texture2D" uid="uid://ckshxyq6v5fbr" path="res://sprites/frames/mm_background/Image0044.png" id="15_sc8xw"] -[ext_resource type="Texture2D" uid="uid://dd2q8r4sryb5m" path="res://sprites/frames/mm_background/Image0045.png" id="16_pet58"] -[ext_resource type="Texture2D" uid="uid://764571l0h475" path="res://sprites/frames/mm_background/Image0046.png" id="17_7l8vm"] -[ext_resource type="Texture2D" uid="uid://11a2ly27s5h5" path="res://sprites/frames/mm_background/Image0047.png" id="18_blq2m"] -[ext_resource type="Texture2D" uid="uid://c7b10cvtbgxrs" path="res://sprites/frames/mm_background/Image0048.png" id="19_yn8be"] -[ext_resource type="Texture2D" uid="uid://bn18xu0tqhivq" path="res://sprites/frames/mm_background/Image0049.png" id="20_5d5lv"] -[ext_resource type="Texture2D" uid="uid://dj6glaciw4xot" path="res://sprites/frames/mm_background/Image0050.png" id="21_3ml1o"] -[ext_resource type="Texture2D" uid="uid://dup4drk0iwt2n" path="res://sprites/frames/mm_background/Image0051.png" id="22_4iiiq"] -[ext_resource type="Texture2D" uid="uid://q4ldobw8tqkt" path="res://sprites/frames/mm_background/Image0052.png" id="23_t70ju"] -[ext_resource type="Texture2D" uid="uid://2vef372jm0t5" path="res://sprites/frames/mm_background/Image0053.png" id="24_lo4h7"] -[ext_resource type="Texture2D" uid="uid://wfkbqr6lu7hk" path="res://sprites/frames/mm_background/Image0054.png" id="25_ojq6w"] -[ext_resource type="Texture2D" uid="uid://bfrcwd2sg6vfg" path="res://sprites/frames/mm_background/Image0055.png" id="26_xli5o"] -[ext_resource type="Texture2D" uid="uid://05yvnmprvla1" path="res://sprites/frames/mm_background/Image0056.png" id="27_gpyyp"] -[ext_resource type="Texture2D" uid="uid://bgp5icarv6tlq" path="res://sprites/frames/mm_background/Image0057.png" id="28_s0jcr"] -[ext_resource type="Texture2D" uid="uid://cv544yusocmpb" path="res://sprites/frames/mm_background/Image0058.png" id="29_r67gh"] -[ext_resource type="Texture2D" uid="uid://dn1fdbthj04lv" path="res://sprites/frames/mm_background/Image0059.png" id="30_h7pjj"] -[ext_resource type="Texture2D" uid="uid://3hrxo11a12mf" path="res://sprites/frames/mm_background/Image0060.png" id="31_g1ll5"] -[ext_resource type="Texture2D" uid="uid://cg40m1pq0fbxd" path="res://sprites/frames/mm_background/Image0061.png" id="32_0817o"] -[ext_resource type="Texture2D" uid="uid://u4ftyu2mxoae" path="res://sprites/frames/mm_background/Image0062.png" id="33_0k5lh"] -[ext_resource type="Texture2D" uid="uid://c6xs6rvkl3arm" path="res://sprites/frames/mm_background/Image0063.png" id="34_fccf3"] -[ext_resource type="Texture2D" uid="uid://ddvjslb6c2o6f" path="res://sprites/frames/mm_background/Image0064.png" id="35_qn24x"] -[ext_resource type="Texture2D" uid="uid://ceophuj1l7k4d" path="res://sprites/frames/mm_background/Image0065.png" id="36_nvb3t"] -[ext_resource type="Texture2D" uid="uid://cjq06puubwccr" path="res://sprites/frames/mm_background/Image0066.png" id="37_m4vbm"] -[ext_resource type="Texture2D" uid="uid://babcxh5lx2qqb" path="res://sprites/frames/mm_background/Image0067.png" id="38_5ygiw"] -[ext_resource type="Texture2D" uid="uid://0dw80ttq1fsr" path="res://sprites/frames/mm_background/Image0068.png" id="39_di6pc"] -[ext_resource type="Texture2D" uid="uid://cxyeoiw341p0b" path="res://sprites/frames/mm_background/Image0069.png" id="40_arswu"] -[ext_resource type="Texture2D" uid="uid://tjn0oqi5ielx" path="res://sprites/frames/mm_background/Image0070.png" id="41_sjga0"] -[ext_resource type="Texture2D" uid="uid://duhehl1dtde0i" path="res://sprites/frames/mm_background/Image0071.png" id="42_m1od1"] -[ext_resource type="Texture2D" uid="uid://bjvgb46md76i7" path="res://sprites/frames/mm_background/Image0072.png" id="43_gmd4n"] -[ext_resource type="Texture2D" uid="uid://brnccg7egcywr" path="res://sprites/frames/mm_background/Image0073.png" id="44_ijryr"] -[ext_resource type="Texture2D" uid="uid://dphaelvvy0mkc" path="res://sprites/frames/mm_background/Image0074.png" id="45_oc4hx"] -[ext_resource type="Texture2D" uid="uid://ens566itmj6m" path="res://sprites/frames/mm_background/Image0075.png" id="46_67e37"] -[ext_resource type="Texture2D" uid="uid://c1fy8owgpwj05" path="res://sprites/frames/mm_background/Image0076.png" id="47_mien6"] -[ext_resource type="Texture2D" uid="uid://ebeg5srrbuyj" path="res://sprites/frames/mm_background/Image0077.png" id="48_40exb"] -[ext_resource type="Texture2D" uid="uid://dttr4p5wbef3g" path="res://sprites/frames/mm_background/Image0078.png" id="49_jj26p"] -[ext_resource type="Texture2D" uid="uid://mhh03qm32eyo" path="res://sprites/frames/mm_background/Image0079.png" id="50_l8sbl"] -[ext_resource type="Texture2D" uid="uid://balpcv58dn76q" path="res://sprites/frames/mm_background/Image0080.png" id="51_og831"] -[ext_resource type="Texture2D" uid="uid://ccum31ik4j3gv" path="res://sprites/frames/mm_background/Image0081.png" id="52_lrx5r"] -[ext_resource type="Texture2D" uid="uid://btbb3cg8ec4mk" path="res://sprites/frames/mm_background/Image0082.png" id="53_7g25t"] -[ext_resource type="Texture2D" uid="uid://bplgabx2yb74s" path="res://sprites/frames/mm_background/Image0083.png" id="54_lr4j3"] -[ext_resource type="Texture2D" uid="uid://b3m2ces64vypp" path="res://sprites/frames/mm_background/Image0084.png" id="55_tdkpy"] -[ext_resource type="Texture2D" uid="uid://ckx2h5a2hue5u" path="res://sprites/frames/mm_background/Image0085.png" id="56_gefwp"] -[ext_resource type="Texture2D" uid="uid://wrmjxmyeoc04" path="res://sprites/frames/mm_background/Image0086.png" id="57_eyhsx"] -[ext_resource type="Texture2D" uid="uid://c1nwvhb4vuvk2" path="res://sprites/frames/mm_background/Image0087.png" id="58_x50mk"] -[ext_resource type="Texture2D" uid="uid://coy6c7x0imkry" path="res://sprites/frames/mm_background/Image0088.png" id="59_2lkwr"] -[ext_resource type="Texture2D" uid="uid://djkp72l3ko7su" path="res://sprites/frames/mm_background/Image0089.png" id="60_nj8pg"] -[ext_resource type="Texture2D" uid="uid://e8anereixivw" path="res://sprites/frames/mm_background/Image0090.png" id="61_2iqeg"] -[ext_resource type="Texture2D" uid="uid://dee02hr3w4y5r" path="res://sprites/frames/mm_background/Image0091.png" id="62_1u4qn"] -[ext_resource type="Texture2D" uid="uid://ccr1frpg7b7a" path="res://sprites/frames/mm_background/Image0092.png" id="63_vqwao"] -[ext_resource type="Texture2D" uid="uid://bhaxgy3tgk8qq" path="res://sprites/frames/mm_background/Image0093.png" id="64_m3u8v"] -[ext_resource type="Texture2D" uid="uid://0rfhi8xvstn3" path="res://sprites/frames/mm_background/Image0094.png" id="65_dgoap"] -[ext_resource type="Texture2D" uid="uid://dp2rg7ggpdr2" path="res://sprites/frames/mm_background/Image0095.png" id="66_wot68"] -[ext_resource type="Texture2D" uid="uid://c63j5lw4sojb4" path="res://sprites/frames/mm_background/Image0096.png" id="67_8sr8p"] -[ext_resource type="Texture2D" uid="uid://1wc66u4tk6fb" path="res://sprites/frames/mm_background/Image0097.png" id="68_h2505"] -[ext_resource type="Texture2D" uid="uid://d31qrw8gx8gmi" path="res://sprites/frames/mm_background/Image0098.png" id="69_hvh2c"] -[ext_resource type="Texture2D" uid="uid://b40v3qe0armtn" path="res://sprites/frames/mm_background/Image0099.png" id="70_y07da"] -[ext_resource type="Texture2D" uid="uid://3d5yk4nb2gc7" path="res://sprites/frames/mm_background/Image0100.png" id="71_b60dh"] -[ext_resource type="Texture2D" uid="uid://cfxnsvjwhtlb4" path="res://sprites/frames/mm_background/Image0101.png" id="72_3myye"] -[ext_resource type="Texture2D" uid="uid://o0p3uaynm8xr" path="res://sprites/frames/mm_background/Image0102.png" id="73_bceri"] -[ext_resource type="Texture2D" uid="uid://sprsvrsf35eq" path="res://sprites/frames/mm_background/Image0103.png" id="74_wsiyg"] -[ext_resource type="Texture2D" uid="uid://d1rmo1hm1xeee" path="res://sprites/frames/mm_background/Image0104.png" id="75_r4ri8"] -[ext_resource type="Texture2D" uid="uid://nxapldv8625v" path="res://sprites/frames/mm_background/Image0105.png" id="76_0vcv4"] -[ext_resource type="Texture2D" uid="uid://dp08hv6j6cvg0" path="res://sprites/frames/mm_background/Image0106.png" id="77_dwfpx"] -[ext_resource type="Texture2D" uid="uid://cbca721158cry" path="res://sprites/frames/mm_background/Image0107.png" id="78_r8psl"] -[ext_resource type="Texture2D" uid="uid://kf26orbofx71" path="res://sprites/frames/mm_background/Image0108.png" id="79_72gbn"] -[ext_resource type="Texture2D" uid="uid://cow421cjc47e3" path="res://sprites/frames/mm_background/Image0109.png" id="80_2qpbi"] -[ext_resource type="Texture2D" uid="uid://v72fq81kpgdc" path="res://sprites/frames/mm_background/Image0110.png" id="81_a685y"] -[ext_resource type="Texture2D" uid="uid://c5vnubktf1hog" path="res://sprites/frames/mm_background/Image0111.png" id="82_vqbbx"] -[ext_resource type="Texture2D" uid="uid://c3hunftbe0pn4" path="res://sprites/frames/mm_background/Image0112.png" id="83_52cfc"] -[ext_resource type="Texture2D" uid="uid://dj66kob6x13j5" path="res://sprites/frames/mm_background/Image0113.png" id="84_dtjpt"] -[ext_resource type="Texture2D" uid="uid://dki8foy8ylw3f" path="res://sprites/frames/mm_background/Image0114.png" id="85_8n8rf"] -[ext_resource type="Texture2D" uid="uid://b3515646wnyti" path="res://sprites/frames/mm_background/Image0115.png" id="86_dtl61"] -[ext_resource type="Texture2D" uid="uid://bd1p5ble18gxc" path="res://sprites/frames/mm_background/Image0116.png" id="87_nxjme"] -[ext_resource type="Texture2D" uid="uid://616itcd2r38" path="res://sprites/frames/mm_background/Image0117.png" id="88_3u8ba"] -[ext_resource type="Texture2D" uid="uid://ekx6i1544a7t" path="res://sprites/frames/mm_background/Image0118.png" id="89_o10ma"] -[ext_resource type="Texture2D" uid="uid://du244vpxf2vop" path="res://sprites/frames/mm_background/Image0119.png" id="90_bagbv"] -[ext_resource type="Texture2D" uid="uid://taurnvhwu336" path="res://sprites/frames/mm_background/Image0120.png" id="91_o4v7s"] -[ext_resource type="Texture2D" uid="uid://btobs3r5gtghi" path="res://sprites/frames/mm_background/Image0121.png" id="92_mnns2"] -[ext_resource type="Texture2D" uid="uid://bg77uyb31ye2" path="res://sprites/frames/mm_background/Image0122.png" id="93_vlxqe"] -[ext_resource type="Texture2D" uid="uid://bv66d5dju2a2i" path="res://sprites/frames/mm_background/Image0123.png" id="94_5p2pw"] -[ext_resource type="Texture2D" uid="uid://hlhedu10kh6d" path="res://sprites/frames/mm_background/Image0124.png" id="95_0e0ik"] -[ext_resource type="Texture2D" uid="uid://bbpmorww6ws75" path="res://sprites/frames/mm_background/Image0125.png" id="96_bq4ff"] -[ext_resource type="Texture2D" uid="uid://cs01pdaj22x22" path="res://sprites/frames/mm_background/Image0126.png" id="97_13yca"] -[ext_resource type="Texture2D" uid="uid://by6i8is2gak3s" path="res://sprites/frames/mm_background/Image0127.png" id="98_u4yk7"] -[ext_resource type="Texture2D" uid="uid://b7qddqpt4na4p" path="res://sprites/frames/mm_background/Image0128.png" id="99_tymef"] -[ext_resource type="Texture2D" uid="uid://bd6u3rntj0tiy" path="res://sprites/frames/mm_background/Image0129.png" id="100_sr2ly"] -[ext_resource type="Texture2D" uid="uid://c843epssc7p7u" path="res://sprites/frames/mm_background/Image0130.png" id="101_m218t"] -[ext_resource type="Texture2D" uid="uid://bdyajmx7sn7eg" path="res://sprites/frames/mm_background/Image0131.png" id="102_5dyax"] -[ext_resource type="Texture2D" uid="uid://d077nas4ixdl5" path="res://sprites/frames/mm_background/Image0132.png" id="103_w403m"] -[ext_resource type="Texture2D" uid="uid://c4py1rq7akbnw" path="res://sprites/frames/mm_background/Image0133.png" id="104_rdd54"] -[ext_resource type="Texture2D" uid="uid://37pw8dxpxwsr" path="res://sprites/frames/mm_background/Image0134.png" id="105_elwr2"] -[ext_resource type="Texture2D" uid="uid://bnbe303ma11a1" path="res://sprites/frames/mm_background/Image0135.png" id="106_cgof5"] -[ext_resource type="Texture2D" uid="uid://dm065kv6jci36" path="res://sprites/frames/mm_background/Image0136.png" id="107_j4t0q"] -[ext_resource type="Texture2D" uid="uid://dq2gx22kl7j2u" path="res://sprites/frames/mm_background/Image0137.png" id="108_2vqrd"] -[ext_resource type="Texture2D" uid="uid://dqnnv0xj7lr8c" path="res://sprites/frames/mm_background/Image0138.png" id="109_lfird"] -[ext_resource type="Texture2D" uid="uid://bpskq80yq5smh" path="res://sprites/frames/mm_background/Image0139.png" id="110_175fh"] -[ext_resource type="Texture2D" uid="uid://gs7g8fhdd65m" path="res://sprites/frames/mm_background/Image0140.png" id="111_bo4pd"] -[ext_resource type="Texture2D" uid="uid://cd1ygkixlup4n" path="res://sprites/frames/mm_background/Image0141.png" id="112_hae6t"] -[ext_resource type="Texture2D" uid="uid://c63j32xwh3yh5" path="res://sprites/frames/mm_background/Image0142.png" id="113_n1ivk"] -[ext_resource type="Texture2D" uid="uid://2p531u7xn7sw" path="res://sprites/frames/mm_background/Image0143.png" id="114_ldpfs"] -[ext_resource type="Texture2D" uid="uid://df3drrnmskqk3" path="res://sprites/frames/mm_background/Image0144.png" id="115_og00p"] -[ext_resource type="Texture2D" uid="uid://dvlb0rx0rbs1j" path="res://sprites/frames/mm_background/Image0145.png" id="116_f74dr"] -[ext_resource type="Texture2D" uid="uid://bew1b6ot0vvt7" path="res://sprites/frames/mm_background/Image0146.png" id="117_nsc0r"] -[ext_resource type="Texture2D" uid="uid://d0k4wqgpwp4to" path="res://sprites/frames/mm_background/Image0147.png" id="118_vaphq"] -[ext_resource type="Texture2D" uid="uid://cvxeif7wg43hd" path="res://sprites/frames/mm_background/Image0148.png" id="119_ws3f3"] -[ext_resource type="Texture2D" uid="uid://b68u13jkeutdk" path="res://sprites/frames/mm_background/Image0149.png" id="120_yfcpn"] -[ext_resource type="Texture2D" uid="uid://doky1a7opukfu" path="res://sprites/frames/mm_background/Image0150.png" id="121_gwkoh"] -[ext_resource type="Texture2D" uid="uid://d271doeu6xv3w" path="res://sprites/frames/mm_background/Image0151.png" id="122_tugke"] -[ext_resource type="Texture2D" uid="uid://cv42jyo0qtst7" path="res://sprites/frames/mm_background/Image0152.png" id="123_cud0v"] -[ext_resource type="Texture2D" uid="uid://d28gp3gcxgdrp" path="res://sprites/frames/mm_background/Image0153.png" id="124_kdnsi"] -[ext_resource type="Texture2D" uid="uid://h7lkx7hj8m8b" path="res://sprites/frames/mm_background/Image0154.png" id="125_xu81h"] -[ext_resource type="Texture2D" uid="uid://kq5b1gs2gxqs" path="res://sprites/frames/mm_background/Image0155.png" id="126_aemuk"] -[ext_resource type="Texture2D" uid="uid://dfet5aqg0odaj" path="res://sprites/frames/mm_background/Image0156.png" id="127_qelf3"] -[ext_resource type="Texture2D" uid="uid://yupepkv3jqvx" path="res://sprites/frames/mm_background/Image0157.png" id="128_sn2xl"] -[ext_resource type="Texture2D" uid="uid://ctrwqi4xm1ym3" path="res://sprites/frames/mm_background/Image0158.png" id="129_5c4bp"] -[ext_resource type="Texture2D" uid="uid://di0aim5f0mrjk" path="res://sprites/frames/mm_background/Image0159.png" id="130_aoumm"] -[ext_resource type="Texture2D" uid="uid://df2yu84impomo" path="res://sprites/frames/mm_background/Image0160.png" id="131_ccfmc"] -[ext_resource type="Texture2D" uid="uid://clhfax5k6m0au" path="res://sprites/frames/mm_background/Image0161.png" id="132_pinca"] -[ext_resource type="Texture2D" uid="uid://12mqu3qcdoun" path="res://sprites/frames/mm_background/Image0162.png" id="133_45xla"] -[ext_resource type="Texture2D" uid="uid://bk5low2vskv81" path="res://sprites/frames/mm_background/Image0163.png" id="134_574p6"] -[ext_resource type="Texture2D" uid="uid://cw5xr3fkfmcxb" path="res://sprites/frames/mm_background/Image0164.png" id="135_wak1j"] -[ext_resource type="Texture2D" uid="uid://cjsndr2rqg7mn" path="res://sprites/frames/mm_background/Image0165.png" id="136_vawlu"] -[ext_resource type="Texture2D" uid="uid://betsy1776hs46" path="res://sprites/frames/mm_background/Image0166.png" id="137_rvc2m"] -[ext_resource type="Texture2D" uid="uid://cr5nwfsx45xtu" path="res://sprites/frames/mm_background/Image0167.png" id="138_7aa61"] -[ext_resource type="Texture2D" uid="uid://ccoga5dg6jxka" path="res://sprites/frames/mm_background/Image0168.png" id="139_o7kcf"] -[ext_resource type="Texture2D" uid="uid://bwcx3q1em714k" path="res://sprites/frames/mm_background/Image0169.png" id="140_8ngjp"] -[ext_resource type="Texture2D" uid="uid://kb4w6oy0i3q4" path="res://sprites/frames/mm_background/Image0170.png" id="141_5855t"] -[ext_resource type="Texture2D" uid="uid://b7375g76tkbk1" path="res://sprites/frames/mm_background/Image0171.png" id="142_5dc3w"] -[ext_resource type="Texture2D" uid="uid://bdiykqbqb1u33" path="res://sprites/frames/mm_background/Image0172.png" id="143_jhca7"] -[ext_resource type="Texture2D" uid="uid://c20y7m1wudes7" path="res://sprites/frames/mm_background/Image0173.png" id="144_7aag7"] -[ext_resource type="Texture2D" uid="uid://cy01ups3q2eja" path="res://sprites/frames/mm_background/Image0174.png" id="145_mssfe"] -[ext_resource type="Texture2D" uid="uid://m1ttcfj3uwqn" path="res://sprites/frames/mm_background/Image0175.png" id="146_tnqr4"] -[ext_resource type="Texture2D" uid="uid://d07y6f0tlqpxm" path="res://sprites/frames/mm_background/Image0176.png" id="147_dycfj"] -[ext_resource type="Texture2D" uid="uid://bthdw3v5h0ds2" path="res://sprites/frames/mm_background/Image0177.png" id="148_16q1w"] -[ext_resource type="Texture2D" uid="uid://clsfhhd15a05y" path="res://sprites/frames/mm_background/Image0178.png" id="149_1o83q"] -[ext_resource type="Texture2D" uid="uid://r5k3enciw8i3" path="res://sprites/frames/mm_background/Image0179.png" id="150_1nhnj"] -[ext_resource type="Texture2D" uid="uid://caf23p76l60p8" path="res://sprites/frames/mm_background/Image0180.png" id="151_0ojgp"] -[ext_resource type="Texture2D" uid="uid://btu80nasbw0vn" path="res://sprites/frames/mm_background/Image0181.png" id="152_s5mp5"] -[ext_resource type="Texture2D" uid="uid://2scamu235w02" path="res://sprites/frames/mm_background/Image0182.png" id="153_xwbh5"] -[ext_resource type="Texture2D" uid="uid://tmvxck6fudwh" path="res://sprites/frames/mm_background/Image0183.png" id="154_la5u2"] -[ext_resource type="Texture2D" uid="uid://k3xqj0vo4b76" path="res://sprites/frames/mm_background/Image0184.png" id="155_xcmbm"] -[ext_resource type="Texture2D" uid="uid://nyq2sovw1ypk" path="res://sprites/frames/mm_background/Image0185.png" id="156_opwhx"] -[ext_resource type="Texture2D" uid="uid://bvf1kt7l8px6x" path="res://sprites/frames/mm_background/Image0186.png" id="157_o4b05"] -[ext_resource type="Texture2D" uid="uid://ufsaqv4hbnsx" path="res://sprites/frames/mm_background/Image0187.png" id="158_comas"] -[ext_resource type="Texture2D" uid="uid://l0etr148vdmt" path="res://sprites/frames/mm_background/Image0188.png" id="159_k4fx6"] -[ext_resource type="Texture2D" uid="uid://bm2ntkx23jbh1" path="res://sprites/frames/mm_background/Image0189.png" id="160_drcsp"] -[ext_resource type="Texture2D" uid="uid://cdpkm6avmb5wx" path="res://sprites/frames/mm_background/Image0190.png" id="161_8pcgf"] -[ext_resource type="Texture2D" uid="uid://7e2k1utxksmk" path="res://sprites/frames/mm_background/Image0191.png" id="162_2ldeg"] -[ext_resource type="Texture2D" uid="uid://c3xst5ce6jfj" path="res://sprites/frames/mm_background/Image0192.png" id="163_luai5"] -[ext_resource type="Texture2D" uid="uid://cddb63jbfg0d5" path="res://sprites/frames/mm_background/Image0193.png" id="164_vorbj"] -[ext_resource type="Texture2D" uid="uid://dkoyrhry4tvnk" path="res://sprites/frames/mm_background/Image0194.png" id="165_54v8d"] -[ext_resource type="Texture2D" uid="uid://btbs735txb3wf" path="res://sprites/frames/mm_background/Image0195.png" id="166_0s5pn"] -[ext_resource type="Texture2D" uid="uid://i4iobf6fcibc" path="res://sprites/frames/mm_background/Image0196.png" id="167_aduht"] -[ext_resource type="Texture2D" uid="uid://cgf6gk5qlcubq" path="res://sprites/frames/mm_background/Image0197.png" id="168_jqjov"] -[ext_resource type="Texture2D" uid="uid://8q7cpek4p25q" path="res://sprites/frames/mm_background/Image0198.png" id="169_ctols"] -[ext_resource type="Texture2D" uid="uid://m5u6x114q5wk" path="res://sprites/frames/mm_background/Image0199.png" id="170_riol2"] -[ext_resource type="Texture2D" uid="uid://dpuqx3bu1borj" path="res://sprites/frames/mm_background/Image0200.png" id="171_ax3vn"] -[ext_resource type="Texture2D" uid="uid://dobdfhw7vhx3f" path="res://sprites/frames/mm_background/Image0201.png" id="172_4nfo2"] -[ext_resource type="Texture2D" uid="uid://da4hgldx30jwj" path="res://sprites/frames/mm_background/Image0202.png" id="173_ii6t0"] -[ext_resource type="Texture2D" uid="uid://dasejeqxx65xq" path="res://sprites/frames/mm_background/Image0203.png" id="174_35kco"] -[ext_resource type="Texture2D" uid="uid://blyx2fn8k45u4" path="res://sprites/frames/mm_background/Image0204.png" id="175_11pki"] -[ext_resource type="Texture2D" uid="uid://bvucrx2u2no17" path="res://sprites/frames/mm_background/Image0205.png" id="176_ayiyj"] -[ext_resource type="Texture2D" uid="uid://d3mn7ogqxyonw" path="res://sprites/frames/mm_background/Image0206.png" id="177_c6kqo"] -[ext_resource type="Texture2D" uid="uid://d0n56p6a7dyna" path="res://sprites/frames/mm_background/Image0207.png" id="178_1uvnh"] -[ext_resource type="Texture2D" uid="uid://b14iu1jwlfgtu" path="res://sprites/frames/mm_background/Image0208.png" id="179_j83sy"] -[ext_resource type="Texture2D" uid="uid://cttsswk20vbam" path="res://sprites/frames/mm_background/Image0209.png" id="180_jf5j0"] -[ext_resource type="Texture2D" uid="uid://b4060b2gbj3ha" path="res://sprites/frames/mm_background/Image0210.png" id="181_cqyfo"] -[ext_resource type="Texture2D" uid="uid://8asiqmkooeec" path="res://sprites/frames/mm_background/Image0211.png" id="182_lfp7e"] -[ext_resource type="Texture2D" uid="uid://bh8useby0tyl2" path="res://sprites/frames/mm_background/Image0212.png" id="183_6gx24"] -[ext_resource type="Texture2D" uid="uid://lluxe1woh5h3" path="res://sprites/frames/mm_background/Image0213.png" id="184_2du54"] -[ext_resource type="Texture2D" uid="uid://c8ny6luksfx2u" path="res://sprites/frames/mm_background/Image0214.png" id="185_q2i1n"] -[ext_resource type="Texture2D" uid="uid://cprflhi0xeece" path="res://sprites/frames/mm_background/Image0215.png" id="186_at3tp"] -[ext_resource type="Texture2D" uid="uid://4gnp2aak1iv" path="res://sprites/frames/mm_background/Image0216.png" id="187_whn7n"] -[ext_resource type="Texture2D" uid="uid://cachioxu4r3bx" path="res://sprites/frames/mm_background/Image0217.png" id="188_ye3ci"] -[ext_resource type="Texture2D" uid="uid://c0o247auny5o2" path="res://sprites/frames/mm_background/Image0218.png" id="189_qyjuu"] -[ext_resource type="Texture2D" uid="uid://bbn1hunkugncr" path="res://sprites/frames/mm_background/Image0219.png" id="190_cclff"] -[ext_resource type="Texture2D" uid="uid://djsh2npacy2a2" path="res://sprites/frames/mm_background/Image0220.png" id="191_3aupn"] -[ext_resource type="Texture2D" uid="uid://nyhwqihuwiuw" path="res://sprites/frames/mm_background/Image0221.png" id="192_ghx0q"] -[ext_resource type="Texture2D" uid="uid://fu5dbfgygd22" path="res://sprites/frames/mm_background/Image0222.png" id="193_r4731"] -[ext_resource type="Texture2D" uid="uid://cpuxxs2tbcg8a" path="res://sprites/frames/mm_background/Image0223.png" id="194_f1pwf"] -[ext_resource type="Texture2D" uid="uid://bt75bt354br6l" path="res://sprites/frames/mm_background/Image0224.png" id="195_8wn1e"] -[ext_resource type="Texture2D" uid="uid://bdffu8v0hy2nr" path="res://sprites/frames/mm_background/Image0225.png" id="196_h8260"] -[ext_resource type="Texture2D" uid="uid://bthx30hedem3p" path="res://sprites/frames/mm_background/Image0226.png" id="197_kfjk1"] -[ext_resource type="Texture2D" uid="uid://c24ukjot8dg62" path="res://sprites/frames/mm_background/Image0227.png" id="198_m7whw"] -[ext_resource type="Texture2D" uid="uid://ba1v5ecj7hgnu" path="res://sprites/frames/mm_background/Image0228.png" id="199_wtcp0"] -[ext_resource type="Texture2D" uid="uid://o2mwnome55vy" path="res://sprites/frames/mm_background/Image0229.png" id="200_sukth"] -[ext_resource type="Texture2D" uid="uid://b3e6aqoxluwke" path="res://sprites/frames/mm_background/Image0230.png" id="201_6j6xt"] -[ext_resource type="Texture2D" uid="uid://c1xpnjo1gn2bw" path="res://sprites/frames/mm_background/Image0231.png" id="202_0fjfd"] -[ext_resource type="Texture2D" uid="uid://c6pqle5cp0e8k" path="res://sprites/frames/mm_background/Image0232.png" id="203_bjwpg"] -[ext_resource type="Texture2D" uid="uid://crvhi11apiorn" path="res://sprites/frames/mm_background/Image0233.png" id="204_iyrp4"] -[ext_resource type="Texture2D" uid="uid://b3ekekiovuu27" path="res://sprites/frames/mm_background/Image0234.png" id="205_5fcut"] -[ext_resource type="Texture2D" uid="uid://c6qy4ibq7dpdc" path="res://sprites/frames/mm_background/Image0235.png" id="206_slpna"] -[ext_resource type="Texture2D" uid="uid://brq4nqrnyd0kn" path="res://sprites/frames/mm_background/Image0236.png" id="207_hsksq"] -[ext_resource type="Texture2D" uid="uid://bxk40k5vvqycl" path="res://sprites/frames/mm_background/Image0237.png" id="208_yqbst"] -[ext_resource type="Texture2D" uid="uid://chh7decyeb2xf" path="res://sprites/frames/mm_background/Image0238.png" id="209_lvxxm"] -[ext_resource type="Texture2D" uid="uid://gvj82q8oo0pr" path="res://sprites/frames/mm_background/Image0239.png" id="210_w8i65"] -[ext_resource type="Texture2D" uid="uid://bklhocrk8t805" path="res://sprites/frames/mm_background/Image0240.png" id="211_in7s8"] -[ext_resource type="Texture2D" uid="uid://cjay80n6isw5o" path="res://sprites/frames/mm_background/Image0241.png" id="212_rpmeu"] -[ext_resource type="Texture2D" uid="uid://dt24vcjcvcabq" path="res://sprites/frames/mm_background/Image0242.png" id="213_y1d57"] -[ext_resource type="Texture2D" uid="uid://ck02pu5asr3as" path="res://sprites/frames/mm_background/Image0243.png" id="214_d67iq"] -[ext_resource type="Texture2D" uid="uid://bsbaqfy8jc106" path="res://sprites/frames/mm_background/Image0244.png" id="215_c28ij"] -[ext_resource type="Texture2D" uid="uid://d2wurexja4nem" path="res://sprites/frames/mm_background/Image0245.png" id="216_05nie"] -[ext_resource type="Texture2D" uid="uid://jeufaqsda4xi" path="res://sprites/frames/mm_background/Image0246.png" id="217_7g1qr"] -[ext_resource type="Texture2D" uid="uid://dtjlua2vlgrsi" path="res://sprites/frames/mm_background/Image0247.png" id="218_34ock"] -[ext_resource type="Texture2D" uid="uid://bo16og7ribju1" path="res://sprites/frames/mm_background/Image0248.png" id="219_4dmek"] -[ext_resource type="Texture2D" uid="uid://dgbtus7qf1tiq" path="res://sprites/frames/mm_background/Image0249.png" id="220_si5x2"] -[ext_resource type="Texture2D" uid="uid://bvvk8ffdyxma4" path="res://sprites/frames/mm_background/Image0250.png" id="221_nxaca"] +[ext_resource type="Texture2D" uid="uid://eyt3vbd2qrvn" path="res://sprites/frames/mm_background/Image0030.png" id="1_uv47v"] +[ext_resource type="Texture2D" uid="uid://dadl2cmxa10kl" path="res://sprites/frames/mm_background/Image0031.png" id="2_ydck8"] +[ext_resource type="Texture2D" uid="uid://bdse3norikje2" path="res://sprites/frames/mm_background/Image0032.png" id="3_eceky"] +[ext_resource type="Texture2D" uid="uid://cb8sgcbtqn5cn" path="res://sprites/frames/mm_background/Image0033.png" id="4_1auei"] +[ext_resource type="Texture2D" uid="uid://crah24884csqj" path="res://sprites/frames/mm_background/Image0034.png" id="5_5jo4e"] +[ext_resource type="Texture2D" uid="uid://d0jod070fblfl" path="res://sprites/frames/mm_background/Image0035.png" id="6_3k4ee"] +[ext_resource type="Texture2D" uid="uid://bi5o5qhw410og" path="res://sprites/frames/mm_background/Image0036.png" id="7_isebb"] +[ext_resource type="Texture2D" uid="uid://cdresoixhmyqr" path="res://sprites/frames/mm_background/Image0037.png" id="8_ay88b"] +[ext_resource type="Texture2D" uid="uid://3uhuiqfi6bfe" path="res://sprites/frames/mm_background/Image0038.png" id="9_51i8q"] +[ext_resource type="Texture2D" uid="uid://y2lbu32i4hlw" path="res://sprites/frames/mm_background/Image0039.png" id="10_n4k2w"] +[ext_resource type="Texture2D" uid="uid://b2jomdw04wa1n" path="res://sprites/frames/mm_background/Image0040.png" id="11_bm1on"] +[ext_resource type="Texture2D" uid="uid://dwjn2wr01u52r" path="res://sprites/frames/mm_background/Image0041.png" id="12_2v8or"] +[ext_resource type="Texture2D" uid="uid://by5n23f7ddf6q" path="res://sprites/frames/mm_background/Image0042.png" id="13_r3plk"] +[ext_resource type="Texture2D" uid="uid://c0ocws7h5sinw" path="res://sprites/frames/mm_background/Image0043.png" id="14_obgqt"] +[ext_resource type="Texture2D" uid="uid://bvla1l735dm56" path="res://sprites/frames/mm_background/Image0044.png" id="15_sc8xw"] +[ext_resource type="Texture2D" uid="uid://cly4c68uw5v46" path="res://sprites/frames/mm_background/Image0045.png" id="16_pet58"] +[ext_resource type="Texture2D" uid="uid://b5a8vb0ckhkvd" path="res://sprites/frames/mm_background/Image0046.png" id="17_7l8vm"] +[ext_resource type="Texture2D" uid="uid://c6rdfxumx3euu" path="res://sprites/frames/mm_background/Image0047.png" id="18_blq2m"] +[ext_resource type="Texture2D" uid="uid://dlk5is8184snf" path="res://sprites/frames/mm_background/Image0048.png" id="19_yn8be"] +[ext_resource type="Texture2D" uid="uid://cf6invg8p7cdg" path="res://sprites/frames/mm_background/Image0049.png" id="20_5d5lv"] +[ext_resource type="Texture2D" uid="uid://cffq82v1a277c" path="res://sprites/frames/mm_background/Image0050.png" id="21_3ml1o"] +[ext_resource type="Texture2D" uid="uid://iollap1o3uni" path="res://sprites/frames/mm_background/Image0051.png" id="22_4iiiq"] +[ext_resource type="Texture2D" uid="uid://5c2gs7y6otn7" path="res://sprites/frames/mm_background/Image0052.png" id="23_t70ju"] +[ext_resource type="Texture2D" uid="uid://bel6f13o025ji" path="res://sprites/frames/mm_background/Image0053.png" id="24_lo4h7"] +[ext_resource type="Texture2D" uid="uid://dhn8ml7dgcobx" path="res://sprites/frames/mm_background/Image0054.png" id="25_ojq6w"] +[ext_resource type="Texture2D" uid="uid://dlb21esoblxm0" path="res://sprites/frames/mm_background/Image0055.png" id="26_xli5o"] +[ext_resource type="Texture2D" uid="uid://bippksovarcdy" path="res://sprites/frames/mm_background/Image0056.png" id="27_gpyyp"] +[ext_resource type="Texture2D" uid="uid://b02b2phcpk2t6" path="res://sprites/frames/mm_background/Image0057.png" id="28_s0jcr"] +[ext_resource type="Texture2D" uid="uid://dxhe0127ghf12" path="res://sprites/frames/mm_background/Image0058.png" id="29_r67gh"] +[ext_resource type="Texture2D" uid="uid://cusjbxujsvgqs" path="res://sprites/frames/mm_background/Image0059.png" id="30_h7pjj"] +[ext_resource type="Texture2D" uid="uid://xgasmillk6qj" path="res://sprites/frames/mm_background/Image0060.png" id="31_g1ll5"] +[ext_resource type="Texture2D" uid="uid://d2sw8ek4nvsn1" path="res://sprites/frames/mm_background/Image0061.png" id="32_0817o"] +[ext_resource type="Texture2D" uid="uid://dkv2j3gbpue8x" path="res://sprites/frames/mm_background/Image0062.png" id="33_0k5lh"] +[ext_resource type="Texture2D" uid="uid://b443tkhvh5ybk" path="res://sprites/frames/mm_background/Image0063.png" id="34_fccf3"] +[ext_resource type="Texture2D" uid="uid://rjh784so5qy0" path="res://sprites/frames/mm_background/Image0064.png" id="35_qn24x"] +[ext_resource type="Texture2D" uid="uid://ctb6ny4i2ln7r" path="res://sprites/frames/mm_background/Image0065.png" id="36_nvb3t"] +[ext_resource type="Texture2D" uid="uid://cxgwrgwjkg5un" path="res://sprites/frames/mm_background/Image0066.png" id="37_m4vbm"] +[ext_resource type="Texture2D" uid="uid://csuo8qrlgh4kc" path="res://sprites/frames/mm_background/Image0067.png" id="38_5ygiw"] +[ext_resource type="Texture2D" uid="uid://s8bx3a88oq8e" path="res://sprites/frames/mm_background/Image0068.png" id="39_di6pc"] +[ext_resource type="Texture2D" uid="uid://bcqhr13pwuysu" path="res://sprites/frames/mm_background/Image0069.png" id="40_arswu"] +[ext_resource type="Texture2D" uid="uid://ba6oqkjpsjqse" path="res://sprites/frames/mm_background/Image0070.png" id="41_sjga0"] +[ext_resource type="Texture2D" uid="uid://co6r1055y2i8n" path="res://sprites/frames/mm_background/Image0071.png" id="42_m1od1"] +[ext_resource type="Texture2D" uid="uid://cj7nd214tpxvp" path="res://sprites/frames/mm_background/Image0072.png" id="43_gmd4n"] +[ext_resource type="Texture2D" uid="uid://7e1aeot48dq6" path="res://sprites/frames/mm_background/Image0073.png" id="44_ijryr"] +[ext_resource type="Texture2D" uid="uid://pa0fxsqoc68o" path="res://sprites/frames/mm_background/Image0074.png" id="45_oc4hx"] +[ext_resource type="Texture2D" uid="uid://g2wfinvh7jpw" path="res://sprites/frames/mm_background/Image0075.png" id="46_67e37"] +[ext_resource type="Texture2D" uid="uid://dnpd3munsftyc" path="res://sprites/frames/mm_background/Image0076.png" id="47_mien6"] +[ext_resource type="Texture2D" uid="uid://lso32g7rrexc" path="res://sprites/frames/mm_background/Image0077.png" id="48_40exb"] +[ext_resource type="Texture2D" uid="uid://b78pe43s7wdgk" path="res://sprites/frames/mm_background/Image0078.png" id="49_jj26p"] +[ext_resource type="Texture2D" uid="uid://dxud6rilu70ga" path="res://sprites/frames/mm_background/Image0079.png" id="50_l8sbl"] +[ext_resource type="Texture2D" uid="uid://b1xnapb0oma6n" path="res://sprites/frames/mm_background/Image0080.png" id="51_og831"] +[ext_resource type="Texture2D" uid="uid://ciullnx5ok0el" path="res://sprites/frames/mm_background/Image0081.png" id="52_lrx5r"] +[ext_resource type="Texture2D" uid="uid://f1x2on5ce3dy" path="res://sprites/frames/mm_background/Image0082.png" id="53_7g25t"] +[ext_resource type="Texture2D" uid="uid://dugksfm5ubjkl" path="res://sprites/frames/mm_background/Image0083.png" id="54_lr4j3"] +[ext_resource type="Texture2D" uid="uid://ymh0jynmgjil" path="res://sprites/frames/mm_background/Image0084.png" id="55_tdkpy"] +[ext_resource type="Texture2D" uid="uid://d4jxv6dnklj02" path="res://sprites/frames/mm_background/Image0085.png" id="56_gefwp"] +[ext_resource type="Texture2D" uid="uid://bjlx6j6b2lxvq" path="res://sprites/frames/mm_background/Image0086.png" id="57_eyhsx"] +[ext_resource type="Texture2D" uid="uid://bgapquflrkfjt" path="res://sprites/frames/mm_background/Image0087.png" id="58_x50mk"] +[ext_resource type="Texture2D" uid="uid://tijhgbdpjreg" path="res://sprites/frames/mm_background/Image0088.png" id="59_2lkwr"] +[ext_resource type="Texture2D" uid="uid://b3rs6itbmgkes" path="res://sprites/frames/mm_background/Image0089.png" id="60_nj8pg"] +[ext_resource type="Texture2D" uid="uid://10k7wv05yb4x" path="res://sprites/frames/mm_background/Image0090.png" id="61_2iqeg"] +[ext_resource type="Texture2D" uid="uid://dnhifu8clrrh2" path="res://sprites/frames/mm_background/Image0091.png" id="62_1u4qn"] +[ext_resource type="Texture2D" uid="uid://dgbj81ajyvivb" path="res://sprites/frames/mm_background/Image0092.png" id="63_vqwao"] +[ext_resource type="Texture2D" uid="uid://dq3jhfiqyssru" path="res://sprites/frames/mm_background/Image0093.png" id="64_m3u8v"] +[ext_resource type="Texture2D" uid="uid://cbtgr2um5xouc" path="res://sprites/frames/mm_background/Image0094.png" id="65_dgoap"] +[ext_resource type="Texture2D" uid="uid://d14rcusulgeg7" path="res://sprites/frames/mm_background/Image0095.png" id="66_wot68"] +[ext_resource type="Texture2D" uid="uid://dubnka4uosan7" path="res://sprites/frames/mm_background/Image0096.png" id="67_8sr8p"] +[ext_resource type="Texture2D" uid="uid://d3o6vabtbluta" path="res://sprites/frames/mm_background/Image0097.png" id="68_h2505"] +[ext_resource type="Texture2D" uid="uid://b8pd7bk1x1roj" path="res://sprites/frames/mm_background/Image0098.png" id="69_hvh2c"] +[ext_resource type="Texture2D" uid="uid://diwca7oq12pb2" path="res://sprites/frames/mm_background/Image0099.png" id="70_y07da"] +[ext_resource type="Texture2D" uid="uid://dro4upt5nlxsu" path="res://sprites/frames/mm_background/Image0100.png" id="71_b60dh"] +[ext_resource type="Texture2D" uid="uid://kn4a8x7ammns" path="res://sprites/frames/mm_background/Image0101.png" id="72_3myye"] +[ext_resource type="Texture2D" uid="uid://msr0s3wqxp3b" path="res://sprites/frames/mm_background/Image0102.png" id="73_bceri"] +[ext_resource type="Texture2D" uid="uid://ol3jvkqgoqxr" path="res://sprites/frames/mm_background/Image0103.png" id="74_wsiyg"] +[ext_resource type="Texture2D" uid="uid://cu4t4p1jfwwt8" path="res://sprites/frames/mm_background/Image0104.png" id="75_r4ri8"] +[ext_resource type="Texture2D" uid="uid://ufv3fd05rldh" path="res://sprites/frames/mm_background/Image0105.png" id="76_0vcv4"] +[ext_resource type="Texture2D" uid="uid://c5apqfati6poc" path="res://sprites/frames/mm_background/Image0106.png" id="77_dwfpx"] +[ext_resource type="Texture2D" uid="uid://btwrovhrjfy1m" path="res://sprites/frames/mm_background/Image0107.png" id="78_r8psl"] +[ext_resource type="Texture2D" uid="uid://c8mpdoqlpoj6e" path="res://sprites/frames/mm_background/Image0108.png" id="79_72gbn"] +[ext_resource type="Texture2D" uid="uid://bfw52acixf7yh" path="res://sprites/frames/mm_background/Image0109.png" id="80_2qpbi"] +[ext_resource type="Texture2D" uid="uid://4t3so3s75201" path="res://sprites/frames/mm_background/Image0110.png" id="81_a685y"] +[ext_resource type="Texture2D" uid="uid://bfqe1oi8cmr8m" path="res://sprites/frames/mm_background/Image0111.png" id="82_vqbbx"] +[ext_resource type="Texture2D" uid="uid://b0c4ysywqdf8i" path="res://sprites/frames/mm_background/Image0112.png" id="83_52cfc"] +[ext_resource type="Texture2D" uid="uid://bycaru76sgul5" path="res://sprites/frames/mm_background/Image0113.png" id="84_dtjpt"] +[ext_resource type="Texture2D" uid="uid://bex5pm2wdr6ny" path="res://sprites/frames/mm_background/Image0114.png" id="85_8n8rf"] +[ext_resource type="Texture2D" uid="uid://c0wbirq7lj5ca" path="res://sprites/frames/mm_background/Image0115.png" id="86_dtl61"] +[ext_resource type="Texture2D" uid="uid://diwyb0rsyae85" path="res://sprites/frames/mm_background/Image0116.png" id="87_nxjme"] +[ext_resource type="Texture2D" uid="uid://30kux0yyeebc" path="res://sprites/frames/mm_background/Image0117.png" id="88_3u8ba"] +[ext_resource type="Texture2D" uid="uid://npdpgtsp617y" path="res://sprites/frames/mm_background/Image0118.png" id="89_o10ma"] +[ext_resource type="Texture2D" uid="uid://bs6yulirwkvvo" path="res://sprites/frames/mm_background/Image0119.png" id="90_bagbv"] +[ext_resource type="Texture2D" uid="uid://bs6q7wmvu4764" path="res://sprites/frames/mm_background/Image0120.png" id="91_o4v7s"] +[ext_resource type="Texture2D" uid="uid://yedg6ii6wflh" path="res://sprites/frames/mm_background/Image0121.png" id="92_mnns2"] +[ext_resource type="Texture2D" uid="uid://c3lf3dokh23d0" path="res://sprites/frames/mm_background/Image0122.png" id="93_vlxqe"] +[ext_resource type="Texture2D" uid="uid://cix5iw0runnuh" path="res://sprites/frames/mm_background/Image0123.png" id="94_5p2pw"] +[ext_resource type="Texture2D" uid="uid://do5c3nfikmqf0" path="res://sprites/frames/mm_background/Image0124.png" id="95_0e0ik"] +[ext_resource type="Texture2D" uid="uid://c3uet66k3nkyj" path="res://sprites/frames/mm_background/Image0125.png" id="96_bq4ff"] +[ext_resource type="Texture2D" uid="uid://btkuvd11ghkbb" path="res://sprites/frames/mm_background/Image0126.png" id="97_13yca"] +[ext_resource type="Texture2D" uid="uid://y7y3vdweb32q" path="res://sprites/frames/mm_background/Image0127.png" id="98_u4yk7"] +[ext_resource type="Texture2D" uid="uid://b0ocf5tl7stn" path="res://sprites/frames/mm_background/Image0128.png" id="99_tymef"] +[ext_resource type="Texture2D" uid="uid://c07cxgawbf8cj" path="res://sprites/frames/mm_background/Image0129.png" id="100_sr2ly"] +[ext_resource type="Texture2D" uid="uid://dkiedngkj7dt2" path="res://sprites/frames/mm_background/Image0130.png" id="101_m218t"] +[ext_resource type="Texture2D" uid="uid://cmt0b555cm6fc" path="res://sprites/frames/mm_background/Image0131.png" id="102_5dyax"] +[ext_resource type="Texture2D" uid="uid://o6hj6rvbdacw" path="res://sprites/frames/mm_background/Image0132.png" id="103_w403m"] +[ext_resource type="Texture2D" uid="uid://dx6pcdak4udib" path="res://sprites/frames/mm_background/Image0133.png" id="104_rdd54"] +[ext_resource type="Texture2D" uid="uid://b03fbm3onv3e7" path="res://sprites/frames/mm_background/Image0134.png" id="105_elwr2"] +[ext_resource type="Texture2D" uid="uid://ssirqb8s81nk" path="res://sprites/frames/mm_background/Image0135.png" id="106_cgof5"] +[ext_resource type="Texture2D" uid="uid://5l1ocbtx10kh" path="res://sprites/frames/mm_background/Image0136.png" id="107_j4t0q"] +[ext_resource type="Texture2D" uid="uid://8qe7qf6tnbk" path="res://sprites/frames/mm_background/Image0137.png" id="108_2vqrd"] +[ext_resource type="Texture2D" uid="uid://umiur2c0druu" path="res://sprites/frames/mm_background/Image0138.png" id="109_lfird"] +[ext_resource type="Texture2D" uid="uid://dkunhnlp1k3dv" path="res://sprites/frames/mm_background/Image0139.png" id="110_175fh"] +[ext_resource type="Texture2D" uid="uid://dv0g00ldfay6g" path="res://sprites/frames/mm_background/Image0140.png" id="111_bo4pd"] +[ext_resource type="Texture2D" uid="uid://br454nqqfenin" path="res://sprites/frames/mm_background/Image0141.png" id="112_hae6t"] +[ext_resource type="Texture2D" uid="uid://dhhn3pu4dktfq" path="res://sprites/frames/mm_background/Image0142.png" id="113_n1ivk"] +[ext_resource type="Texture2D" uid="uid://bkc2gnb5xg2c6" path="res://sprites/frames/mm_background/Image0143.png" id="114_ldpfs"] +[ext_resource type="Texture2D" uid="uid://l8b8ut1q7iwa" path="res://sprites/frames/mm_background/Image0144.png" id="115_og00p"] +[ext_resource type="Texture2D" uid="uid://rk3qwk4lt3e4" path="res://sprites/frames/mm_background/Image0145.png" id="116_f74dr"] +[ext_resource type="Texture2D" uid="uid://b45gypydo7lcr" path="res://sprites/frames/mm_background/Image0146.png" id="117_nsc0r"] +[ext_resource type="Texture2D" uid="uid://nybdbjidxyit" path="res://sprites/frames/mm_background/Image0147.png" id="118_vaphq"] +[ext_resource type="Texture2D" uid="uid://6c33ekmwqcfk" path="res://sprites/frames/mm_background/Image0148.png" id="119_ws3f3"] +[ext_resource type="Texture2D" uid="uid://b6ndg6t6n3gnh" path="res://sprites/frames/mm_background/Image0149.png" id="120_yfcpn"] +[ext_resource type="Texture2D" uid="uid://cit76pss8brtv" path="res://sprites/frames/mm_background/Image0150.png" id="121_gwkoh"] +[ext_resource type="Texture2D" uid="uid://xb8l58igkk82" path="res://sprites/frames/mm_background/Image0151.png" id="122_tugke"] +[ext_resource type="Texture2D" uid="uid://5p7u75wmkqx1" path="res://sprites/frames/mm_background/Image0152.png" id="123_cud0v"] +[ext_resource type="Texture2D" uid="uid://vc6j3yc316cn" path="res://sprites/frames/mm_background/Image0153.png" id="124_kdnsi"] +[ext_resource type="Texture2D" uid="uid://bsrbbwmrqdo0k" path="res://sprites/frames/mm_background/Image0154.png" id="125_xu81h"] +[ext_resource type="Texture2D" uid="uid://0ii7jwy2j28c" path="res://sprites/frames/mm_background/Image0155.png" id="126_aemuk"] +[ext_resource type="Texture2D" uid="uid://c57g8afun58ak" path="res://sprites/frames/mm_background/Image0156.png" id="127_qelf3"] +[ext_resource type="Texture2D" uid="uid://bmmm1piy6245t" path="res://sprites/frames/mm_background/Image0157.png" id="128_sn2xl"] +[ext_resource type="Texture2D" uid="uid://gwgil38lc5vm" path="res://sprites/frames/mm_background/Image0158.png" id="129_5c4bp"] +[ext_resource type="Texture2D" uid="uid://cupvjtjik05od" path="res://sprites/frames/mm_background/Image0159.png" id="130_aoumm"] +[ext_resource type="Texture2D" uid="uid://ct46nbh6rvo0w" path="res://sprites/frames/mm_background/Image0160.png" id="131_ccfmc"] +[ext_resource type="Texture2D" uid="uid://d2paebsa0gi42" path="res://sprites/frames/mm_background/Image0161.png" id="132_pinca"] +[ext_resource type="Texture2D" uid="uid://45ncka6spctb" path="res://sprites/frames/mm_background/Image0162.png" id="133_45xla"] +[ext_resource type="Texture2D" uid="uid://0kvg541xer25" path="res://sprites/frames/mm_background/Image0163.png" id="134_574p6"] +[ext_resource type="Texture2D" uid="uid://bkvd55jo26wab" path="res://sprites/frames/mm_background/Image0164.png" id="135_wak1j"] +[ext_resource type="Texture2D" uid="uid://bi4sc482h1jev" path="res://sprites/frames/mm_background/Image0165.png" id="136_vawlu"] +[ext_resource type="Texture2D" uid="uid://dx1xry2xl0h1f" path="res://sprites/frames/mm_background/Image0166.png" id="137_rvc2m"] +[ext_resource type="Texture2D" uid="uid://x4n26ifkh6km" path="res://sprites/frames/mm_background/Image0167.png" id="138_7aa61"] +[ext_resource type="Texture2D" uid="uid://bsbwvha8djq0b" path="res://sprites/frames/mm_background/Image0168.png" id="139_o7kcf"] +[ext_resource type="Texture2D" uid="uid://bycvvr53caljc" path="res://sprites/frames/mm_background/Image0169.png" id="140_8ngjp"] +[ext_resource type="Texture2D" uid="uid://d3xwrjoux273u" path="res://sprites/frames/mm_background/Image0170.png" id="141_5855t"] +[ext_resource type="Texture2D" uid="uid://bgy8oa46p40a" path="res://sprites/frames/mm_background/Image0171.png" id="142_5dc3w"] +[ext_resource type="Texture2D" uid="uid://c1lo4cx8l0pki" path="res://sprites/frames/mm_background/Image0172.png" id="143_jhca7"] +[ext_resource type="Texture2D" uid="uid://3yymttlm8ea2" path="res://sprites/frames/mm_background/Image0173.png" id="144_7aag7"] +[ext_resource type="Texture2D" uid="uid://bj6yndtp0nl6k" path="res://sprites/frames/mm_background/Image0174.png" id="145_mssfe"] +[ext_resource type="Texture2D" uid="uid://b05hvklyr00s1" path="res://sprites/frames/mm_background/Image0175.png" id="146_tnqr4"] +[ext_resource type="Texture2D" uid="uid://181sq338yy34" path="res://sprites/frames/mm_background/Image0176.png" id="147_dycfj"] +[ext_resource type="Texture2D" uid="uid://cw2wkx3cafikr" path="res://sprites/frames/mm_background/Image0177.png" id="148_16q1w"] +[ext_resource type="Texture2D" uid="uid://evr0kssao7m3" path="res://sprites/frames/mm_background/Image0178.png" id="149_1o83q"] +[ext_resource type="Texture2D" uid="uid://bvrjprox1jdv3" path="res://sprites/frames/mm_background/Image0179.png" id="150_1nhnj"] +[ext_resource type="Texture2D" uid="uid://dt7e7pyp5w2fw" path="res://sprites/frames/mm_background/Image0180.png" id="151_0ojgp"] +[ext_resource type="Texture2D" uid="uid://b88sai05bcyrk" path="res://sprites/frames/mm_background/Image0181.png" id="152_s5mp5"] +[ext_resource type="Texture2D" uid="uid://cfvtuouhriw74" path="res://sprites/frames/mm_background/Image0182.png" id="153_xwbh5"] +[ext_resource type="Texture2D" uid="uid://dp7mcklt31guk" path="res://sprites/frames/mm_background/Image0183.png" id="154_la5u2"] +[ext_resource type="Texture2D" uid="uid://bc3cl0u8ecraw" path="res://sprites/frames/mm_background/Image0184.png" id="155_xcmbm"] +[ext_resource type="Texture2D" uid="uid://d37wsm4dd6ms2" path="res://sprites/frames/mm_background/Image0185.png" id="156_opwhx"] +[ext_resource type="Texture2D" uid="uid://kk35kalm4j2d" path="res://sprites/frames/mm_background/Image0186.png" id="157_o4b05"] +[ext_resource type="Texture2D" uid="uid://b70u171x0f5di" path="res://sprites/frames/mm_background/Image0187.png" id="158_comas"] +[ext_resource type="Texture2D" uid="uid://c5ih1khjaggr8" path="res://sprites/frames/mm_background/Image0188.png" id="159_k4fx6"] +[ext_resource type="Texture2D" uid="uid://br5yw0os5ynfx" path="res://sprites/frames/mm_background/Image0189.png" id="160_drcsp"] +[ext_resource type="Texture2D" uid="uid://1vmp2ayu8jcy" path="res://sprites/frames/mm_background/Image0190.png" id="161_8pcgf"] +[ext_resource type="Texture2D" uid="uid://b8aic0up31b6f" path="res://sprites/frames/mm_background/Image0191.png" id="162_2ldeg"] +[ext_resource type="Texture2D" uid="uid://cvdahblolc4ik" path="res://sprites/frames/mm_background/Image0192.png" id="163_luai5"] +[ext_resource type="Texture2D" uid="uid://dxtd54j6cgxhj" path="res://sprites/frames/mm_background/Image0193.png" id="164_vorbj"] +[ext_resource type="Texture2D" uid="uid://b6r0ifxsccw2w" path="res://sprites/frames/mm_background/Image0194.png" id="165_54v8d"] +[ext_resource type="Texture2D" uid="uid://bbxtxw2crtnqf" path="res://sprites/frames/mm_background/Image0195.png" id="166_0s5pn"] +[ext_resource type="Texture2D" uid="uid://ci3ehu7qmtude" path="res://sprites/frames/mm_background/Image0196.png" id="167_aduht"] +[ext_resource type="Texture2D" uid="uid://cv64bchilosrj" path="res://sprites/frames/mm_background/Image0197.png" id="168_jqjov"] +[ext_resource type="Texture2D" uid="uid://lwde8x3pgfie" path="res://sprites/frames/mm_background/Image0198.png" id="169_ctols"] +[ext_resource type="Texture2D" uid="uid://dd2p8so1lpqc8" path="res://sprites/frames/mm_background/Image0199.png" id="170_riol2"] +[ext_resource type="Texture2D" uid="uid://d0xpm1rn668iq" path="res://sprites/frames/mm_background/Image0200.png" id="171_ax3vn"] +[ext_resource type="Texture2D" uid="uid://8fc6uyshwnej" path="res://sprites/frames/mm_background/Image0201.png" id="172_4nfo2"] +[ext_resource type="Texture2D" uid="uid://c31cl1v8ns78a" path="res://sprites/frames/mm_background/Image0202.png" id="173_ii6t0"] +[ext_resource type="Texture2D" uid="uid://dww6yrvrqa2i8" path="res://sprites/frames/mm_background/Image0203.png" id="174_35kco"] +[ext_resource type="Texture2D" uid="uid://3ndsdw3ufcfx" path="res://sprites/frames/mm_background/Image0204.png" id="175_11pki"] +[ext_resource type="Texture2D" uid="uid://bdiybkhyefl2" path="res://sprites/frames/mm_background/Image0205.png" id="176_ayiyj"] +[ext_resource type="Texture2D" uid="uid://bjhfgdjpvxjbb" path="res://sprites/frames/mm_background/Image0206.png" id="177_c6kqo"] +[ext_resource type="Texture2D" uid="uid://beifxswgufy6g" path="res://sprites/frames/mm_background/Image0207.png" id="178_1uvnh"] +[ext_resource type="Texture2D" uid="uid://bdovn0hpbauih" path="res://sprites/frames/mm_background/Image0208.png" id="179_j83sy"] +[ext_resource type="Texture2D" uid="uid://cexjjwbpjw36r" path="res://sprites/frames/mm_background/Image0209.png" id="180_jf5j0"] +[ext_resource type="Texture2D" uid="uid://brswfhmqbq7iw" path="res://sprites/frames/mm_background/Image0210.png" id="181_cqyfo"] +[ext_resource type="Texture2D" uid="uid://do05ahyllcu82" path="res://sprites/frames/mm_background/Image0211.png" id="182_lfp7e"] +[ext_resource type="Texture2D" uid="uid://2ttq8r5g0cmj" path="res://sprites/frames/mm_background/Image0212.png" id="183_6gx24"] +[ext_resource type="Texture2D" uid="uid://d3quq1spk6f5e" path="res://sprites/frames/mm_background/Image0213.png" id="184_2du54"] +[ext_resource type="Texture2D" uid="uid://dpd1qx1vci0vl" path="res://sprites/frames/mm_background/Image0214.png" id="185_q2i1n"] +[ext_resource type="Texture2D" uid="uid://t280r240rpnb" path="res://sprites/frames/mm_background/Image0215.png" id="186_at3tp"] +[ext_resource type="Texture2D" uid="uid://chkmao6uaq4lk" path="res://sprites/frames/mm_background/Image0216.png" id="187_whn7n"] +[ext_resource type="Texture2D" uid="uid://cowoc6tqhpjv3" path="res://sprites/frames/mm_background/Image0217.png" id="188_ye3ci"] +[ext_resource type="Texture2D" uid="uid://peuotvhimusf" path="res://sprites/frames/mm_background/Image0218.png" id="189_qyjuu"] +[ext_resource type="Texture2D" uid="uid://d3j0u3i5yqg3p" path="res://sprites/frames/mm_background/Image0219.png" id="190_cclff"] +[ext_resource type="Texture2D" uid="uid://cyr6gx6uobfni" path="res://sprites/frames/mm_background/Image0220.png" id="191_3aupn"] +[ext_resource type="Texture2D" uid="uid://bu6s2st4goxn2" path="res://sprites/frames/mm_background/Image0221.png" id="192_ghx0q"] +[ext_resource type="Texture2D" uid="uid://ctpdp1ruhbvwp" path="res://sprites/frames/mm_background/Image0222.png" id="193_r4731"] +[ext_resource type="Texture2D" uid="uid://dc2j301lcftjy" path="res://sprites/frames/mm_background/Image0223.png" id="194_f1pwf"] +[ext_resource type="Texture2D" uid="uid://vn1w81ctgfw2" path="res://sprites/frames/mm_background/Image0224.png" id="195_8wn1e"] +[ext_resource type="Texture2D" uid="uid://e1o7r51xa7e8" path="res://sprites/frames/mm_background/Image0225.png" id="196_h8260"] +[ext_resource type="Texture2D" uid="uid://671ej3xmedak" path="res://sprites/frames/mm_background/Image0226.png" id="197_kfjk1"] +[ext_resource type="Texture2D" uid="uid://di1orjmyejdaw" path="res://sprites/frames/mm_background/Image0227.png" id="198_m7whw"] +[ext_resource type="Texture2D" uid="uid://c8jf5vp4pqil8" path="res://sprites/frames/mm_background/Image0228.png" id="199_wtcp0"] +[ext_resource type="Texture2D" uid="uid://lyqeobjpu1bl" path="res://sprites/frames/mm_background/Image0229.png" id="200_sukth"] +[ext_resource type="Texture2D" uid="uid://ck5t4pldp0cft" path="res://sprites/frames/mm_background/Image0230.png" id="201_6j6xt"] +[ext_resource type="Texture2D" uid="uid://cc3q6sgfw0axu" path="res://sprites/frames/mm_background/Image0231.png" id="202_0fjfd"] +[ext_resource type="Texture2D" uid="uid://du25xblt3qmnt" path="res://sprites/frames/mm_background/Image0232.png" id="203_bjwpg"] +[ext_resource type="Texture2D" uid="uid://cgpe1nb3ix1y0" path="res://sprites/frames/mm_background/Image0233.png" id="204_iyrp4"] +[ext_resource type="Texture2D" uid="uid://d1gf0eswt0htr" path="res://sprites/frames/mm_background/Image0234.png" id="205_5fcut"] +[ext_resource type="Texture2D" uid="uid://c8sbrvfsg4j62" path="res://sprites/frames/mm_background/Image0235.png" id="206_slpna"] +[ext_resource type="Texture2D" uid="uid://dac5hlugps0kg" path="res://sprites/frames/mm_background/Image0236.png" id="207_hsksq"] +[ext_resource type="Texture2D" uid="uid://bucpabnqbvssl" path="res://sprites/frames/mm_background/Image0237.png" id="208_yqbst"] +[ext_resource type="Texture2D" uid="uid://d3and8que5e2l" path="res://sprites/frames/mm_background/Image0238.png" id="209_lvxxm"] +[ext_resource type="Texture2D" uid="uid://x6lm452i4dmr" path="res://sprites/frames/mm_background/Image0239.png" id="210_w8i65"] +[ext_resource type="Texture2D" uid="uid://cbkc5w67uy4m3" path="res://sprites/frames/mm_background/Image0240.png" id="211_in7s8"] +[ext_resource type="Texture2D" uid="uid://bvlbgggtxjkko" path="res://sprites/frames/mm_background/Image0241.png" id="212_rpmeu"] +[ext_resource type="Texture2D" uid="uid://cucxithi1feli" path="res://sprites/frames/mm_background/Image0242.png" id="213_y1d57"] +[ext_resource type="Texture2D" uid="uid://cg0wl4au8biuu" path="res://sprites/frames/mm_background/Image0243.png" id="214_d67iq"] +[ext_resource type="Texture2D" uid="uid://chi2yfutv8oec" path="res://sprites/frames/mm_background/Image0244.png" id="215_c28ij"] +[ext_resource type="Texture2D" uid="uid://di4o5dsrdps4m" path="res://sprites/frames/mm_background/Image0245.png" id="216_05nie"] +[ext_resource type="Texture2D" uid="uid://bvvg5ws2bhy2p" path="res://sprites/frames/mm_background/Image0246.png" id="217_7g1qr"] +[ext_resource type="Texture2D" uid="uid://cpxku0fmpewaf" path="res://sprites/frames/mm_background/Image0247.png" id="218_34ock"] +[ext_resource type="Texture2D" uid="uid://nfph200o21tx" path="res://sprites/frames/mm_background/Image0248.png" id="219_4dmek"] +[ext_resource type="Texture2D" uid="uid://bow0jheunbhi6" path="res://sprites/frames/mm_background/Image0249.png" id="220_si5x2"] +[ext_resource type="Texture2D" uid="uid://gognkvncb0ae" path="res://sprites/frames/mm_background/Image0250.png" id="221_nxaca"] [resource] animations = [{ @@ -890,5 +890,5 @@ animations = [{ }], "loop": true, "name": &"default", -"speed": 30.0 +"speed": 12.0 }] diff --git a/objects/animation/frames/player.model.tres b/objects/animation/frames/player.model.tres new file mode 100644 index 0000000..2969b41 --- /dev/null +++ b/objects/animation/frames/player.model.tres @@ -0,0 +1,59 @@ +[gd_resource type="SpriteFrames" format=3 uid="uid://ydao48cr3x3w"] + +[ext_resource type="Texture2D" uid="uid://dpedtkd6nb0ck" path="res://sprites/frames/walk/1/combined/combined.0000.rdat" id="1_vh5bj"] +[ext_resource type="Texture2D" uid="uid://bqqmkp4bjbofp" path="res://sprites/frames/walk/1/combined/combined.0002.rdat" id="2_8luxj"] +[ext_resource type="Texture2D" uid="uid://bdadl8437n06i" path="res://sprites/frames/walk/1/combined/combined.0001.rdat" id="2_eem45"] +[ext_resource type="Texture2D" uid="uid://vgdftsh47j0c" path="res://sprites/frames/walk/1/combined/combined.0004.rdat" id="3_iqilb"] +[ext_resource type="Texture2D" uid="uid://ghhdu4frwm20" path="res://sprites/frames/walk/1/combined/combined.0006.rdat" id="4_7532w"] +[ext_resource type="Texture2D" uid="uid://cbqoeh1b1ctdc" path="res://sprites/frames/walk/1/combined/combined.0003.rdat" id="4_xqc5y"] +[ext_resource type="Texture2D" uid="uid://bxaff3jlgn5u6" path="res://sprites/frames/walk/1/combined/combined.0008.rdat" id="5_8q2d8"] +[ext_resource type="Texture2D" uid="uid://fawl10c41eya" path="res://sprites/frames/walk/1/combined/combined.0010.rdat" id="6_3bqje"] +[ext_resource type="Texture2D" uid="uid://cengbto5vgicb" path="res://sprites/frames/walk/1/combined/combined.0005.rdat" id="6_vh5bj"] +[ext_resource type="Texture2D" uid="uid://hejfu7xwdhtv" path="res://sprites/frames/walk/1/combined/combined.0007.rdat" id="8_8luxj"] +[ext_resource type="Texture2D" uid="uid://1t6dcimgaoql" path="res://sprites/frames/walk/1/combined/combined.0009.rdat" id="10_iqilb"] + +[resource] +animations = [{ +"frames": [], +"loop": true, +"name": &"idle", +"speed": 8.0 +}, { +"frames": [{ +"duration": 1.0, +"texture": ExtResource("1_vh5bj") +}, { +"duration": 1.0, +"texture": ExtResource("2_eem45") +}, { +"duration": 1.0, +"texture": ExtResource("2_8luxj") +}, { +"duration": 1.0, +"texture": ExtResource("4_xqc5y") +}, { +"duration": 1.0, +"texture": ExtResource("3_iqilb") +}, { +"duration": 1.0, +"texture": ExtResource("6_vh5bj") +}, { +"duration": 1.0, +"texture": ExtResource("4_7532w") +}, { +"duration": 1.0, +"texture": ExtResource("8_8luxj") +}, { +"duration": 1.0, +"texture": ExtResource("5_8q2d8") +}, { +"duration": 1.0, +"texture": ExtResource("10_iqilb") +}, { +"duration": 1.0, +"texture": ExtResource("6_3bqje") +}], +"loop": true, +"name": &"walk", +"speed": 22.0 +}] diff --git a/objects/environment/default.tres b/objects/environment/default.tres index 31c1162..dac2755 100644 --- a/objects/environment/default.tres +++ b/objects/environment/default.tres @@ -1,3 +1,4 @@ [gd_resource type="Environment" format=3 uid="uid://b3ef577lsk2jh"] [resource] +background_mode = 1 diff --git a/objects/fonts/FleurDeLeah-Regular.ttf b/objects/fonts/FleurDeLeah-Regular.ttf new file mode 100644 index 0000000..b369e07 Binary files /dev/null and b/objects/fonts/FleurDeLeah-Regular.ttf differ diff --git a/objects/fonts/FleurDeLeah-Regular.ttf.import b/objects/fonts/FleurDeLeah-Regular.ttf.import new file mode 100644 index 0000000..f7846bf --- /dev/null +++ b/objects/fonts/FleurDeLeah-Regular.ttf.import @@ -0,0 +1,42 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://bikrkm12k2dgp" +path="res://.godot/imported/FleurDeLeah-Regular.ttf-4824f1722aa056caec19634b6e98e01b.fontdata" + +[deps] + +source_file="res://objects/fonts/FleurDeLeah-Regular.ttf" +dest_files=["res://.godot/imported/FleurDeLeah-Regular.ttf-4824f1722aa056caec19634b6e98e01b.fontdata"] + +[params] + +Rendering=null +antialiasing=0 +generate_mipmaps=false +disable_embedded_bitmaps=true +multichannel_signed_distance_field=false +msdf_pixel_range=1 +msdf_size=30 +allow_system_fallback=true +force_autohinter=false +modulate_color_glyphs=false +hinting=1 +subpixel_positioning=0 +keep_rounding_remainders=false +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[{ +"chars": [], +"glyphs": [], +"name": "New Configuration", +"size": Vector2i(16, 0), +&"variation_embolden": 0.0 +}] +language_support={} +script_support={} +opentype_features={} diff --git a/objects/fonts/HennyPenny-Regular.ttf b/objects/fonts/HennyPenny-Regular.ttf new file mode 100644 index 0000000..ad308b7 Binary files /dev/null and b/objects/fonts/HennyPenny-Regular.ttf differ diff --git a/objects/fonts/HennyPenny-Regular.ttf.import b/objects/fonts/HennyPenny-Regular.ttf.import new file mode 100644 index 0000000..ceda9cd --- /dev/null +++ b/objects/fonts/HennyPenny-Regular.ttf.import @@ -0,0 +1,36 @@ +[remap] + +importer="font_data_dynamic" +type="FontFile" +uid="uid://bebqc8vupqggo" +path="res://.godot/imported/HennyPenny-Regular.ttf-13cbc75659d387d3801396123d4fafed.fontdata" + +[deps] + +source_file="res://objects/fonts/HennyPenny-Regular.ttf" +dest_files=["res://.godot/imported/HennyPenny-Regular.ttf-13cbc75659d387d3801396123d4fafed.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 +modulate_color_glyphs=false +hinting=1 +subpixel_positioning=4 +keep_rounding_remainders=true +oversampling=0.0 +Fallbacks=null +fallbacks=[] +Compress=null +compress=true +preload=[] +language_support={} +script_support={} +opentype_features={} diff --git a/objects/materials/blur.tres b/objects/materials/blur.tres new file mode 100644 index 0000000..a08875f --- /dev/null +++ b/objects/materials/blur.tres @@ -0,0 +1,9 @@ +[gd_resource type="ShaderMaterial" format=3 uid="uid://b4n4pya81h7nr"] + +[ext_resource type="Shader" uid="uid://djsytmh3ngsow" path="res://src/shaders/blur.tres" id="1_2h4ns"] + +[resource] +shader = ExtResource("1_2h4ns") +shader_parameter/size = Vector2(0.01, 0.01) +shader_parameter/samples = Vector2i(20, 20) +shader_parameter/modulate = Color(0.7121294, 0.7121294, 0.71212935, 1) diff --git a/objects/materials/high_pixelation_material.tres b/objects/materials/high_pixelation_material.tres new file mode 100644 index 0000000..a01b43e --- /dev/null +++ b/objects/materials/high_pixelation_material.tres @@ -0,0 +1,7 @@ +[gd_resource type="ShaderMaterial" format=3 uid="uid://3lt6xa2r4n8c"] + +[ext_resource type="Shader" uid="uid://ctx3ghklntr1j" path="res://src/shaders/pixelating_shader.gdshader" id="1_crst2"] + +[resource] +shader = ExtResource("1_crst2") +shader_parameter/Factor = 400.0 diff --git a/objects/materials/low_pixelation_material.tres b/objects/materials/low_pixelation_material.tres new file mode 100644 index 0000000..f92ac59 --- /dev/null +++ b/objects/materials/low_pixelation_material.tres @@ -0,0 +1,7 @@ +[gd_resource type="ShaderMaterial" format=3 uid="uid://58t6c7g63j1i"] + +[ext_resource type="Shader" uid="uid://ctx3ghklntr1j" path="res://src/shaders/pixelating_shader.gdshader" id="1_rowpv"] + +[resource] +shader = ExtResource("1_rowpv") +shader_parameter/Factor = 600.0 diff --git a/objects/scenes/asset/ui/credits_menu.tscn b/objects/scenes/asset/ui/credits_menu.tscn new file mode 100644 index 0000000..c73d7ab --- /dev/null +++ b/objects/scenes/asset/ui/credits_menu.tscn @@ -0,0 +1,9 @@ +[gd_scene format=3 uid="uid://bfs48nlfaoqp2"] + +[node name="Credits Menu" type="Control" unique_id=1244466233] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 diff --git a/objects/scenes/asset/ui/main_menu.tscn b/objects/scenes/asset/ui/main_menu.tscn new file mode 100644 index 0000000..f94a143 --- /dev/null +++ b/objects/scenes/asset/ui/main_menu.tscn @@ -0,0 +1,127 @@ +[gd_scene format=3 uid="uid://5ch7mre0ksv6"] + +[ext_resource type="Script" uid="uid://bkryv1c57lq60" path="res://src/components/main_menu/MenuTransitionController.cs" id="1_vmn2s"] +[ext_resource type="Texture2D" uid="uid://dwxvec8mp4mxb" path="res://sprites/floweryheart.png" id="4_qcyed"] +[ext_resource type="Theme" uid="uid://nerlsbdjd6qo" path="res://objects/themes/default.tres" id="6_qr7co"] +[ext_resource type="Script" uid="uid://ucrfnouruw62" path="res://src/components/main_menu/ForceSceneQuit.cs" id="7_nov1i"] + +[node name="Main Menu" type="Control" unique_id=1796574784] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("1_vmn2s") + +[node name="Menustack" type="VBoxContainer" parent="." unique_id=231636108] +layout_mode = 1 +anchors_preset = 4 +anchor_top = 0.5 +anchor_bottom = 0.5 +offset_left = 213.0 +offset_top = -63.0 +offset_right = 357.0 +offset_bottom = 281.0 +grow_vertical = 2 +theme_override_constants/separation = 16 + +[node name="Play" type="Label" parent="Menustack" unique_id=306925775] +texture_filter = 1 +layout_mode = 2 +theme = ExtResource("6_qr7co") +theme_override_font_sizes/font_size = 41 +text = "Play" + +[node name="Button" type="Button" parent="Menustack/Play" unique_id=844443309] +layout_mode = 1 +anchors_preset = -1 +anchor_right = 1.0 +anchor_bottom = 0.5 +offset_bottom = 26.5 +grow_horizontal = 2 +grow_vertical = 2 +flat = true + +[node name="Options" type="Label" parent="Menustack" unique_id=1926113579] +texture_filter = 1 +layout_mode = 2 +theme = ExtResource("6_qr7co") +theme_override_font_sizes/font_size = 41 +text = "Options" + +[node name="Button" type="Button" parent="Menustack/Options" unique_id=1351052274] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +flat = true + +[node name="Credits" type="Label" parent="Menustack" unique_id=2099200764] +layout_mode = 2 +theme = ExtResource("6_qr7co") +theme_override_font_sizes/font_size = 41 +text = "Credits" +vertical_alignment = 1 + +[node name="Button" type="Button" parent="Menustack/Credits" unique_id=157033702] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +flat = true + +[node name="Quit" type="Label" parent="Menustack" unique_id=1231334524] +layout_mode = 2 +theme = ExtResource("6_qr7co") +theme_override_font_sizes/font_size = 41 +text = "Quit" +vertical_alignment = 1 + +[node name="Button" type="Button" parent="Menustack/Quit" unique_id=489973493] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +flat = true +script = ExtResource("7_nov1i") + +[node name="Title" type="Control" parent="." unique_id=1923904866] +layout_mode = 1 +anchor_left = 0.056 +anchor_right = 0.39100003 +anchor_bottom = 0.485 +offset_left = -29.512001 +offset_top = 20.0 +offset_right = -29.432037 +offset_bottom = 19.720001 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="G594" type="TextureRect" parent="Title" unique_id=1240990869] +visible = false +clip_children = 2 +light_mask = 512 +texture_filter = 1 +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +texture = ExtResource("4_qcyed") +stretch_mode = 5 + +[node name="Label" type="Label" parent="Title" unique_id=720161726] +layout_mode = 0 +offset_right = 40.0 +offset_bottom = 23.0 +theme = ExtResource("6_qr7co") +theme_override_font_sizes/font_size = 149 +text = "Heartescent" diff --git a/objects/scenes/asset/ui/options_menu.tscn b/objects/scenes/asset/ui/options_menu.tscn new file mode 100644 index 0000000..41480ac --- /dev/null +++ b/objects/scenes/asset/ui/options_menu.tscn @@ -0,0 +1,9 @@ +[gd_scene format=3 uid="uid://v0unm0xqyobj"] + +[node name="Options Menu" type="Control" unique_id=964726038] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 diff --git a/objects/scenes/asset/ui/pause_menu.tscn b/objects/scenes/asset/ui/pause_menu.tscn new file mode 100644 index 0000000..5ecad32 --- /dev/null +++ b/objects/scenes/asset/ui/pause_menu.tscn @@ -0,0 +1,173 @@ +[gd_scene format=3 uid="uid://r3ojhn4k3iaf"] + +[ext_resource type="Theme" uid="uid://nerlsbdjd6qo" path="res://objects/themes/default.tres" id="1_7k3kg"] +[ext_resource type="Material" uid="uid://b4n4pya81h7nr" path="res://objects/materials/blur.tres" id="2_ib2nf"] + +[node name="Pause Menu" type="Control" unique_id=948757040] +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("1_7k3kg") + +[node name="CanvasLayer" type="CanvasLayer" parent="." unique_id=1173333484] +layer = 2 + +[node name="CenterContainer" type="CenterContainer" parent="CanvasLayer" unique_id=1995291774] +texture_filter = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="MarginContainer" type="MarginContainer" parent="CanvasLayer/CenterContainer" unique_id=1158336042] +layout_mode = 2 + +[node name="Control" type="NinePatchRect" parent="CanvasLayer/CenterContainer/MarginContainer" unique_id=1745879093] +layout_mode = 2 + +[node name="VBoxContainer" type="Control" parent="CanvasLayer/CenterContainer/MarginContainer/Control" unique_id=1405140009] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +offset_right = 277.0 +offset_bottom = 361.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("1_7k3kg") + +[node name="Resume" type="Label" parent="CanvasLayer/CenterContainer/MarginContainer/Control/VBoxContainer" unique_id=1413360991] +layout_mode = 0 +offset_left = -123.0 +offset_top = -119.0 +offset_right = 154.0 +offset_bottom = -50.0 +rotation = -0.059637237 +theme = ExtResource("1_7k3kg") +theme_override_font_sizes/font_size = 38 +text = "Resume" +horizontal_alignment = 1 + +[node name="Button" type="Button" parent="CanvasLayer/CenterContainer/MarginContainer/Control/VBoxContainer/Resume" unique_id=828998662] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +flat = true + +[node name="Options" type="Label" parent="CanvasLayer/CenterContainer/MarginContainer/Control/VBoxContainer" unique_id=318198982] +layout_mode = 0 +offset_left = 16.0 +offset_top = -22.0 +offset_right = 293.0 +offset_bottom = 47.0 +rotation = 0.121077314 +theme = ExtResource("1_7k3kg") +theme_override_font_sizes/font_size = 38 +text = "Options" +horizontal_alignment = 1 + +[node name="Button" type="Button" parent="CanvasLayer/CenterContainer/MarginContainer/Control/VBoxContainer/Options" unique_id=980699149] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +flat = true + +[node name="Save" type="Label" parent="CanvasLayer/CenterContainer/MarginContainer/Control/VBoxContainer" unique_id=927776774] +layout_mode = 0 +offset_left = -258.99997 +offset_top = -1.0000076 +offset_right = 18.00003 +offset_bottom = 67.99999 +rotation = -0.13280258 +theme = ExtResource("1_7k3kg") +theme_override_font_sizes/font_size = 38 +text = "Save" +horizontal_alignment = 1 + +[node name="Button" type="Button" parent="CanvasLayer/CenterContainer/MarginContainer/Control/VBoxContainer/Save" unique_id=515140305] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +flat = true + +[node name="QuitMenu" type="Label" parent="CanvasLayer/CenterContainer/MarginContainer/Control/VBoxContainer" unique_id=1650843689] +layout_mode = 0 +offset_left = -48.0 +offset_top = 46.0 +offset_right = 229.0 +offset_bottom = 115.0 +rotation = 0.1251297 +theme = ExtResource("1_7k3kg") +theme_override_font_sizes/font_size = 38 +text = "Quit to Menu" +horizontal_alignment = 1 + +[node name="Button" type="Button" parent="CanvasLayer/CenterContainer/MarginContainer/Control/VBoxContainer/QuitMenu" unique_id=807442217] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +flat = true + +[node name="QuitDesktop" type="Label" parent="CanvasLayer/CenterContainer/MarginContainer/Control/VBoxContainer" unique_id=1576996929] +layout_mode = 0 +offset_left = -189.0 +offset_top = 160.0 +offset_right = 88.0 +offset_bottom = 229.0 +rotation = -0.10344923 +theme = ExtResource("1_7k3kg") +theme_override_font_sizes/font_size = 38 +text = "Quit to Desktop" +horizontal_alignment = 1 + +[node name="Button" type="Button" parent="CanvasLayer/CenterContainer/MarginContainer/Control/VBoxContainer/QuitDesktop" unique_id=961457213] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +flat = true + +[node name="PauseBlur" type="CanvasLayer" parent="." unique_id=157031478] +scale = Vector2(4, 4) +transform = Transform2D(4, 0, 0, 4, 0, 0) + +[node name="ColorRect" type="ColorRect" parent="PauseBlur" unique_id=1918165529] +material = ExtResource("2_ib2nf") +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="Label" type="Label" parent="PauseBlur" unique_id=1970945744] +modulate = Color(0.5891244, 0.5891244, 0.5891244, 0.48800004) +texture_filter = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +theme = ExtResource("1_7k3kg") +theme_override_constants/line_spacing = -10 +theme_override_font_sizes/font_size = 8 +text = "pausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuasepausepausepausepausepuase" +autowrap_mode = 1 +uppercase = true diff --git a/objects/scenes/asset/ui/splash_menu.tscn b/objects/scenes/asset/ui/splash_menu.tscn new file mode 100644 index 0000000..75e592c --- /dev/null +++ b/objects/scenes/asset/ui/splash_menu.tscn @@ -0,0 +1,68 @@ +[gd_scene format=3 uid="uid://b20x3qda0y3ga"] + +[ext_resource type="Theme" uid="uid://nerlsbdjd6qo" path="res://objects/themes/default.tres" id="1_tdx0j"] +[ext_resource type="Texture2D" uid="uid://dwxvec8mp4mxb" path="res://sprites/floweryheart.png" id="2_mwhxj"] + +[node name="Splash Menu" type="Control" unique_id=2134793095] +visible = false +layout_mode = 3 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 + +[node name="PressAnythingToPlay" type="Label" parent="." unique_id=638187247] +layout_mode = 1 +anchors_preset = 7 +anchor_left = 0.5 +anchor_top = 1.0 +anchor_right = 0.5 +anchor_bottom = 1.0 +offset_left = -134.0 +offset_top = -170.0 +offset_right = 135.0 +offset_bottom = -147.0 +grow_horizontal = 2 +grow_vertical = 0 +theme = ExtResource("1_tdx0j") +text = "P r e s s a n y t h i n g t o p l a y " + +[node name="Title" type="Control" parent="." unique_id=334782711] +layout_mode = 1 +anchors_preset = 5 +anchor_left = 0.5 +anchor_right = 0.5 +offset_left = -20.0 +offset_right = 20.0 +offset_bottom = 40.0 +grow_horizontal = 2 + +[node name="Title" type="Label" parent="Title" unique_id=153683829] +layout_mode = 1 +anchors_preset = 5 +anchor_left = 0.5 +anchor_right = 0.5 +offset_left = -231.5 +offset_top = 186.0 +offset_right = 231.5 +offset_bottom = 274.0 +grow_horizontal = 2 +theme = ExtResource("1_tdx0j") +theme_override_font_sizes/font_size = 64 +text = "Heartescent" +horizontal_alignment = 1 +uppercase = true + +[node name="HeartIcon" type="TextureRect" parent="Title" unique_id=433624424] +z_index = -1 +texture_filter = 1 +layout_mode = 1 +anchors_preset = 5 +anchor_left = 0.5 +anchor_right = 0.5 +offset_left = -141.0 +offset_right = 141.0 +offset_bottom = 282.0 +grow_horizontal = 2 +texture = ExtResource("2_mwhxj") diff --git a/objects/scenes/asset/utility/pixelator_viewport.tscn b/objects/scenes/asset/utility/pixelator_viewport.tscn new file mode 100644 index 0000000..7bd86da --- /dev/null +++ b/objects/scenes/asset/utility/pixelator_viewport.tscn @@ -0,0 +1,15 @@ +[gd_scene format=3 uid="uid://co30wf16rtf2u"] + +[ext_resource type="Script" uid="uid://b6asub1vte20c" path="res://src/components/utility/PixelatorViewport.cs" id="1_37bsx"] + +[node name="SubViewport" type="SubViewport" unique_id=1533253332] +disable_3d = true +transparent_bg = true +snap_2d_transforms_to_pixel = true +snap_2d_vertices_to_pixel = true +debug_draw = 4 +canvas_item_default_texture_filter = 0 +gui_disable_input = true +size = Vector2i(88, 74) +render_target_update_mode = 4 +script = ExtResource("1_37bsx") diff --git a/objects/scenes/demo/demo.tscn b/objects/scenes/demo/demo.tscn index 2ce1b86..29ee64c 100644 --- a/objects/scenes/demo/demo.tscn +++ b/objects/scenes/demo/demo.tscn @@ -5,7 +5,6 @@ [ext_resource type="Environment" uid="uid://b3ef577lsk2jh" path="res://objects/environment/default.tres" id="2_44w6l"] [ext_resource type="Material" uid="uid://b4epp5w0awoov" path="res://objects/materials/dimming_material.tres" id="2_o8yf1"] [ext_resource type="Script" uid="uid://biicefgcvdc2x" path="res://src/components/game/PlayerPhysicsController.cs" id="2_oekxy"] -[ext_resource type="SpriteFrames" uid="uid://doxc4pl5hvs6k" path="res://objects/animation/frames/player.tres" id="2_wq5k4"] [ext_resource type="Script" uid="uid://d0qoxtv6ld1ef" path="res://src/components/game/ResetPlayer.cs" id="3_7psk8"] [ext_resource type="CameraAttributesPhysical" uid="uid://csr0l6kulxsog" path="res://objects/camera attributes/physcam_attr.tres" id="3_wq5k4"] [ext_resource type="SpriteFrames" uid="uid://trcnb1ubmx5e" path="res://objects/animation/frames/jumpPoint.tres" id="4_i0lqw"] @@ -13,13 +12,19 @@ [ext_resource type="Script" uid="uid://1mjqnyofaeo8" path="res://src/components/game/DebugEnabler.gd" id="5_q0lvb"] [ext_resource type="Script" uid="uid://de3b068om3gsq" path="res://src/components/game/PredictiveCollisions.cs" id="7_n3w37"] [ext_resource type="AudioStream" uid="uid://5gnpemu56ac0" path="res://sounds/ost/Azalea.wav" id="8_irpq7"] -[ext_resource type="Script" uid="uid://b3unn3dqhg2vl" path="res://src/components/game/MusicCycler.gd" id="9_82guc"] +[ext_resource type="Theme" uid="uid://nerlsbdjd6qo" path="res://objects/themes/default.tres" id="8_pr4hf"] +[ext_resource type="SpriteFrames" uid="uid://doxc4pl5hvs6k" path="res://objects/animation/frames/player.tres" id="8_w1uqt"] +[ext_resource type="Script" uid="uid://b3unn3dqhg2vl" path="res://src/components/common/MusicCycler.gd" id="9_82guc"] [ext_resource type="AudioStream" uid="uid://fhfma3rrxyfi" path="res://sounds/ost/Asphodel.wav" id="10_8w1nl"] [ext_resource type="AudioStream" uid="uid://0tturucf5gxf" path="res://sounds/ost/Datura.wav" id="11_q0lvb"] [ext_resource type="AudioStream" uid="uid://b5cvbx3ypbbho" path="res://sounds/ost/Hyacinth.wav" id="12_7psk8"] -[ext_resource type="Script" uid="uid://bwgqvwybyrsmq" path="res://src/components/game/SfxPlayer.gd" id="14_8hos5"] +[ext_resource type="Script" uid="uid://bwgqvwybyrsmq" path="res://src/components/SfxPlayer.gd" id="14_8hos5"] [ext_resource type="AudioStream" uid="uid://dkx1v6c7vv0iq" path="res://sounds/sfx/jump.ogg" id="15_2fy34"] [ext_resource type="PackedScene" uid="uid://xanv3qbl1n2u" path="res://objects/scenes/asset/light.tscn" id="18_kfvst"] +[ext_resource type="Script" uid="uid://dct1kelhyy04v" path="res://src/components/combo_counter.gd" id="21_88cfa"] +[ext_resource type="PackedScene" uid="uid://r3ojhn4k3iaf" path="res://objects/scenes/asset/ui/pause_menu.tscn" id="23_1ubqr"] +[ext_resource type="Script" uid="uid://bjhyi4c7csb5s" path="res://src/components/game/PauseMenu.cs" id="24_w1uqt"] +[ext_resource type="Script" uid="uid://bifrcnsmydepv" path="res://src/components/global/LabelRendererGlobal.cs" id="25_btkep"] [sub_resource type="Curve" id="Curve_o8yf1"] _data = [Vector2(0, 0.34831464), 0.0, 0.0, 0, 0, Vector2(0.90999997, 0.764045), 0.0, 0.0, 0, 0] @@ -31,6 +36,13 @@ size = Vector2(687, 20) [sub_resource type="CircleShape2D" id="CircleShape2D_nxkc6"] radius = 20.09975 +[sub_resource type="Curve" id="Curve_88cfa"] +_limits = [0.0, 1.0, 0.0, 12.0] +_data = [Vector2(0.99999, 0.083333336), 0.0, 0.0, 0, 0, Vector2(1, 0.16666667), 0.0, -0.09291426, 0, 0, Vector2(5, 0.75), 0.0, 0.0, 0, 0, Vector2(7, 0), -0.1332405, -0.1332405, 0, 0, Vector2(9, 0.16666667), 0.0, 0.0, 0, 0, Vector2(11, 0.75), 0.0, 0.0, 0, 0, Vector2(11.99999, 0), 0.0, 0.0, 0, 0] +point_count = 7 +metadata/_snap_enabled = true +metadata/_snap_count = 12 + [sub_resource type="CapsuleShape2D" id="CapsuleShape2D_oekxy"] radius = 11.0 height = 50.0 @@ -41,6 +53,7 @@ radius = 5.0 [node name="Node2D" type="Node2D" unique_id=1943007414] [node name="Level" type="Node2D" parent="." unique_id=621894136] +modulate = Color(0.24450263, 0.27877265, 0.38142955, 1) [node name="Static" type="Node2D" parent="Level" unique_id=897407461] @@ -209,11 +222,32 @@ frame = 4 [node name="Enemies" type="Node2D" parent="Level" unique_id=1512527230] +[node name="Lights" type="Node2D" parent="Level" unique_id=1839338360] + +[node name="Light" parent="Level/Lights" unique_id=1954424812 instance=ExtResource("18_kfvst")] +position = Vector2(690, -499) +scale = Vector2(3.105, 3.106753) + +[node name="Light2" parent="Level/Lights" unique_id=867314630 instance=ExtResource("18_kfvst")] +position = Vector2(456, -1008) + +[node name="Light3" parent="Level/Lights" unique_id=71903995 instance=ExtResource("18_kfvst")] +visible = false +position = Vector2(1009, -971) + +[node name="Light4" parent="Level/Lights" unique_id=779029523 instance=ExtResource("18_kfvst")] +position = Vector2(529, 173) +scale = Vector2(1.2247605, 1.2247605) + +[node name="ForegroundNOCLight" parent="Level/Lights/Light4" index="2" unique_id=2045804818] +position = Vector2(-30.20999, 26.127558) + [node name="Player" type="Node2D" parent="." unique_id=868418175] +unique_name_in_owner = true position = Vector2(755, 0) [node name="CharacterBody2D" type="CharacterBody2D" parent="Player" unique_id=1131700263 node_paths=PackedStringArray("DebugTextLabel", "Sprite", "Predictor")] -position = Vector2(1, 0) +position = Vector2(-189, 142) collision_layer = 2 safe_margin = 0.16 script = ExtResource("2_oekxy") @@ -221,6 +255,7 @@ WalkAcceleration = 30.0 StoppingDeceleration = 50.0 CancellationAcceleration = 50.0 AirAcceleration = 3.0 +AccelerationStrengthCurve = SubResource("Curve_88cfa") MaxFallSpeed = 50.0 MaxRiseSpeed = 50.0 MaxRunSpeed = 12.0 @@ -234,20 +269,22 @@ position = Vector2(0, 5) shape = SubResource("CapsuleShape2D_oekxy") [node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="Player/CharacterBody2D" unique_id=1137300855] -light_mask = 0 +light_mask = 7 texture_filter = 1 -position = Vector2(0, 3) -sprite_frames = ExtResource("2_wq5k4") +position = Vector2(1.0000066, 2.9999995) +sprite_frames = ExtResource("8_w1uqt") animation = &"walk" [node name="Camera2D" type="Camera2D" parent="Player/CharacterBody2D" unique_id=1068565115] -zoom = Vector2(2, 2) +zoom = Vector2(4.205, 4.205) [node name="Label" type="Label" parent="Player/CharacterBody2D" unique_id=436935745] +texture_filter = 1 offset_left = 22.0 offset_top = -75.0 -offset_right = 139.0 +offset_right = 131.22 offset_bottom = 36.0 +theme = ExtResource("8_pr4hf") script = ExtResource("5_q0lvb") [node name="AudioListener2D" type="AudioListener2D" parent="Player/CharacterBody2D" unique_id=1583907461] @@ -296,6 +333,7 @@ max_results = 1 collide_with_areas = true [node name="Light" parent="Player/CharacterBody2D" unique_id=658403720 instance=ExtResource("18_kfvst")] +visible = false scale = Vector2(0.5, 0.5) [node name="WorldEnvironment" type="WorldEnvironment" parent="." unique_id=1465666014] @@ -320,6 +358,7 @@ music = Array[AudioStream]([ExtResource("10_8w1nl"), ExtResource("8_irpq7"), Ext [node name="CanvasLayer" type="CanvasLayer" parent="." unique_id=1286087362] [node name="ProgressBar" type="ProgressBar" parent="CanvasLayer" unique_id=720412287] +texture_filter = 1 offset_left = 18.0 offset_top = 10.0 offset_right = 376.0 @@ -328,26 +367,38 @@ value = 100.0 rounded = true show_percentage = false -[node name="Light" parent="." unique_id=1954424812 instance=ExtResource("18_kfvst")] -position = Vector2(690, -499) -scale = Vector2(3.105, 3.106753) - -[node name="Light2" parent="." unique_id=867314630 instance=ExtResource("18_kfvst")] -position = Vector2(456, -1008) - -[node name="Light3" parent="." unique_id=71903995 instance=ExtResource("18_kfvst")] +[node name="Label" type="Label" parent="CanvasLayer" unique_id=2058517854] visible = false -position = Vector2(1009, -971) +texture_filter = 1 +offset_left = 21.0 +offset_top = 36.0 +offset_right = 61.0 +offset_bottom = 59.0 +script = ExtResource("21_88cfa") -[node name="Light4" parent="." unique_id=779029523 instance=ExtResource("18_kfvst")] -position = Vector2(529, 173) -scale = Vector2(1.2247605, 1.2247605) +[node name="Pause Menu" parent="CanvasLayer" unique_id=948757040 instance=ExtResource("23_1ubqr")] +texture_filter = 1 +script = ExtResource("24_w1uqt") + +[node name="CanvasLayer" parent="CanvasLayer/Pause Menu" index="0" unique_id=1173333484] +visible = false + +[node name="PauseBlur" parent="CanvasLayer/Pause Menu" index="1" unique_id=157031478] +visible = false + +[node name="LabelRendererGlobal" type="Control" parent="." unique_id=1492844034] +physics_interpolation_mode = 0 +layout_mode = 3 +anchors_preset = 0 +script = ExtResource("25_btkep") +PixellizationFactor = Vector2(4, 4) [connection signal="OnJump" from="Player/CharacterBody2D" to="Sfx" method="_on_character_body_2d_on_jump"] [connection signal="finished" from="Music" to="Music" method="_on_finished"] +[editable path="Level/Lights/Light"] +[editable path="Level/Lights/Light2"] +[editable path="Level/Lights/Light3"] +[editable path="Level/Lights/Light4"] [editable path="Player/CharacterBody2D/Light"] -[editable path="Light"] -[editable path="Light2"] -[editable path="Light3"] -[editable path="Light4"] +[editable path="CanvasLayer/Pause Menu"] diff --git a/objects/scenes/demo/demo_mainmenu.tscn b/objects/scenes/demo/demo_mainmenu.tscn index a708011..1468c65 100644 --- a/objects/scenes/demo/demo_mainmenu.tscn +++ b/objects/scenes/demo/demo_mainmenu.tscn @@ -3,14 +3,71 @@ [ext_resource type="Script" uid="uid://ddyqjxbvduefg" path="res://src/components/main_menu/FramesDriver.cs" id="1_57gb7"] [ext_resource type="SpriteFrames" uid="uid://cxf0kefqrxk0d" path="res://objects/animation/frames/mm_background.tres" id="2_57gb7"] [ext_resource type="Texture2D" uid="uid://y8jx0okmf6bu" path="res://sprites/background/background_render.png" id="2_bmtj5"] -[ext_resource type="Texture2D" uid="uid://dwxvec8mp4mxb" path="res://sprites/floweryheart.png" id="4_bwcp6"] [ext_resource type="AudioStream" uid="uid://fhfma3rrxyfi" path="res://sounds/ost/Asphodel.wav" id="4_poqmu"] +[ext_resource type="Script" uid="uid://ch221ydrywbrk" path="res://src/components/main_menu/GradientScriptedAnimation.cs" id="4_wdmo0"] +[ext_resource type="Script" uid="uid://b3unn3dqhg2vl" path="res://src/components/common/MusicCycler.gd" id="5_1hr2j"] +[ext_resource type="PackedScene" uid="uid://5ch7mre0ksv6" path="res://objects/scenes/asset/ui/main_menu.tscn" id="5_wdmo0"] +[ext_resource type="Script" uid="uid://cf3040sd1mjrk" path="res://src/components/main_menu/MenuTransition.cs" id="6_0fhi2"] +[ext_resource type="PackedScene" uid="uid://b20x3qda0y3ga" path="res://objects/scenes/asset/ui/splash_menu.tscn" id="6_q1jge"] +[ext_resource type="PackedScene" uid="uid://r2lb1ommvj6u" path="res://objects/scenes/demo/demo.tscn" id="7_1v68a"] +[ext_resource type="PackedScene" uid="uid://bfs48nlfaoqp2" path="res://objects/scenes/asset/ui/credits_menu.tscn" id="7_t7qbk"] +[ext_resource type="PackedScene" uid="uid://v0unm0xqyobj" path="res://objects/scenes/asset/ui/options_menu.tscn" id="8_0fhi2"] +[ext_resource type="Theme" uid="uid://nerlsbdjd6qo" path="res://objects/themes/default.tres" id="11_p6t12"] +[ext_resource type="Script" uid="uid://bifrcnsmydepv" path="res://src/components/global/LabelRendererGlobal.cs" id="14_w05yp"] + +[sub_resource type="Gradient" id="Gradient_q1jge"] +interpolation_color_space = 2 +colors = PackedColorArray(0, 0, 0, 0, 0, 0, 0, 1) + +[sub_resource type="GradientTexture2D" id="GradientTexture2D_t7qbk"] +gradient = SubResource("Gradient_q1jge") +fill_from = Vector2(1, 1) +fill_to = Vector2(0, 0) + +[sub_resource type="Gradient" id="Gradient_w05yp"] + +[sub_resource type="GradientTexture1D" id="GradientTexture1D_k8ytl"] +gradient = SubResource("Gradient_w05yp") + +[sub_resource type="Resource" id="Resource_0fhi2"] +script = ExtResource("6_0fhi2") +Menu = NodePath("../Credits Menu") +TransitionName = "transition_credits" +BackgroundDimming = 1 +TransitionButton = NodePath("Menustack/Credits/Button") +metadata/_custom_type_script = "uid://cf3040sd1mjrk" + +[sub_resource type="Resource" id="Resource_1v68a"] +script = ExtResource("6_0fhi2") +Menu = NodePath("../Options Menu") +TransitionName = "transition_options" +BackgroundDimming = 1 +TransitionButton = NodePath("Menustack/Options/Button") +metadata/_custom_type_script = "uid://cf3040sd1mjrk" + +[sub_resource type="Resource" id="Resource_p6t12"] +script = ExtResource("6_0fhi2") +Menu = null +TransitionName = "transition_play" +BackgroundDimming = 1 +TransitionButton = NodePath("Menustack/Play/Button") +Mode = 2 +Scene = ExtResource("7_1v68a") +metadata/_custom_type_script = "uid://cf3040sd1mjrk" + +[sub_resource type="Resource" id="Resource_w05yp"] +script = ExtResource("6_0fhi2") +Menu = null +TransitionName = "transition_quit" +BackgroundDimming = 1 +TransitionButton = NodePath("Menustack/Quit/Button") +Mode = 1 +metadata/_custom_type_script = "uid://cf3040sd1mjrk" [node name="CanvasLayer" type="CanvasLayer" unique_id=964065099] -[node name="Node2D" type="Node2D" parent="." unique_id=1686720967] - [node name="Backgrounds" type="Control" parent="." unique_id=947513697] +z_index = -1 layout_mode = 3 anchors_preset = 15 anchor_right = 1.0 @@ -18,7 +75,7 @@ anchor_bottom = 1.0 grow_horizontal = 2 grow_vertical = 2 -[node name="TextureRect" type="TextureRect" parent="Backgrounds" unique_id=2116447674] +[node name="AnimatingBG" type="TextureRect" parent="Backgrounds" unique_id=2116447674] z_index = -1 texture_filter = 1 layout_mode = 1 @@ -34,101 +91,98 @@ expand_mode = 1 script = ExtResource("1_57gb7") Frames = ExtResource("2_57gb7") Animation = &"default" -Speed = 0.355 + +[node name="TextureRect" type="TextureRect" parent="Backgrounds" unique_id=413596339] +layout_mode = 1 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +script = ExtResource("4_wdmo0") +GradientedTexture = SubResource("GradientTexture2D_t7qbk") + +[node name="Debug" type="TextureRect" parent="Backgrounds" unique_id=1830017880] +visible = false +layout_mode = 0 +offset_left = 492.0 +offset_top = 276.0 +offset_right = 532.0 +offset_bottom = 316.0 +texture = SubResource("GradientTexture1D_k8ytl") [node name="Foregrounds" type="Control" parent="." unique_id=532739154] texture_filter = 1 layout_mode = 3 -anchors_preset = 0 -offset_right = 40.0 -offset_bottom = 40.0 +anchors_preset = 15 +anchor_right = 1.0 +anchor_bottom = 1.0 +grow_horizontal = 2 +grow_vertical = 2 +mouse_filter = 2 -[node name="Menu" type="Control" parent="Foregrounds" unique_id=1624616979] +[node name="Main Menu" parent="Foregrounds" unique_id=1796574784 node_paths=PackedStringArray("Background", "Cursor") instance=ExtResource("5_wdmo0")] layout_mode = 1 -anchors_preset = 0 -offset_left = 115.0 -offset_top = 31.0 -offset_right = 155.0 -offset_bottom = 71.0 +mouse_filter = 2 +Transitions = Array[Object]([SubResource("Resource_0fhi2"), SubResource("Resource_1v68a"), SubResource("Resource_p6t12"), SubResource("Resource_w05yp")]) +Background = NodePath("../../Backgrounds/TextureRect") +Cursor = NodePath("../Cursor") -[node name="ColorRect" type="ColorRect" parent="Foregrounds/Menu" unique_id=113370318] +[node name="Menustack" parent="Foregrounds/Main Menu" index="0" unique_id=231636108] +mouse_filter = 2 + +[node name="Button" parent="Foregrounds/Main Menu/Menustack/Quit" parent_id_path=PackedInt32Array(1796574784, 1231334524) index="0" unique_id=489973493 node_paths=PackedStringArray("QuitAnimation", "MusicPlayer")] +QuitAnimation = NodePath("../../../../../Backgrounds/TextureRect") +MusicPlayer = NodePath("../../../../../AudioStreamPlayer") + +[node name="Title" parent="Foregrounds/Main Menu" index="1" unique_id=1923904866] +mouse_filter = 2 + +[node name="Splash Menu" parent="Foregrounds" unique_id=2134793095 instance=ExtResource("6_q1jge")] +layout_mode = 1 + +[node name="Credits Menu" parent="Foregrounds" unique_id=1244466233 instance=ExtResource("7_t7qbk")] +visible = false +layout_mode = 1 + +[node name="Options Menu" parent="Foregrounds" unique_id=964726038 instance=ExtResource("8_0fhi2")] +visible = false +layout_mode = 1 + +[node name="Cursor" type="Control" parent="Foregrounds" unique_id=1789147063] +visible = false +anchors_preset = 0 +offset_left = 189.0 +offset_top = 264.0 +offset_right = 189.0 +offset_bottom = 264.0 + +[node name="Cursor" type="Label" parent="Foregrounds/Cursor" unique_id=1369070031] layout_mode = 1 anchors_preset = 15 anchor_right = 1.0 anchor_bottom = 1.0 -offset_left = 86.0 -offset_top = 6.0 -offset_right = 86.0 -offset_bottom = 6.0 -grow_horizontal = 2 -grow_vertical = 2 -color = Color(0.1764706, 0.1764706, 0.1764706, 0) - -[node name="Label" type="Label" parent="Foregrounds/Menu/ColorRect" unique_id=2085880928] -layout_mode = 1 -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -offset_left = -37.0 -offset_top = 104.0 -offset_right = 301.0 -offset_bottom = 152.0 +offset_left = -27.25 +offset_top = -21.99 +offset_right = 6.75 +offset_bottom = 92.01 grow_horizontal = 2 grow_vertical = 2 +theme = ExtResource("11_p6t12") theme_override_font_sizes/font_size = 64 -text = "escent" -horizontal_alignment = 1 - -[node name="VBoxContainer" type="VBoxContainer" parent="Foregrounds/Menu" unique_id=2073991818] -layout_mode = 0 -offset_left = -48.0 -offset_top = 335.0 -offset_right = 86.0 -offset_bottom = 561.0 -theme_override_constants/separation = 10 - -[node name="Play" type="Label" parent="Foregrounds/Menu/VBoxContainer" unique_id=1275991601] -layout_mode = 2 -theme_override_font_sizes/font_size = 35 -text = "Play" -vertical_alignment = 1 - -[node name="Button" type="Button" parent="Foregrounds/Menu/VBoxContainer/Play" unique_id=1599046476] -layout_mode = 1 -anchors_preset = 15 -anchor_right = 1.0 -anchor_bottom = 1.0 -grow_horizontal = 2 -grow_vertical = 2 -flat = true - -[node name="Label2" type="Label" parent="Foregrounds/Menu/VBoxContainer" unique_id=160372396] -layout_mode = 2 -theme_override_font_sizes/font_size = 35 -text = "Options" -vertical_alignment = 1 - -[node name="Label3" type="Label" parent="Foregrounds/Menu/VBoxContainer" unique_id=823585934] -layout_mode = 2 -theme_override_font_sizes/font_size = 35 -text = "Credits" -vertical_alignment = 1 - -[node name="Label4" type="Label" parent="Foregrounds/Menu/VBoxContainer" unique_id=251545756] -layout_mode = 2 -theme_override_font_sizes/font_size = 35 -text = "Quit" -vertical_alignment = 1 - -[node name="TextureRect" type="TextureRect" parent="Foregrounds/Menu" unique_id=1402279798] -texture_filter = 1 -layout_mode = 0 -offset_left = -103.0 -offset_top = -1.0 -offset_right = 179.0 -offset_bottom = 281.0 -texture = ExtResource("4_bwcp6") +text = ">" [node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="." unique_id=1990529552] -stream = ExtResource("4_poqmu") autoplay = true +script = ExtResource("5_1hr2j") +music = Array[AudioStream]([ExtResource("4_poqmu")]) + +[node name="LabelRendererGlobal" type="Control" parent="." unique_id=568000883 node_paths=PackedStringArray("DebugRect", "DebugLabel")] +layout_mode = 3 +anchors_preset = 0 +script = ExtResource("14_w05yp") +PixellizationFactor = Vector2(4, 4) +DebugRect = NodePath("../Backgrounds/Debug") +DebugLabel = NodePath("../Foregrounds/Main Menu/Menustack/Play") + +[editable path="Foregrounds/Main Menu"] diff --git a/objects/scenes/subview/player.tscn b/objects/scenes/subview/player.tscn new file mode 100644 index 0000000..c990589 --- /dev/null +++ b/objects/scenes/subview/player.tscn @@ -0,0 +1,19 @@ +[gd_scene format=3 uid="uid://by5rwehh7a8tv"] + +[ext_resource type="PackedScene" uid="uid://c4hd5js6lujd2" path="res://objects/3d/person.glb" id="1_rs8nv"] + +[sub_resource type="Environment" id="Environment_rs8nv"] +background_mode = 1 +ambient_light_source = 1 +reflected_light_source = 1 + +[node name="Node3D" type="Node3D" unique_id=866323622] + +[node name="person" parent="." unique_id=666421694 instance=ExtResource("1_rs8nv")] +transform = Transform3D(0.39, 0, 0, 0, 0.39, 0, 0, 0, 0.39, 0, 0, 0) + +[node name="Camera3D" type="Camera3D" parent="." unique_id=1298835662] +transform = Transform3D(-4.371139e-08, 0, 1, 0, 1, 0, -1, 0, -4.371139e-08, 5.215, 1.4915261, 0) +environment = SubResource("Environment_rs8nv") +projection = 1 +size = 2.333 diff --git a/objects/themes/default.tres b/objects/themes/default.tres index 6992d45..bb34d9e 100644 --- a/objects/themes/default.tres +++ b/objects/themes/default.tres @@ -1,7 +1,6 @@ [gd_resource type="Theme" format=3 uid="uid://nerlsbdjd6qo"] -[sub_resource type="SystemFont" id="SystemFont_rcooe"] -font_names = PackedStringArray("Franklin Gothic") +[ext_resource type="FontFile" uid="uid://bebqc8vupqggo" path="res://objects/fonts/HennyPenny-Regular.ttf" id="1_vvyi6"] [resource] -Label/fonts/font = SubResource("SystemFont_rcooe") +Label/fonts/font = ExtResource("1_vvyi6") diff --git a/project.godot b/project.godot index 85030aa..f53c50f 100644 --- a/project.godot +++ b/project.godot @@ -10,7 +10,7 @@ config_version=5 [application] -config/name="WrplatGodot" +config/name="Heartescent" config/version="0.1.38" run/main_scene="uid://c4m8fwawvvkgn" config/features=PackedStringArray("4.6", "C#", "Forward Plus") @@ -18,6 +18,11 @@ config/icon="uid://tdjmuli4qa22" config/macos_native_icon="res://icon.icns" config/windows_native_icon="res://icon.ico" +[autoload] + +GameThread="*uid://3rsbyo3o4jpf" +Backstage="*uid://gjrbl1apdy85" + [dotnet] project/assembly_name="WrplatGodot" @@ -27,6 +32,16 @@ project/assembly_name="WrplatGodot" version_control/plugin_name="GitPlugin" version_control/autoload_on_startup=true +[editor_plugins] + +enabled=PackedStringArray("res://addons/aeqw89.RDatCanvasTextureImporterPlugin/plugin.cfg") + +[file_customization] + +folder_colors={ +"res://sprites/frames/walk/": "red" +} + [input] move_right={ @@ -105,6 +120,11 @@ turn_back={ , Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":10,"pressure":0.0,"pressed":true,"script":null) ] } +pause={ +"deadzone": 0.2, +"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194305,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null) +] +} [layer_names] diff --git a/sounds/ost/Asphodel.wav b/sounds/ost/Asphodel.wav index 7d84c09..df4c489 100644 Binary files a/sounds/ost/Asphodel.wav and b/sounds/ost/Asphodel.wav differ diff --git a/sprites/frames/idle/1/combined/combined.0000.rdat b/sprites/frames/idle/1/combined/combined.0000.rdat new file mode 100644 index 0000000..59251f2 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0000.rdat @@ -0,0 +1 @@ +{"index":"0","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/diffuse\\model.diffuse0001.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/normal\\model.normal0001.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/specular\\model.specular0001.png"} \ No newline at end of file diff --git a/sprites/frames/idle/1/combined/combined.0000.rdat.import b/sprites/frames/idle/1/combined/combined.0000.rdat.import new file mode 100644 index 0000000..d898b31 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0000.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://ddlanauxs5v3r" +path="res://.godot/imported/combined.0000.rdat-e073de1fc11c9de99dd0a64be4e23087.tres" + +[deps] + +source_file="res://sprites/frames/idle/1/combined/combined.0000.rdat" +dest_files=["res://.godot/imported/combined.0000.rdat-e073de1fc11c9de99dd0a64be4e23087.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/idle/1/combined/combined.0001.rdat b/sprites/frames/idle/1/combined/combined.0001.rdat new file mode 100644 index 0000000..824ac41 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0001.rdat @@ -0,0 +1 @@ +{"index":"1","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/diffuse\\model.diffuse0003.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/normal\\model.normal0003.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/specular\\model.specular0003.png"} \ No newline at end of file diff --git a/sprites/frames/idle/1/combined/combined.0001.rdat.import b/sprites/frames/idle/1/combined/combined.0001.rdat.import new file mode 100644 index 0000000..0949d89 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0001.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://blms5yehkyjar" +path="res://.godot/imported/combined.0001.rdat-f319a61fc343dc9ebc3637ebb12d24f1.tres" + +[deps] + +source_file="res://sprites/frames/idle/1/combined/combined.0001.rdat" +dest_files=["res://.godot/imported/combined.0001.rdat-f319a61fc343dc9ebc3637ebb12d24f1.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/idle/1/combined/combined.0002.rdat b/sprites/frames/idle/1/combined/combined.0002.rdat new file mode 100644 index 0000000..a774bc2 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0002.rdat @@ -0,0 +1 @@ +{"index":"2","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/diffuse\\model.diffuse0005.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/normal\\model.normal0005.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/specular\\model.specular0005.png"} \ No newline at end of file diff --git a/sprites/frames/idle/1/combined/combined.0002.rdat.import b/sprites/frames/idle/1/combined/combined.0002.rdat.import new file mode 100644 index 0000000..9ec3e25 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0002.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://d1lsmv37ft1dp" +path="res://.godot/imported/combined.0002.rdat-ebacb179cd5056440ae562069bf6cb0a.tres" + +[deps] + +source_file="res://sprites/frames/idle/1/combined/combined.0002.rdat" +dest_files=["res://.godot/imported/combined.0002.rdat-ebacb179cd5056440ae562069bf6cb0a.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/idle/1/combined/combined.0003.rdat b/sprites/frames/idle/1/combined/combined.0003.rdat new file mode 100644 index 0000000..1ccf344 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0003.rdat @@ -0,0 +1 @@ +{"index":"3","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/diffuse\\model.diffuse0007.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/normal\\model.normal0007.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/specular\\model.specular0007.png"} \ No newline at end of file diff --git a/sprites/frames/idle/1/combined/combined.0003.rdat.import b/sprites/frames/idle/1/combined/combined.0003.rdat.import new file mode 100644 index 0000000..cbae02b --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0003.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://btao5x7fbmbd" +path="res://.godot/imported/combined.0003.rdat-7b9db58d81c53dd1256b7ca27d617558.tres" + +[deps] + +source_file="res://sprites/frames/idle/1/combined/combined.0003.rdat" +dest_files=["res://.godot/imported/combined.0003.rdat-7b9db58d81c53dd1256b7ca27d617558.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/idle/1/combined/combined.0004.rdat b/sprites/frames/idle/1/combined/combined.0004.rdat new file mode 100644 index 0000000..c9b38e5 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0004.rdat @@ -0,0 +1 @@ +{"index":"4","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/diffuse\\model.diffuse0009.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/normal\\model.normal0009.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/specular\\model.specular0009.png"} \ No newline at end of file diff --git a/sprites/frames/idle/1/combined/combined.0004.rdat.import b/sprites/frames/idle/1/combined/combined.0004.rdat.import new file mode 100644 index 0000000..a6b94c1 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0004.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://r4y73ffdg5pn" +path="res://.godot/imported/combined.0004.rdat-54ece3a5f39c477b24f0ccefeab1e7d4.tres" + +[deps] + +source_file="res://sprites/frames/idle/1/combined/combined.0004.rdat" +dest_files=["res://.godot/imported/combined.0004.rdat-54ece3a5f39c477b24f0ccefeab1e7d4.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/idle/1/combined/combined.0005.rdat b/sprites/frames/idle/1/combined/combined.0005.rdat new file mode 100644 index 0000000..2351ec8 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0005.rdat @@ -0,0 +1 @@ +{"index":"5","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/diffuse\\model.diffuse0011.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/normal\\model.normal0011.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/specular\\model.specular0011.png"} \ No newline at end of file diff --git a/sprites/frames/idle/1/combined/combined.0005.rdat.import b/sprites/frames/idle/1/combined/combined.0005.rdat.import new file mode 100644 index 0000000..4be87d8 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0005.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://y5xpor3xs0m4" +path="res://.godot/imported/combined.0005.rdat-84993285539781521175ebb0510a32b7.tres" + +[deps] + +source_file="res://sprites/frames/idle/1/combined/combined.0005.rdat" +dest_files=["res://.godot/imported/combined.0005.rdat-84993285539781521175ebb0510a32b7.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/idle/1/combined/combined.0006.rdat b/sprites/frames/idle/1/combined/combined.0006.rdat new file mode 100644 index 0000000..c8fe6df --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0006.rdat @@ -0,0 +1 @@ +{"index":"6","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/diffuse\\model.diffuse0013.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/normal\\model.normal0013.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/specular\\model.specular0013.png"} \ No newline at end of file diff --git a/sprites/frames/idle/1/combined/combined.0006.rdat.import b/sprites/frames/idle/1/combined/combined.0006.rdat.import new file mode 100644 index 0000000..b32840d --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0006.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://oa6axortulya" +path="res://.godot/imported/combined.0006.rdat-474c6d220ee0338296d6cf7329e2b93c.tres" + +[deps] + +source_file="res://sprites/frames/idle/1/combined/combined.0006.rdat" +dest_files=["res://.godot/imported/combined.0006.rdat-474c6d220ee0338296d6cf7329e2b93c.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/idle/1/combined/combined.0007.rdat b/sprites/frames/idle/1/combined/combined.0007.rdat new file mode 100644 index 0000000..beb2288 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0007.rdat @@ -0,0 +1 @@ +{"index":"7","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/diffuse\\model.diffuse0015.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/normal\\model.normal0015.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/specular\\model.specular0015.png"} \ No newline at end of file diff --git a/sprites/frames/idle/1/combined/combined.0007.rdat.import b/sprites/frames/idle/1/combined/combined.0007.rdat.import new file mode 100644 index 0000000..01b1159 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0007.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://i62b4lsu7ycc" +path="res://.godot/imported/combined.0007.rdat-79b3f0f62be9f02445d54ff7086f2c34.tres" + +[deps] + +source_file="res://sprites/frames/idle/1/combined/combined.0007.rdat" +dest_files=["res://.godot/imported/combined.0007.rdat-79b3f0f62be9f02445d54ff7086f2c34.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/idle/1/combined/combined.0008.rdat b/sprites/frames/idle/1/combined/combined.0008.rdat new file mode 100644 index 0000000..e15856e --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0008.rdat @@ -0,0 +1 @@ +{"index":"8","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/diffuse\\model.diffuse0017.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/normal\\model.normal0017.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/specular\\model.specular0017.png"} \ No newline at end of file diff --git a/sprites/frames/idle/1/combined/combined.0008.rdat.import b/sprites/frames/idle/1/combined/combined.0008.rdat.import new file mode 100644 index 0000000..499d8ae --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0008.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://boykrlwagl67p" +path="res://.godot/imported/combined.0008.rdat-48cc42fd01ea5d58f700bc3520c3eb50.tres" + +[deps] + +source_file="res://sprites/frames/idle/1/combined/combined.0008.rdat" +dest_files=["res://.godot/imported/combined.0008.rdat-48cc42fd01ea5d58f700bc3520c3eb50.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/idle/1/combined/combined.0009.rdat b/sprites/frames/idle/1/combined/combined.0009.rdat new file mode 100644 index 0000000..d017490 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0009.rdat @@ -0,0 +1 @@ +{"index":"9","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/diffuse\\model.diffuse0019.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/normal\\model.normal0019.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/specular\\model.specular0019.png"} \ No newline at end of file diff --git a/sprites/frames/idle/1/combined/combined.0009.rdat.import b/sprites/frames/idle/1/combined/combined.0009.rdat.import new file mode 100644 index 0000000..2b403d4 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0009.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://cf1hkpuxa7blu" +path="res://.godot/imported/combined.0009.rdat-c16a6e9d2f358411093a38e0c82981a4.tres" + +[deps] + +source_file="res://sprites/frames/idle/1/combined/combined.0009.rdat" +dest_files=["res://.godot/imported/combined.0009.rdat-c16a6e9d2f358411093a38e0c82981a4.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/idle/1/combined/combined.0010.rdat b/sprites/frames/idle/1/combined/combined.0010.rdat new file mode 100644 index 0000000..faa1dea --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0010.rdat @@ -0,0 +1 @@ +{"index":"10","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/diffuse\\model.diffuse0021.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/normal\\model.normal0021.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/idle/1/specular\\model.specular0021.png"} \ No newline at end of file diff --git a/sprites/frames/idle/1/combined/combined.0010.rdat.import b/sprites/frames/idle/1/combined/combined.0010.rdat.import new file mode 100644 index 0000000..e728377 --- /dev/null +++ b/sprites/frames/idle/1/combined/combined.0010.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://dgbpqbxp7l2ek" +path="res://.godot/imported/combined.0010.rdat-aa121eeaaac8ebf4de70a63ba3aedae8.tres" + +[deps] + +source_file="res://sprites/frames/idle/1/combined/combined.0010.rdat" +dest_files=["res://.godot/imported/combined.0010.rdat-aa121eeaaac8ebf4de70a63ba3aedae8.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/idle/1/diffuse/model.diffuse.png b/sprites/frames/idle/1/diffuse/model.diffuse.png new file mode 100644 index 0000000..2823f93 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse.png.import b/sprites/frames/idle/1/diffuse/model.diffuse.png.import new file mode 100644 index 0000000..261b5ad --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6ci7gcwcnjoh" +path="res://.godot/imported/model.diffuse.png-46c80d4bdc19864b194437056a78be46.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse.png" +dest_files=["res://.godot/imported/model.diffuse.png-46c80d4bdc19864b194437056a78be46.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0001.png b/sprites/frames/idle/1/diffuse/model.diffuse0001.png new file mode 100644 index 0000000..77b43e7 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0001.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0001.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0001.png.import new file mode 100644 index 0000000..58a89c7 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0001.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b5582cq2ae4jn" +path="res://.godot/imported/model.diffuse0001.png-04151142b96082e71e240c828fcf6149.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0001.png" +dest_files=["res://.godot/imported/model.diffuse0001.png-04151142b96082e71e240c828fcf6149.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0003.png b/sprites/frames/idle/1/diffuse/model.diffuse0003.png new file mode 100644 index 0000000..f036dc3 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0003.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0003.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0003.png.import new file mode 100644 index 0000000..cf8c92d --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0003.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cvk22vfhjbckd" +path="res://.godot/imported/model.diffuse0003.png-334a2804d0297c9fdee5171c062881e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0003.png" +dest_files=["res://.godot/imported/model.diffuse0003.png-334a2804d0297c9fdee5171c062881e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0005.png b/sprites/frames/idle/1/diffuse/model.diffuse0005.png new file mode 100644 index 0000000..81aee19 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0005.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0005.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0005.png.import new file mode 100644 index 0000000..6543bd6 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0005.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddte6o5hbwvkq" +path="res://.godot/imported/model.diffuse0005.png-cceb54b26ca7741dfc238594ef351ad6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0005.png" +dest_files=["res://.godot/imported/model.diffuse0005.png-cceb54b26ca7741dfc238594ef351ad6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0007.png b/sprites/frames/idle/1/diffuse/model.diffuse0007.png new file mode 100644 index 0000000..734edfa Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0007.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0007.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0007.png.import new file mode 100644 index 0000000..b2f7269 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0007.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bljn6t6han43x" +path="res://.godot/imported/model.diffuse0007.png-6a85688cc79d42a4e70252af7bf96e61.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0007.png" +dest_files=["res://.godot/imported/model.diffuse0007.png-6a85688cc79d42a4e70252af7bf96e61.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0009.png b/sprites/frames/idle/1/diffuse/model.diffuse0009.png new file mode 100644 index 0000000..0e7c7f0 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0009.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0009.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0009.png.import new file mode 100644 index 0000000..bfd025b --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0009.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bs3u0t16sdi8c" +path="res://.godot/imported/model.diffuse0009.png-4a52c184ae555003c0eea3d28450c454.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0009.png" +dest_files=["res://.godot/imported/model.diffuse0009.png-4a52c184ae555003c0eea3d28450c454.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0010.png b/sprites/frames/idle/1/diffuse/model.diffuse0010.png new file mode 100644 index 0000000..79c5db9 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0010.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0010.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0010.png.import new file mode 100644 index 0000000..a3513c9 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0010.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxsf6f2mv6767" +path="res://.godot/imported/model.diffuse0010.png-d68864c22ab7fa99f8655cf977944772.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0010.png" +dest_files=["res://.godot/imported/model.diffuse0010.png-d68864c22ab7fa99f8655cf977944772.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0011.png b/sprites/frames/idle/1/diffuse/model.diffuse0011.png new file mode 100644 index 0000000..b2eb78b Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0011.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0011.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0011.png.import new file mode 100644 index 0000000..655db15 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0011.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcevruurn2iuf" +path="res://.godot/imported/model.diffuse0011.png-de63e96cedb3080616aafbbe9d0bd087.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0011.png" +dest_files=["res://.godot/imported/model.diffuse0011.png-de63e96cedb3080616aafbbe9d0bd087.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0012.png b/sprites/frames/idle/1/diffuse/model.diffuse0012.png new file mode 100644 index 0000000..1ebe1d3 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0012.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0012.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0012.png.import new file mode 100644 index 0000000..96772e2 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0012.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iqmykpvh7nl" +path="res://.godot/imported/model.diffuse0012.png-58809eea13ff56acde2dc08069384538.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0012.png" +dest_files=["res://.godot/imported/model.diffuse0012.png-58809eea13ff56acde2dc08069384538.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0013.png b/sprites/frames/idle/1/diffuse/model.diffuse0013.png new file mode 100644 index 0000000..4a4ebca Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0013.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0013.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0013.png.import new file mode 100644 index 0000000..1fc73db --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0013.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfray30vf5xx0" +path="res://.godot/imported/model.diffuse0013.png-55ac27df14bf5bf4c3f75cf396a017a8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0013.png" +dest_files=["res://.godot/imported/model.diffuse0013.png-55ac27df14bf5bf4c3f75cf396a017a8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0014.png b/sprites/frames/idle/1/diffuse/model.diffuse0014.png new file mode 100644 index 0000000..0773387 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0014.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0014.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0014.png.import new file mode 100644 index 0000000..27cb1c7 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0014.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo70nuvx71bt8" +path="res://.godot/imported/model.diffuse0014.png-6b30cdee1192b2b61f3e215305ec0349.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0014.png" +dest_files=["res://.godot/imported/model.diffuse0014.png-6b30cdee1192b2b61f3e215305ec0349.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0015.png b/sprites/frames/idle/1/diffuse/model.diffuse0015.png new file mode 100644 index 0000000..f21df77 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0015.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0015.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0015.png.import new file mode 100644 index 0000000..cf28151 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0015.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyxfyq38sgdyx" +path="res://.godot/imported/model.diffuse0015.png-4716b6cc891c907422e4b4cdb1a772cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0015.png" +dest_files=["res://.godot/imported/model.diffuse0015.png-4716b6cc891c907422e4b4cdb1a772cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0016.png b/sprites/frames/idle/1/diffuse/model.diffuse0016.png new file mode 100644 index 0000000..76a43bc Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0016.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0016.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0016.png.import new file mode 100644 index 0000000..64ee3ba --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0016.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0y8t0t2gdjyg" +path="res://.godot/imported/model.diffuse0016.png-7fc2eaa8f7ae770c5b59a05f2942315b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0016.png" +dest_files=["res://.godot/imported/model.diffuse0016.png-7fc2eaa8f7ae770c5b59a05f2942315b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0017.png b/sprites/frames/idle/1/diffuse/model.diffuse0017.png new file mode 100644 index 0000000..b09f28f Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0017.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0017.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0017.png.import new file mode 100644 index 0000000..9624971 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0017.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://byijcubl6ianj" +path="res://.godot/imported/model.diffuse0017.png-d56173888eb0c5e16b78e8630d7482a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0017.png" +dest_files=["res://.godot/imported/model.diffuse0017.png-d56173888eb0c5e16b78e8630d7482a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0018.png b/sprites/frames/idle/1/diffuse/model.diffuse0018.png new file mode 100644 index 0000000..9e380f4 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0018.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0018.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0018.png.import new file mode 100644 index 0000000..7d41537 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0018.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qnjs3yhwkn5b" +path="res://.godot/imported/model.diffuse0018.png-548566c350d05f1ba3b3565eb681cdc9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0018.png" +dest_files=["res://.godot/imported/model.diffuse0018.png-548566c350d05f1ba3b3565eb681cdc9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0019.png b/sprites/frames/idle/1/diffuse/model.diffuse0019.png new file mode 100644 index 0000000..807ae51 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0019.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0019.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0019.png.import new file mode 100644 index 0000000..22f1a4e --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0019.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbr2arxx7ymqb" +path="res://.godot/imported/model.diffuse0019.png-2dda93d9d59fc4d362c3f00a21cd91d7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0019.png" +dest_files=["res://.godot/imported/model.diffuse0019.png-2dda93d9d59fc4d362c3f00a21cd91d7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0020.png b/sprites/frames/idle/1/diffuse/model.diffuse0020.png new file mode 100644 index 0000000..d03df86 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0020.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0020.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0020.png.import new file mode 100644 index 0000000..e5f0397 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0020.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ti82sisgful3" +path="res://.godot/imported/model.diffuse0020.png-8582cb099636199236e2726c677dec26.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0020.png" +dest_files=["res://.godot/imported/model.diffuse0020.png-8582cb099636199236e2726c677dec26.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0021.png b/sprites/frames/idle/1/diffuse/model.diffuse0021.png new file mode 100644 index 0000000..117b96a Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0021.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0021.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0021.png.import new file mode 100644 index 0000000..425df8a --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0021.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s02nc1rtaa5a" +path="res://.godot/imported/model.diffuse0021.png-9531b1ebb5c6942755d867c614654707.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0021.png" +dest_files=["res://.godot/imported/model.diffuse0021.png-9531b1ebb5c6942755d867c614654707.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0022.png b/sprites/frames/idle/1/diffuse/model.diffuse0022.png new file mode 100644 index 0000000..4b7d65e Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0022.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0022.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0022.png.import new file mode 100644 index 0000000..80f0b80 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0022.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cklkv7lu4vcqn" +path="res://.godot/imported/model.diffuse0022.png-0683ba75339ea9febc5b2fc6410d5692.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0022.png" +dest_files=["res://.godot/imported/model.diffuse0022.png-0683ba75339ea9febc5b2fc6410d5692.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0024.png b/sprites/frames/idle/1/diffuse/model.diffuse0024.png new file mode 100644 index 0000000..86ec902 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0024.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0024.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0024.png.import new file mode 100644 index 0000000..78305fd --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0024.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw1iwk36c18nk" +path="res://.godot/imported/model.diffuse0024.png-f3ef3a980a40e800f885303c64c1d789.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0024.png" +dest_files=["res://.godot/imported/model.diffuse0024.png-f3ef3a980a40e800f885303c64c1d789.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0026.png b/sprites/frames/idle/1/diffuse/model.diffuse0026.png new file mode 100644 index 0000000..4e9779d Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0026.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0026.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0026.png.import new file mode 100644 index 0000000..af8a0d4 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0026.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8ukyvxfkk00v" +path="res://.godot/imported/model.diffuse0026.png-b9d5e0f0929c749340ee9030fa8d1297.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0026.png" +dest_files=["res://.godot/imported/model.diffuse0026.png-b9d5e0f0929c749340ee9030fa8d1297.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0028.png b/sprites/frames/idle/1/diffuse/model.diffuse0028.png new file mode 100644 index 0000000..02f816c Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0028.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0028.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0028.png.import new file mode 100644 index 0000000..aaa237e --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0028.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bgiamfnsge3e2" +path="res://.godot/imported/model.diffuse0028.png-ce2d95b71860644af4ba2998a7073889.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0028.png" +dest_files=["res://.godot/imported/model.diffuse0028.png-ce2d95b71860644af4ba2998a7073889.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0030.png b/sprites/frames/idle/1/diffuse/model.diffuse0030.png new file mode 100644 index 0000000..4db4e89 Binary files /dev/null and b/sprites/frames/idle/1/diffuse/model.diffuse0030.png differ diff --git a/sprites/frames/idle/1/diffuse/model.diffuse0030.png.import b/sprites/frames/idle/1/diffuse/model.diffuse0030.png.import new file mode 100644 index 0000000..bc4e3d2 --- /dev/null +++ b/sprites/frames/idle/1/diffuse/model.diffuse0030.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqodnqgij3vx" +path="res://.godot/imported/model.diffuse0030.png-177f78c1921b7f98d57406c5307e6263.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/diffuse/model.diffuse0030.png" +dest_files=["res://.godot/imported/model.diffuse0030.png-177f78c1921b7f98d57406c5307e6263.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal.png b/sprites/frames/idle/1/normal/model.normal.png new file mode 100644 index 0000000..c9dc311 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal.png differ diff --git a/sprites/frames/idle/1/normal/model.normal.png.import b/sprites/frames/idle/1/normal/model.normal.png.import new file mode 100644 index 0000000..8e20b6b --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bpnfk373giu0u" +path="res://.godot/imported/model.normal.png-9e65e2266947766fb61aa46ad83007a6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal.png" +dest_files=["res://.godot/imported/model.normal.png-9e65e2266947766fb61aa46ad83007a6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0001.png b/sprites/frames/idle/1/normal/model.normal0001.png new file mode 100644 index 0000000..e42b360 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0001.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0001.png.import b/sprites/frames/idle/1/normal/model.normal0001.png.import new file mode 100644 index 0000000..c06018a --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0001.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7bfdx8xacj2f" +path="res://.godot/imported/model.normal0001.png-9db7d3ce211bc792cc15e160cbd1016c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0001.png" +dest_files=["res://.godot/imported/model.normal0001.png-9db7d3ce211bc792cc15e160cbd1016c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0003.png b/sprites/frames/idle/1/normal/model.normal0003.png new file mode 100644 index 0000000..3a1ba92 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0003.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0003.png.import b/sprites/frames/idle/1/normal/model.normal0003.png.import new file mode 100644 index 0000000..90f9e03 --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0003.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfm6v1y3ddgbh" +path="res://.godot/imported/model.normal0003.png-0e2592c502b730ef986f69e77ad284b2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0003.png" +dest_files=["res://.godot/imported/model.normal0003.png-0e2592c502b730ef986f69e77ad284b2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0005.png b/sprites/frames/idle/1/normal/model.normal0005.png new file mode 100644 index 0000000..06102c7 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0005.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0005.png.import b/sprites/frames/idle/1/normal/model.normal0005.png.import new file mode 100644 index 0000000..39e2c7f --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0005.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg8ylimf1dhi3" +path="res://.godot/imported/model.normal0005.png-76a81270e30d41bd738e2dc6499c6515.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0005.png" +dest_files=["res://.godot/imported/model.normal0005.png-76a81270e30d41bd738e2dc6499c6515.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0007.png b/sprites/frames/idle/1/normal/model.normal0007.png new file mode 100644 index 0000000..56e69dc Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0007.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0007.png.import b/sprites/frames/idle/1/normal/model.normal0007.png.import new file mode 100644 index 0000000..66ec1ad --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0007.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://siar5i66ia2h" +path="res://.godot/imported/model.normal0007.png-9b25df43bdabd171a69cab7120f4a54b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0007.png" +dest_files=["res://.godot/imported/model.normal0007.png-9b25df43bdabd171a69cab7120f4a54b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0009.png b/sprites/frames/idle/1/normal/model.normal0009.png new file mode 100644 index 0000000..0d37e56 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0009.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0009.png.import b/sprites/frames/idle/1/normal/model.normal0009.png.import new file mode 100644 index 0000000..eff0a84 --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0009.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4b5cxxt0xt1j" +path="res://.godot/imported/model.normal0009.png-30b6dc119a626c15ab59b4a1f8fbf487.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0009.png" +dest_files=["res://.godot/imported/model.normal0009.png-30b6dc119a626c15ab59b4a1f8fbf487.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0010.png b/sprites/frames/idle/1/normal/model.normal0010.png new file mode 100644 index 0000000..1e7d7c5 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0010.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0010.png.import b/sprites/frames/idle/1/normal/model.normal0010.png.import new file mode 100644 index 0000000..38585b1 --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0010.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj2vsx0ceckqp" +path="res://.godot/imported/model.normal0010.png-959cd2990dbcaf8804c75c8e9104e26e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0010.png" +dest_files=["res://.godot/imported/model.normal0010.png-959cd2990dbcaf8804c75c8e9104e26e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0011.png b/sprites/frames/idle/1/normal/model.normal0011.png new file mode 100644 index 0000000..35143c3 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0011.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0011.png.import b/sprites/frames/idle/1/normal/model.normal0011.png.import new file mode 100644 index 0000000..7f800e9 --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0011.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://6pial34uu161" +path="res://.godot/imported/model.normal0011.png-83ae4c0cefbde0fd0b70fec9f114984f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0011.png" +dest_files=["res://.godot/imported/model.normal0011.png-83ae4c0cefbde0fd0b70fec9f114984f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0012.png b/sprites/frames/idle/1/normal/model.normal0012.png new file mode 100644 index 0000000..6f8261b Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0012.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0012.png.import b/sprites/frames/idle/1/normal/model.normal0012.png.import new file mode 100644 index 0000000..4eb37b0 --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0012.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbjgrm7gmahb2" +path="res://.godot/imported/model.normal0012.png-7e055311c9b7d2c9f4a84063bb825428.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0012.png" +dest_files=["res://.godot/imported/model.normal0012.png-7e055311c9b7d2c9f4a84063bb825428.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0013.png b/sprites/frames/idle/1/normal/model.normal0013.png new file mode 100644 index 0000000..76235a4 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0013.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0013.png.import b/sprites/frames/idle/1/normal/model.normal0013.png.import new file mode 100644 index 0000000..928b96e --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0013.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d2bos2mm87vp4" +path="res://.godot/imported/model.normal0013.png-ff4c4e36c5f1d8191a62618180e85409.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0013.png" +dest_files=["res://.godot/imported/model.normal0013.png-ff4c4e36c5f1d8191a62618180e85409.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0014.png b/sprites/frames/idle/1/normal/model.normal0014.png new file mode 100644 index 0000000..dd6a6f0 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0014.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0014.png.import b/sprites/frames/idle/1/normal/model.normal0014.png.import new file mode 100644 index 0000000..7d6f297 --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0014.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bog3ayrnadn3b" +path="res://.godot/imported/model.normal0014.png-3254f0def4fc7753f52473ce62f74585.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0014.png" +dest_files=["res://.godot/imported/model.normal0014.png-3254f0def4fc7753f52473ce62f74585.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0015.png b/sprites/frames/idle/1/normal/model.normal0015.png new file mode 100644 index 0000000..2d9e796 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0015.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0015.png.import b/sprites/frames/idle/1/normal/model.normal0015.png.import new file mode 100644 index 0000000..68c7f95 --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0015.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b48gafu28ssq5" +path="res://.godot/imported/model.normal0015.png-c0b5a135434b3f236ba26300b1d9d1e6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0015.png" +dest_files=["res://.godot/imported/model.normal0015.png-c0b5a135434b3f236ba26300b1d9d1e6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0016.png b/sprites/frames/idle/1/normal/model.normal0016.png new file mode 100644 index 0000000..f981a22 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0016.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0016.png.import b/sprites/frames/idle/1/normal/model.normal0016.png.import new file mode 100644 index 0000000..fc0dc4f --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0016.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nlpoffavhdk" +path="res://.godot/imported/model.normal0016.png-36a5ad301b62ca41bae97b1b3a456fb9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0016.png" +dest_files=["res://.godot/imported/model.normal0016.png-36a5ad301b62ca41bae97b1b3a456fb9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0017.png b/sprites/frames/idle/1/normal/model.normal0017.png new file mode 100644 index 0000000..f8557f9 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0017.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0017.png.import b/sprites/frames/idle/1/normal/model.normal0017.png.import new file mode 100644 index 0000000..c72419e --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0017.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfxssced7qqkb" +path="res://.godot/imported/model.normal0017.png-d30d2dc0437eba2e94aa472e9a7a176a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0017.png" +dest_files=["res://.godot/imported/model.normal0017.png-d30d2dc0437eba2e94aa472e9a7a176a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0018.png b/sprites/frames/idle/1/normal/model.normal0018.png new file mode 100644 index 0000000..b10e557 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0018.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0018.png.import b/sprites/frames/idle/1/normal/model.normal0018.png.import new file mode 100644 index 0000000..269d299 --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0018.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cjfodocjml4t4" +path="res://.godot/imported/model.normal0018.png-bfc3d81565453fa6a19a6068fdf5ef63.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0018.png" +dest_files=["res://.godot/imported/model.normal0018.png-bfc3d81565453fa6a19a6068fdf5ef63.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0019.png b/sprites/frames/idle/1/normal/model.normal0019.png new file mode 100644 index 0000000..1020c35 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0019.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0019.png.import b/sprites/frames/idle/1/normal/model.normal0019.png.import new file mode 100644 index 0000000..72d9853 --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0019.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtlw2hwqen37v" +path="res://.godot/imported/model.normal0019.png-96403c5f5ac40eec2f3b53611c5a80b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0019.png" +dest_files=["res://.godot/imported/model.normal0019.png-96403c5f5ac40eec2f3b53611c5a80b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0020.png b/sprites/frames/idle/1/normal/model.normal0020.png new file mode 100644 index 0000000..9b1e52a Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0020.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0020.png.import b/sprites/frames/idle/1/normal/model.normal0020.png.import new file mode 100644 index 0000000..871e7cd --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0020.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://vr0glfwpej85" +path="res://.godot/imported/model.normal0020.png-c100621bb39b23735d6ac71afc0d198d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0020.png" +dest_files=["res://.godot/imported/model.normal0020.png-c100621bb39b23735d6ac71afc0d198d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0021.png b/sprites/frames/idle/1/normal/model.normal0021.png new file mode 100644 index 0000000..350f51d Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0021.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0021.png.import b/sprites/frames/idle/1/normal/model.normal0021.png.import new file mode 100644 index 0000000..4ee1b26 --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0021.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cnmsvn0wm8vsi" +path="res://.godot/imported/model.normal0021.png-1057ab94bd831bc0a22f6efbb1b0916c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0021.png" +dest_files=["res://.godot/imported/model.normal0021.png-1057ab94bd831bc0a22f6efbb1b0916c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0022.png b/sprites/frames/idle/1/normal/model.normal0022.png new file mode 100644 index 0000000..5a1f3aa Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0022.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0022.png.import b/sprites/frames/idle/1/normal/model.normal0022.png.import new file mode 100644 index 0000000..1293478 --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0022.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dui3c68pkpcll" +path="res://.godot/imported/model.normal0022.png-3676b7bf6c73d0676291d20c4998c218.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0022.png" +dest_files=["res://.godot/imported/model.normal0022.png-3676b7bf6c73d0676291d20c4998c218.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0024.png b/sprites/frames/idle/1/normal/model.normal0024.png new file mode 100644 index 0000000..7cf5179 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0024.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0024.png.import b/sprites/frames/idle/1/normal/model.normal0024.png.import new file mode 100644 index 0000000..2ad328b --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0024.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hsgb2df4cdvp" +path="res://.godot/imported/model.normal0024.png-244ca3737fe797050765f9c2eadc048f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0024.png" +dest_files=["res://.godot/imported/model.normal0024.png-244ca3737fe797050765f9c2eadc048f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0026.png b/sprites/frames/idle/1/normal/model.normal0026.png new file mode 100644 index 0000000..a65cac6 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0026.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0026.png.import b/sprites/frames/idle/1/normal/model.normal0026.png.import new file mode 100644 index 0000000..7bd872c --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0026.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dddkv5460omp4" +path="res://.godot/imported/model.normal0026.png-91361d7cf3f10088321f49d557453842.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0026.png" +dest_files=["res://.godot/imported/model.normal0026.png-91361d7cf3f10088321f49d557453842.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0028.png b/sprites/frames/idle/1/normal/model.normal0028.png new file mode 100644 index 0000000..65f0cbd Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0028.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0028.png.import b/sprites/frames/idle/1/normal/model.normal0028.png.import new file mode 100644 index 0000000..894f4fa --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0028.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dor38jjlukjli" +path="res://.godot/imported/model.normal0028.png-1ca9ac9eb9aa7a460773ea22b4c36449.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0028.png" +dest_files=["res://.godot/imported/model.normal0028.png-1ca9ac9eb9aa7a460773ea22b4c36449.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/normal/model.normal0030.png b/sprites/frames/idle/1/normal/model.normal0030.png new file mode 100644 index 0000000..6f25c39 Binary files /dev/null and b/sprites/frames/idle/1/normal/model.normal0030.png differ diff --git a/sprites/frames/idle/1/normal/model.normal0030.png.import b/sprites/frames/idle/1/normal/model.normal0030.png.import new file mode 100644 index 0000000..84a6703 --- /dev/null +++ b/sprites/frames/idle/1/normal/model.normal0030.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3xlhb2cyprw8" +path="res://.godot/imported/model.normal0030.png-1eebc2605c0068b4857483fcef55fefa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/normal/model.normal0030.png" +dest_files=["res://.godot/imported/model.normal0030.png-1eebc2605c0068b4857483fcef55fefa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular.png b/sprites/frames/idle/1/specular/model.specular.png new file mode 100644 index 0000000..d0101b6 Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular.png differ diff --git a/sprites/frames/idle/1/specular/model.specular.png.import b/sprites/frames/idle/1/specular/model.specular.png.import new file mode 100644 index 0000000..5a1316f --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnijg0niqxi55" +path="res://.godot/imported/model.specular.png-30eb8135eca50f4ea116b1aaf3bc6fa9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular.png" +dest_files=["res://.godot/imported/model.specular.png-30eb8135eca50f4ea116b1aaf3bc6fa9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0001.png b/sprites/frames/idle/1/specular/model.specular0001.png new file mode 100644 index 0000000..d33f749 Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0001.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0001.png.import b/sprites/frames/idle/1/specular/model.specular0001.png.import new file mode 100644 index 0000000..49305ca --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0001.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlkoubebekfah" +path="res://.godot/imported/model.specular0001.png-ef9c58a2f48ac180016377b76f1c65eb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0001.png" +dest_files=["res://.godot/imported/model.specular0001.png-ef9c58a2f48ac180016377b76f1c65eb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0003.png b/sprites/frames/idle/1/specular/model.specular0003.png new file mode 100644 index 0000000..a17c775 Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0003.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0003.png.import b/sprites/frames/idle/1/specular/model.specular0003.png.import new file mode 100644 index 0000000..98ebd3e --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0003.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwm2jmkrjvkua" +path="res://.godot/imported/model.specular0003.png-c26aae12fa899030749396c59087b490.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0003.png" +dest_files=["res://.godot/imported/model.specular0003.png-c26aae12fa899030749396c59087b490.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0005.png b/sprites/frames/idle/1/specular/model.specular0005.png new file mode 100644 index 0000000..0ec9d8e Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0005.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0005.png.import b/sprites/frames/idle/1/specular/model.specular0005.png.import new file mode 100644 index 0000000..7102a77 --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0005.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b72b5pxnxvimk" +path="res://.godot/imported/model.specular0005.png-3993aa1af21fd03f7b1171af9270cf79.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0005.png" +dest_files=["res://.godot/imported/model.specular0005.png-3993aa1af21fd03f7b1171af9270cf79.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0007.png b/sprites/frames/idle/1/specular/model.specular0007.png new file mode 100644 index 0000000..7f93b1e Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0007.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0007.png.import b/sprites/frames/idle/1/specular/model.specular0007.png.import new file mode 100644 index 0000000..0b06a74 --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0007.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy2xajgi4bwyw" +path="res://.godot/imported/model.specular0007.png-1db40fea51d1c5854a2ccef8bf0e07c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0007.png" +dest_files=["res://.godot/imported/model.specular0007.png-1db40fea51d1c5854a2ccef8bf0e07c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0009.png b/sprites/frames/idle/1/specular/model.specular0009.png new file mode 100644 index 0000000..e372e5c Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0009.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0009.png.import b/sprites/frames/idle/1/specular/model.specular0009.png.import new file mode 100644 index 0000000..1f35eee --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0009.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fywkmcc4qjpj" +path="res://.godot/imported/model.specular0009.png-93629da23ff73605a1318b7dc46afcd7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0009.png" +dest_files=["res://.godot/imported/model.specular0009.png-93629da23ff73605a1318b7dc46afcd7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0010.png b/sprites/frames/idle/1/specular/model.specular0010.png new file mode 100644 index 0000000..c920e38 Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0010.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0010.png.import b/sprites/frames/idle/1/specular/model.specular0010.png.import new file mode 100644 index 0000000..408df04 --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0010.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceb3npmsd1a0s" +path="res://.godot/imported/model.specular0010.png-c532b7622efde6caf19bee4e788bd30d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0010.png" +dest_files=["res://.godot/imported/model.specular0010.png-c532b7622efde6caf19bee4e788bd30d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0011.png b/sprites/frames/idle/1/specular/model.specular0011.png new file mode 100644 index 0000000..164920d Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0011.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0011.png.import b/sprites/frames/idle/1/specular/model.specular0011.png.import new file mode 100644 index 0000000..38f680e --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0011.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5aldwxfw0cc" +path="res://.godot/imported/model.specular0011.png-39ee602b761ce0924f6aec892060ede1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0011.png" +dest_files=["res://.godot/imported/model.specular0011.png-39ee602b761ce0924f6aec892060ede1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0012.png b/sprites/frames/idle/1/specular/model.specular0012.png new file mode 100644 index 0000000..3460282 Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0012.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0012.png.import b/sprites/frames/idle/1/specular/model.specular0012.png.import new file mode 100644 index 0000000..7d3110b --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0012.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://caxrps63ynbjj" +path="res://.godot/imported/model.specular0012.png-00bf69ed30c3274f4931d71f7047aede.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0012.png" +dest_files=["res://.godot/imported/model.specular0012.png-00bf69ed30c3274f4931d71f7047aede.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0013.png b/sprites/frames/idle/1/specular/model.specular0013.png new file mode 100644 index 0000000..e773b4e Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0013.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0013.png.import b/sprites/frames/idle/1/specular/model.specular0013.png.import new file mode 100644 index 0000000..8b43ece --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0013.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blbx5uh8nu0xt" +path="res://.godot/imported/model.specular0013.png-e515dece5a91e8088c3d438d86c540f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0013.png" +dest_files=["res://.godot/imported/model.specular0013.png-e515dece5a91e8088c3d438d86c540f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0014.png b/sprites/frames/idle/1/specular/model.specular0014.png new file mode 100644 index 0000000..b2e4659 Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0014.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0014.png.import b/sprites/frames/idle/1/specular/model.specular0014.png.import new file mode 100644 index 0000000..9d7bf97 --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0014.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b46r7nduadon2" +path="res://.godot/imported/model.specular0014.png-7c80736df4bec584447f22fc0af4c746.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0014.png" +dest_files=["res://.godot/imported/model.specular0014.png-7c80736df4bec584447f22fc0af4c746.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0015.png b/sprites/frames/idle/1/specular/model.specular0015.png new file mode 100644 index 0000000..7b1a8c0 Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0015.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0015.png.import b/sprites/frames/idle/1/specular/model.specular0015.png.import new file mode 100644 index 0000000..a82b648 --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0015.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cn8g3s054135i" +path="res://.godot/imported/model.specular0015.png-437b9a7090ccf70c19e57562c0d2056a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0015.png" +dest_files=["res://.godot/imported/model.specular0015.png-437b9a7090ccf70c19e57562c0d2056a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0016.png b/sprites/frames/idle/1/specular/model.specular0016.png new file mode 100644 index 0000000..1c7826a Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0016.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0016.png.import b/sprites/frames/idle/1/specular/model.specular0016.png.import new file mode 100644 index 0000000..e2e66d6 --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0016.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://birrskt86p1xp" +path="res://.godot/imported/model.specular0016.png-b8797903be17c970a16ef6ebe3456f55.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0016.png" +dest_files=["res://.godot/imported/model.specular0016.png-b8797903be17c970a16ef6ebe3456f55.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0017.png b/sprites/frames/idle/1/specular/model.specular0017.png new file mode 100644 index 0000000..dc295c8 Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0017.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0017.png.import b/sprites/frames/idle/1/specular/model.specular0017.png.import new file mode 100644 index 0000000..e1c2b82 --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0017.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dudlcrqx57ysx" +path="res://.godot/imported/model.specular0017.png-c70db8fde3ce40b520c780fbef9e806b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0017.png" +dest_files=["res://.godot/imported/model.specular0017.png-c70db8fde3ce40b520c780fbef9e806b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0018.png b/sprites/frames/idle/1/specular/model.specular0018.png new file mode 100644 index 0000000..7c50d3d Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0018.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0018.png.import b/sprites/frames/idle/1/specular/model.specular0018.png.import new file mode 100644 index 0000000..73d831a --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0018.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddrwtgh7hwt4w" +path="res://.godot/imported/model.specular0018.png-bb6f1aaf9158913c152290b98ed8e762.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0018.png" +dest_files=["res://.godot/imported/model.specular0018.png-bb6f1aaf9158913c152290b98ed8e762.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0019.png b/sprites/frames/idle/1/specular/model.specular0019.png new file mode 100644 index 0000000..15f084f Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0019.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0019.png.import b/sprites/frames/idle/1/specular/model.specular0019.png.import new file mode 100644 index 0000000..1fb3eba --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0019.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2a43jb8mhhqm" +path="res://.godot/imported/model.specular0019.png-28f49a7d744686f276d2de38dac105f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0019.png" +dest_files=["res://.godot/imported/model.specular0019.png-28f49a7d744686f276d2de38dac105f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0020.png b/sprites/frames/idle/1/specular/model.specular0020.png new file mode 100644 index 0000000..f6ab438 Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0020.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0020.png.import b/sprites/frames/idle/1/specular/model.specular0020.png.import new file mode 100644 index 0000000..4db8196 --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0020.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://fbmovmgun7jk" +path="res://.godot/imported/model.specular0020.png-805a795d5f135d9eddd1e9e4718858b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0020.png" +dest_files=["res://.godot/imported/model.specular0020.png-805a795d5f135d9eddd1e9e4718858b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0021.png b/sprites/frames/idle/1/specular/model.specular0021.png new file mode 100644 index 0000000..6b8af70 Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0021.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0021.png.import b/sprites/frames/idle/1/specular/model.specular0021.png.import new file mode 100644 index 0000000..2591866 --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0021.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ihr6vpxtxncr" +path="res://.godot/imported/model.specular0021.png-b389f4d94052d8e580290608d6841ed1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0021.png" +dest_files=["res://.godot/imported/model.specular0021.png-b389f4d94052d8e580290608d6841ed1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0022.png b/sprites/frames/idle/1/specular/model.specular0022.png new file mode 100644 index 0000000..7103bfa Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0022.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0022.png.import b/sprites/frames/idle/1/specular/model.specular0022.png.import new file mode 100644 index 0000000..1279a74 --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0022.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://0y5rk77vubq3" +path="res://.godot/imported/model.specular0022.png-9b8816aa6644c883aa153919d06f8fb5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0022.png" +dest_files=["res://.godot/imported/model.specular0022.png-9b8816aa6644c883aa153919d06f8fb5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0024.png b/sprites/frames/idle/1/specular/model.specular0024.png new file mode 100644 index 0000000..b6e1c5f Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0024.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0024.png.import b/sprites/frames/idle/1/specular/model.specular0024.png.import new file mode 100644 index 0000000..2d346e0 --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0024.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c71b1qay0arqk" +path="res://.godot/imported/model.specular0024.png-20498c61aa89ec165aa2dae2fa8338e3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0024.png" +dest_files=["res://.godot/imported/model.specular0024.png-20498c61aa89ec165aa2dae2fa8338e3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0026.png b/sprites/frames/idle/1/specular/model.specular0026.png new file mode 100644 index 0000000..4c3799c Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0026.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0026.png.import b/sprites/frames/idle/1/specular/model.specular0026.png.import new file mode 100644 index 0000000..69b69ad --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0026.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://2v0ynt41r3bk" +path="res://.godot/imported/model.specular0026.png-4198ee004b70a16da9800961cb8ce661.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0026.png" +dest_files=["res://.godot/imported/model.specular0026.png-4198ee004b70a16da9800961cb8ce661.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0028.png b/sprites/frames/idle/1/specular/model.specular0028.png new file mode 100644 index 0000000..fbeb14f Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0028.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0028.png.import b/sprites/frames/idle/1/specular/model.specular0028.png.import new file mode 100644 index 0000000..e400c9a --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0028.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsp4yr4mfniet" +path="res://.godot/imported/model.specular0028.png-5e65e40dd53936ad84da66af1c33840d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0028.png" +dest_files=["res://.godot/imported/model.specular0028.png-5e65e40dd53936ad84da66af1c33840d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/idle/1/specular/model.specular0030.png b/sprites/frames/idle/1/specular/model.specular0030.png new file mode 100644 index 0000000..a464566 Binary files /dev/null and b/sprites/frames/idle/1/specular/model.specular0030.png differ diff --git a/sprites/frames/idle/1/specular/model.specular0030.png.import b/sprites/frames/idle/1/specular/model.specular0030.png.import new file mode 100644 index 0000000..71e1f79 --- /dev/null +++ b/sprites/frames/idle/1/specular/model.specular0030.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c5fs4tuuqagd1" +path="res://.godot/imported/model.specular0030.png-9e9c8b30f0810572a7c9548079af7c2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/idle/1/specular/model.specular0030.png" +dest_files=["res://.godot/imported/model.specular0030.png-9e9c8b30f0810572a7c9548079af7c2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background/Image0030.png b/sprites/frames/mm_background/Image0030.png index a93a5bd..565e24a 100644 Binary files a/sprites/frames/mm_background/Image0030.png and b/sprites/frames/mm_background/Image0030.png differ diff --git a/sprites/frames/mm_background/Image0030.png.import b/sprites/frames/mm_background/Image0030.png.import index e2e141a..3909209 100644 --- a/sprites/frames/mm_background/Image0030.png.import +++ b/sprites/frames/mm_background/Image0030.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dguixxqcuh35j" +uid="uid://eyt3vbd2qrvn" path="res://.godot/imported/Image0030.png-3dbf543beec02376dd95c2cd84d7e5c1.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0031.png b/sprites/frames/mm_background/Image0031.png index 47ee5a4..07ea641 100644 Binary files a/sprites/frames/mm_background/Image0031.png and b/sprites/frames/mm_background/Image0031.png differ diff --git a/sprites/frames/mm_background/Image0031.png.import b/sprites/frames/mm_background/Image0031.png.import index f9b9955..2593187 100644 --- a/sprites/frames/mm_background/Image0031.png.import +++ b/sprites/frames/mm_background/Image0031.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://6asdpllof6no" +uid="uid://dadl2cmxa10kl" path="res://.godot/imported/Image0031.png-6fb4b6f00cb9e3ba91ad95e90eefd476.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0032.png b/sprites/frames/mm_background/Image0032.png index 3131f7c..5fffb8a 100644 Binary files a/sprites/frames/mm_background/Image0032.png and b/sprites/frames/mm_background/Image0032.png differ diff --git a/sprites/frames/mm_background/Image0032.png.import b/sprites/frames/mm_background/Image0032.png.import index d631b73..e7403c1 100644 --- a/sprites/frames/mm_background/Image0032.png.import +++ b/sprites/frames/mm_background/Image0032.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b6f8nbqdfcpb7" +uid="uid://bdse3norikje2" path="res://.godot/imported/Image0032.png-e957927f1829e32a5b0ed297c934320b.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0033.png b/sprites/frames/mm_background/Image0033.png index 3e0c2b6..6c452f2 100644 Binary files a/sprites/frames/mm_background/Image0033.png and b/sprites/frames/mm_background/Image0033.png differ diff --git a/sprites/frames/mm_background/Image0033.png.import b/sprites/frames/mm_background/Image0033.png.import index c42afaf..4eb2a25 100644 --- a/sprites/frames/mm_background/Image0033.png.import +++ b/sprites/frames/mm_background/Image0033.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b2pwc1uthv5o5" +uid="uid://cb8sgcbtqn5cn" path="res://.godot/imported/Image0033.png-95d010a89ee9e1fe466ffc5125799c07.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0034.png b/sprites/frames/mm_background/Image0034.png index c34af6f..8db7737 100644 Binary files a/sprites/frames/mm_background/Image0034.png and b/sprites/frames/mm_background/Image0034.png differ diff --git a/sprites/frames/mm_background/Image0034.png.import b/sprites/frames/mm_background/Image0034.png.import index 8b65793..94e92cb 100644 --- a/sprites/frames/mm_background/Image0034.png.import +++ b/sprites/frames/mm_background/Image0034.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cbpeecwghw1ti" +uid="uid://crah24884csqj" path="res://.godot/imported/Image0034.png-d4a4f1e7ae5d8e991d385955839236e8.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0035.png b/sprites/frames/mm_background/Image0035.png index 9c4bd31..aaf058f 100644 Binary files a/sprites/frames/mm_background/Image0035.png and b/sprites/frames/mm_background/Image0035.png differ diff --git a/sprites/frames/mm_background/Image0035.png.import b/sprites/frames/mm_background/Image0035.png.import index 7a941bf..45e033b 100644 --- a/sprites/frames/mm_background/Image0035.png.import +++ b/sprites/frames/mm_background/Image0035.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d3y54wcu16p6v" +uid="uid://d0jod070fblfl" path="res://.godot/imported/Image0035.png-d40896039b6d1641281061cfea52523a.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0036.png b/sprites/frames/mm_background/Image0036.png index 3dcdd80..2cec476 100644 Binary files a/sprites/frames/mm_background/Image0036.png and b/sprites/frames/mm_background/Image0036.png differ diff --git a/sprites/frames/mm_background/Image0036.png.import b/sprites/frames/mm_background/Image0036.png.import index bf3f03f..1d56f9d 100644 --- a/sprites/frames/mm_background/Image0036.png.import +++ b/sprites/frames/mm_background/Image0036.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bqq1tn1h1i438" +uid="uid://bi5o5qhw410og" path="res://.godot/imported/Image0036.png-4abb694e3a9106030828e2b4fb3a46f4.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0037.png b/sprites/frames/mm_background/Image0037.png index e071939..bdac0d8 100644 Binary files a/sprites/frames/mm_background/Image0037.png and b/sprites/frames/mm_background/Image0037.png differ diff --git a/sprites/frames/mm_background/Image0037.png.import b/sprites/frames/mm_background/Image0037.png.import index 82d5ca4..000fc03 100644 --- a/sprites/frames/mm_background/Image0037.png.import +++ b/sprites/frames/mm_background/Image0037.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bxfysywkjufxh" +uid="uid://cdresoixhmyqr" path="res://.godot/imported/Image0037.png-cb86b6c062b9e8acefd5b282976e6043.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0038.png b/sprites/frames/mm_background/Image0038.png index 2a9fc94..08014a3 100644 Binary files a/sprites/frames/mm_background/Image0038.png and b/sprites/frames/mm_background/Image0038.png differ diff --git a/sprites/frames/mm_background/Image0038.png.import b/sprites/frames/mm_background/Image0038.png.import index 4f959cc..b1f84dd 100644 --- a/sprites/frames/mm_background/Image0038.png.import +++ b/sprites/frames/mm_background/Image0038.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dvs4dboeo8lyh" +uid="uid://3uhuiqfi6bfe" path="res://.godot/imported/Image0038.png-9de6fe2d591f9d4be448daa44b01ee8c.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0039.png b/sprites/frames/mm_background/Image0039.png index db07025..4a00166 100644 Binary files a/sprites/frames/mm_background/Image0039.png and b/sprites/frames/mm_background/Image0039.png differ diff --git a/sprites/frames/mm_background/Image0039.png.import b/sprites/frames/mm_background/Image0039.png.import index 8dd2d68..7ece360 100644 --- a/sprites/frames/mm_background/Image0039.png.import +++ b/sprites/frames/mm_background/Image0039.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b4a3ogjvu216r" +uid="uid://y2lbu32i4hlw" path="res://.godot/imported/Image0039.png-71d5da798055a0f9100634255d5441c6.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0040.png b/sprites/frames/mm_background/Image0040.png index 7918420..0f1fe65 100644 Binary files a/sprites/frames/mm_background/Image0040.png and b/sprites/frames/mm_background/Image0040.png differ diff --git a/sprites/frames/mm_background/Image0040.png.import b/sprites/frames/mm_background/Image0040.png.import index 63c8304..13d21c9 100644 --- a/sprites/frames/mm_background/Image0040.png.import +++ b/sprites/frames/mm_background/Image0040.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ct2csgmr5rxco" +uid="uid://b2jomdw04wa1n" path="res://.godot/imported/Image0040.png-4c359f010f97448297c4ae3810ca2bee.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0041.png b/sprites/frames/mm_background/Image0041.png index 1086bc4..861a3be 100644 Binary files a/sprites/frames/mm_background/Image0041.png and b/sprites/frames/mm_background/Image0041.png differ diff --git a/sprites/frames/mm_background/Image0041.png.import b/sprites/frames/mm_background/Image0041.png.import index 0fd894f..18f8945 100644 --- a/sprites/frames/mm_background/Image0041.png.import +++ b/sprites/frames/mm_background/Image0041.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cjfnurt7qdftm" +uid="uid://dwjn2wr01u52r" path="res://.godot/imported/Image0041.png-5ae3d75fdf73d8ced064bc2dcd6d7b62.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0042.png b/sprites/frames/mm_background/Image0042.png index 3a2d231..0b968a1 100644 Binary files a/sprites/frames/mm_background/Image0042.png and b/sprites/frames/mm_background/Image0042.png differ diff --git a/sprites/frames/mm_background/Image0042.png.import b/sprites/frames/mm_background/Image0042.png.import index bbce1b8..85c73a9 100644 --- a/sprites/frames/mm_background/Image0042.png.import +++ b/sprites/frames/mm_background/Image0042.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://di415hqbl0vjb" +uid="uid://by5n23f7ddf6q" path="res://.godot/imported/Image0042.png-6b3fe408b03e9533150d7b52731e19d6.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0043.png b/sprites/frames/mm_background/Image0043.png index 33a3625..3cd0f56 100644 Binary files a/sprites/frames/mm_background/Image0043.png and b/sprites/frames/mm_background/Image0043.png differ diff --git a/sprites/frames/mm_background/Image0043.png.import b/sprites/frames/mm_background/Image0043.png.import index 678187e..9bfeac2 100644 --- a/sprites/frames/mm_background/Image0043.png.import +++ b/sprites/frames/mm_background/Image0043.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://lukurle8lso8" +uid="uid://c0ocws7h5sinw" path="res://.godot/imported/Image0043.png-ef605b2d9ff972c6b6bcfdee324d6c1b.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0044.png b/sprites/frames/mm_background/Image0044.png index e47862a..2e59d1b 100644 Binary files a/sprites/frames/mm_background/Image0044.png and b/sprites/frames/mm_background/Image0044.png differ diff --git a/sprites/frames/mm_background/Image0044.png.import b/sprites/frames/mm_background/Image0044.png.import index 72ad8d6..034b3bb 100644 --- a/sprites/frames/mm_background/Image0044.png.import +++ b/sprites/frames/mm_background/Image0044.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ckshxyq6v5fbr" +uid="uid://bvla1l735dm56" path="res://.godot/imported/Image0044.png-3d361cdf33b8e3c6a05fe8cfbb942951.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0045.png b/sprites/frames/mm_background/Image0045.png index 9f6d058..fa9dca0 100644 Binary files a/sprites/frames/mm_background/Image0045.png and b/sprites/frames/mm_background/Image0045.png differ diff --git a/sprites/frames/mm_background/Image0045.png.import b/sprites/frames/mm_background/Image0045.png.import index 862e710..099ba1e 100644 --- a/sprites/frames/mm_background/Image0045.png.import +++ b/sprites/frames/mm_background/Image0045.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dd2q8r4sryb5m" +uid="uid://cly4c68uw5v46" path="res://.godot/imported/Image0045.png-ea7b70574d155cf02b4b2010142fbc1d.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0046.png b/sprites/frames/mm_background/Image0046.png index 4b754ca..7b00d9b 100644 Binary files a/sprites/frames/mm_background/Image0046.png and b/sprites/frames/mm_background/Image0046.png differ diff --git a/sprites/frames/mm_background/Image0046.png.import b/sprites/frames/mm_background/Image0046.png.import index 4b93276..d13de9e 100644 --- a/sprites/frames/mm_background/Image0046.png.import +++ b/sprites/frames/mm_background/Image0046.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://764571l0h475" +uid="uid://b5a8vb0ckhkvd" path="res://.godot/imported/Image0046.png-70f90d71ec34ccb818399baf5ba1597b.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0047.png b/sprites/frames/mm_background/Image0047.png index 9a5c5ad..091626a 100644 Binary files a/sprites/frames/mm_background/Image0047.png and b/sprites/frames/mm_background/Image0047.png differ diff --git a/sprites/frames/mm_background/Image0047.png.import b/sprites/frames/mm_background/Image0047.png.import index b608d46..7c73551 100644 --- a/sprites/frames/mm_background/Image0047.png.import +++ b/sprites/frames/mm_background/Image0047.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://11a2ly27s5h5" +uid="uid://c6rdfxumx3euu" path="res://.godot/imported/Image0047.png-ecb5918e2b5806b4975d5b94e3bb2dc5.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0048.png b/sprites/frames/mm_background/Image0048.png index c466e96..766d499 100644 Binary files a/sprites/frames/mm_background/Image0048.png and b/sprites/frames/mm_background/Image0048.png differ diff --git a/sprites/frames/mm_background/Image0048.png.import b/sprites/frames/mm_background/Image0048.png.import index a9d7629..30849b3 100644 --- a/sprites/frames/mm_background/Image0048.png.import +++ b/sprites/frames/mm_background/Image0048.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c7b10cvtbgxrs" +uid="uid://dlk5is8184snf" path="res://.godot/imported/Image0048.png-00bca000eabe78d27c8e7eced7376671.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0049.png b/sprites/frames/mm_background/Image0049.png index d7efd22..b659bb6 100644 Binary files a/sprites/frames/mm_background/Image0049.png and b/sprites/frames/mm_background/Image0049.png differ diff --git a/sprites/frames/mm_background/Image0049.png.import b/sprites/frames/mm_background/Image0049.png.import index 996e2c4..3fb380b 100644 --- a/sprites/frames/mm_background/Image0049.png.import +++ b/sprites/frames/mm_background/Image0049.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bn18xu0tqhivq" +uid="uid://cf6invg8p7cdg" path="res://.godot/imported/Image0049.png-096de6c69dd4ee88f3806a91bd05f819.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0050.png b/sprites/frames/mm_background/Image0050.png index c6a2ba6..a1a0890 100644 Binary files a/sprites/frames/mm_background/Image0050.png and b/sprites/frames/mm_background/Image0050.png differ diff --git a/sprites/frames/mm_background/Image0050.png.import b/sprites/frames/mm_background/Image0050.png.import index 8b43c52..04c5ecb 100644 --- a/sprites/frames/mm_background/Image0050.png.import +++ b/sprites/frames/mm_background/Image0050.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dj6glaciw4xot" +uid="uid://cffq82v1a277c" path="res://.godot/imported/Image0050.png-1b8f73e6893c465fb6bbbece17ec1e84.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0051.png b/sprites/frames/mm_background/Image0051.png index 6b1fc34..c23feba 100644 Binary files a/sprites/frames/mm_background/Image0051.png and b/sprites/frames/mm_background/Image0051.png differ diff --git a/sprites/frames/mm_background/Image0051.png.import b/sprites/frames/mm_background/Image0051.png.import index b7cc8ec..2565b0c 100644 --- a/sprites/frames/mm_background/Image0051.png.import +++ b/sprites/frames/mm_background/Image0051.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dup4drk0iwt2n" +uid="uid://iollap1o3uni" path="res://.godot/imported/Image0051.png-dd693b43dc150b37e022b47bd4a4358a.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0052.png b/sprites/frames/mm_background/Image0052.png index 224f268..628849f 100644 Binary files a/sprites/frames/mm_background/Image0052.png and b/sprites/frames/mm_background/Image0052.png differ diff --git a/sprites/frames/mm_background/Image0052.png.import b/sprites/frames/mm_background/Image0052.png.import index 70ebab4..d86b798 100644 --- a/sprites/frames/mm_background/Image0052.png.import +++ b/sprites/frames/mm_background/Image0052.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://q4ldobw8tqkt" +uid="uid://5c2gs7y6otn7" path="res://.godot/imported/Image0052.png-786359653b29b4ee943e0bb92798dbf8.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0053.png b/sprites/frames/mm_background/Image0053.png index 2d32845..36bf79b 100644 Binary files a/sprites/frames/mm_background/Image0053.png and b/sprites/frames/mm_background/Image0053.png differ diff --git a/sprites/frames/mm_background/Image0053.png.import b/sprites/frames/mm_background/Image0053.png.import index dcc9680..75193a7 100644 --- a/sprites/frames/mm_background/Image0053.png.import +++ b/sprites/frames/mm_background/Image0053.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://2vef372jm0t5" +uid="uid://bel6f13o025ji" path="res://.godot/imported/Image0053.png-62bf3d2e40a1ece56466543814aa19bc.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0054.png b/sprites/frames/mm_background/Image0054.png index 90d4d68..601ecda 100644 Binary files a/sprites/frames/mm_background/Image0054.png and b/sprites/frames/mm_background/Image0054.png differ diff --git a/sprites/frames/mm_background/Image0054.png.import b/sprites/frames/mm_background/Image0054.png.import index 19fcfbb..9ec99c0 100644 --- a/sprites/frames/mm_background/Image0054.png.import +++ b/sprites/frames/mm_background/Image0054.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://wfkbqr6lu7hk" +uid="uid://dhn8ml7dgcobx" path="res://.godot/imported/Image0054.png-da2f883a67fdc13c662c28dadc7679cb.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0055.png b/sprites/frames/mm_background/Image0055.png index e780390..5e63f9e 100644 Binary files a/sprites/frames/mm_background/Image0055.png and b/sprites/frames/mm_background/Image0055.png differ diff --git a/sprites/frames/mm_background/Image0055.png.import b/sprites/frames/mm_background/Image0055.png.import index 460b46f..39b413a 100644 --- a/sprites/frames/mm_background/Image0055.png.import +++ b/sprites/frames/mm_background/Image0055.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bfrcwd2sg6vfg" +uid="uid://dlb21esoblxm0" path="res://.godot/imported/Image0055.png-2d4be0db0866aa5b45c584b7eaf88aa8.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0056.png b/sprites/frames/mm_background/Image0056.png index 37b49da..bbcb8ce 100644 Binary files a/sprites/frames/mm_background/Image0056.png and b/sprites/frames/mm_background/Image0056.png differ diff --git a/sprites/frames/mm_background/Image0056.png.import b/sprites/frames/mm_background/Image0056.png.import index b0a1d4f..0ab9af4 100644 --- a/sprites/frames/mm_background/Image0056.png.import +++ b/sprites/frames/mm_background/Image0056.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://05yvnmprvla1" +uid="uid://bippksovarcdy" path="res://.godot/imported/Image0056.png-1066a94e9e2cd51b16a8b32d8cb4db7b.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0057.png b/sprites/frames/mm_background/Image0057.png index fdf5f8b..a5adeaf 100644 Binary files a/sprites/frames/mm_background/Image0057.png and b/sprites/frames/mm_background/Image0057.png differ diff --git a/sprites/frames/mm_background/Image0057.png.import b/sprites/frames/mm_background/Image0057.png.import index a5f0d97..4d7476b 100644 --- a/sprites/frames/mm_background/Image0057.png.import +++ b/sprites/frames/mm_background/Image0057.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bgp5icarv6tlq" +uid="uid://b02b2phcpk2t6" path="res://.godot/imported/Image0057.png-57d9776d7ae235860c7a135842e4eb85.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0058.png b/sprites/frames/mm_background/Image0058.png index 80d9a92..2c7495f 100644 Binary files a/sprites/frames/mm_background/Image0058.png and b/sprites/frames/mm_background/Image0058.png differ diff --git a/sprites/frames/mm_background/Image0058.png.import b/sprites/frames/mm_background/Image0058.png.import index b872786..7bb58a9 100644 --- a/sprites/frames/mm_background/Image0058.png.import +++ b/sprites/frames/mm_background/Image0058.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cv544yusocmpb" +uid="uid://dxhe0127ghf12" path="res://.godot/imported/Image0058.png-b3eaf45d24465a87fc655f6e7322a6ee.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0059.png b/sprites/frames/mm_background/Image0059.png index 775e7f4..974d52e 100644 Binary files a/sprites/frames/mm_background/Image0059.png and b/sprites/frames/mm_background/Image0059.png differ diff --git a/sprites/frames/mm_background/Image0059.png.import b/sprites/frames/mm_background/Image0059.png.import index a97381c..22648da 100644 --- a/sprites/frames/mm_background/Image0059.png.import +++ b/sprites/frames/mm_background/Image0059.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dn1fdbthj04lv" +uid="uid://cusjbxujsvgqs" path="res://.godot/imported/Image0059.png-84ec7f54bdb17cc3b73251defc8cb306.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0060.png b/sprites/frames/mm_background/Image0060.png index 61b1058..47c471b 100644 Binary files a/sprites/frames/mm_background/Image0060.png and b/sprites/frames/mm_background/Image0060.png differ diff --git a/sprites/frames/mm_background/Image0060.png.import b/sprites/frames/mm_background/Image0060.png.import index c9a476a..a945aeb 100644 --- a/sprites/frames/mm_background/Image0060.png.import +++ b/sprites/frames/mm_background/Image0060.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://3hrxo11a12mf" +uid="uid://xgasmillk6qj" path="res://.godot/imported/Image0060.png-9fa2ebc8b7ebb6c23daebbb472093a4b.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0061.png b/sprites/frames/mm_background/Image0061.png index cc49124..20adbdc 100644 Binary files a/sprites/frames/mm_background/Image0061.png and b/sprites/frames/mm_background/Image0061.png differ diff --git a/sprites/frames/mm_background/Image0061.png.import b/sprites/frames/mm_background/Image0061.png.import index 12063ca..33d2e78 100644 --- a/sprites/frames/mm_background/Image0061.png.import +++ b/sprites/frames/mm_background/Image0061.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cg40m1pq0fbxd" +uid="uid://d2sw8ek4nvsn1" path="res://.godot/imported/Image0061.png-d6b43dbd3bdc15dcc35608254d4c8d3f.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0062.png b/sprites/frames/mm_background/Image0062.png index 612b347..5c18eb1 100644 Binary files a/sprites/frames/mm_background/Image0062.png and b/sprites/frames/mm_background/Image0062.png differ diff --git a/sprites/frames/mm_background/Image0062.png.import b/sprites/frames/mm_background/Image0062.png.import index 211cd82..5ede43e 100644 --- a/sprites/frames/mm_background/Image0062.png.import +++ b/sprites/frames/mm_background/Image0062.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://u4ftyu2mxoae" +uid="uid://dkv2j3gbpue8x" path="res://.godot/imported/Image0062.png-325a33a99f67a0b5b4304e19eebac378.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0063.png b/sprites/frames/mm_background/Image0063.png index f6a558b..38a7057 100644 Binary files a/sprites/frames/mm_background/Image0063.png and b/sprites/frames/mm_background/Image0063.png differ diff --git a/sprites/frames/mm_background/Image0063.png.import b/sprites/frames/mm_background/Image0063.png.import index 6124e59..2ac10bc 100644 --- a/sprites/frames/mm_background/Image0063.png.import +++ b/sprites/frames/mm_background/Image0063.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c6xs6rvkl3arm" +uid="uid://b443tkhvh5ybk" path="res://.godot/imported/Image0063.png-3d3f9b9ff6fab70f26a70714b3df3342.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0064.png b/sprites/frames/mm_background/Image0064.png index de09b10..55eebb5 100644 Binary files a/sprites/frames/mm_background/Image0064.png and b/sprites/frames/mm_background/Image0064.png differ diff --git a/sprites/frames/mm_background/Image0064.png.import b/sprites/frames/mm_background/Image0064.png.import index ff6c2c1..609cc5a 100644 --- a/sprites/frames/mm_background/Image0064.png.import +++ b/sprites/frames/mm_background/Image0064.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ddvjslb6c2o6f" +uid="uid://rjh784so5qy0" path="res://.godot/imported/Image0064.png-ae7002579d9565fc39bb0751fe08b0ce.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0065.png b/sprites/frames/mm_background/Image0065.png index acaff68..7d88ec3 100644 Binary files a/sprites/frames/mm_background/Image0065.png and b/sprites/frames/mm_background/Image0065.png differ diff --git a/sprites/frames/mm_background/Image0065.png.import b/sprites/frames/mm_background/Image0065.png.import index a6e141e..6b038ae 100644 --- a/sprites/frames/mm_background/Image0065.png.import +++ b/sprites/frames/mm_background/Image0065.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ceophuj1l7k4d" +uid="uid://ctb6ny4i2ln7r" path="res://.godot/imported/Image0065.png-5db59c9517db6fddfeecfabe3aa78af8.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0066.png b/sprites/frames/mm_background/Image0066.png index f368081..111980f 100644 Binary files a/sprites/frames/mm_background/Image0066.png and b/sprites/frames/mm_background/Image0066.png differ diff --git a/sprites/frames/mm_background/Image0066.png.import b/sprites/frames/mm_background/Image0066.png.import index e226b9a..30f5dbe 100644 --- a/sprites/frames/mm_background/Image0066.png.import +++ b/sprites/frames/mm_background/Image0066.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cjq06puubwccr" +uid="uid://cxgwrgwjkg5un" path="res://.godot/imported/Image0066.png-af83a3a7168ef8c74bd82d0aeed95c32.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0067.png b/sprites/frames/mm_background/Image0067.png index df58d69..94dfc4a 100644 Binary files a/sprites/frames/mm_background/Image0067.png and b/sprites/frames/mm_background/Image0067.png differ diff --git a/sprites/frames/mm_background/Image0067.png.import b/sprites/frames/mm_background/Image0067.png.import index 1a6d3c3..045d56e 100644 --- a/sprites/frames/mm_background/Image0067.png.import +++ b/sprites/frames/mm_background/Image0067.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://babcxh5lx2qqb" +uid="uid://csuo8qrlgh4kc" path="res://.godot/imported/Image0067.png-d69225e4658ae29f3c0bb5dcdcd80e28.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0068.png b/sprites/frames/mm_background/Image0068.png index 6f79283..9c5ddd4 100644 Binary files a/sprites/frames/mm_background/Image0068.png and b/sprites/frames/mm_background/Image0068.png differ diff --git a/sprites/frames/mm_background/Image0068.png.import b/sprites/frames/mm_background/Image0068.png.import index 81a376c..ab63ab3 100644 --- a/sprites/frames/mm_background/Image0068.png.import +++ b/sprites/frames/mm_background/Image0068.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://0dw80ttq1fsr" +uid="uid://s8bx3a88oq8e" path="res://.godot/imported/Image0068.png-89a44b8330d82e509fd48ebdeff705d3.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0069.png b/sprites/frames/mm_background/Image0069.png index f662110..5329022 100644 Binary files a/sprites/frames/mm_background/Image0069.png and b/sprites/frames/mm_background/Image0069.png differ diff --git a/sprites/frames/mm_background/Image0069.png.import b/sprites/frames/mm_background/Image0069.png.import index 072b75b..287832b 100644 --- a/sprites/frames/mm_background/Image0069.png.import +++ b/sprites/frames/mm_background/Image0069.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cxyeoiw341p0b" +uid="uid://bcqhr13pwuysu" path="res://.godot/imported/Image0069.png-d6d0f337049b27d34392d5e3f09b7fd4.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0070.png b/sprites/frames/mm_background/Image0070.png index b2f7f84..2cb69b9 100644 Binary files a/sprites/frames/mm_background/Image0070.png and b/sprites/frames/mm_background/Image0070.png differ diff --git a/sprites/frames/mm_background/Image0070.png.import b/sprites/frames/mm_background/Image0070.png.import index ef7f08e..785cb08 100644 --- a/sprites/frames/mm_background/Image0070.png.import +++ b/sprites/frames/mm_background/Image0070.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://tjn0oqi5ielx" +uid="uid://ba6oqkjpsjqse" path="res://.godot/imported/Image0070.png-633e9a12de0f29ca91c82b38792d7e4f.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0071.png b/sprites/frames/mm_background/Image0071.png index 6c41a32..a70cb70 100644 Binary files a/sprites/frames/mm_background/Image0071.png and b/sprites/frames/mm_background/Image0071.png differ diff --git a/sprites/frames/mm_background/Image0071.png.import b/sprites/frames/mm_background/Image0071.png.import index 616ed43..7dcc764 100644 --- a/sprites/frames/mm_background/Image0071.png.import +++ b/sprites/frames/mm_background/Image0071.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://duhehl1dtde0i" +uid="uid://co6r1055y2i8n" path="res://.godot/imported/Image0071.png-7ed42608a67457a54289ab3806091e7e.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0072.png b/sprites/frames/mm_background/Image0072.png index a6a3dd3..4684e5e 100644 Binary files a/sprites/frames/mm_background/Image0072.png and b/sprites/frames/mm_background/Image0072.png differ diff --git a/sprites/frames/mm_background/Image0072.png.import b/sprites/frames/mm_background/Image0072.png.import index 036a7fd..20f0a71 100644 --- a/sprites/frames/mm_background/Image0072.png.import +++ b/sprites/frames/mm_background/Image0072.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bjvgb46md76i7" +uid="uid://cj7nd214tpxvp" path="res://.godot/imported/Image0072.png-961950fc41314d8d1b9dc44c978ca024.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0073.png b/sprites/frames/mm_background/Image0073.png index 8c843af..75fd59f 100644 Binary files a/sprites/frames/mm_background/Image0073.png and b/sprites/frames/mm_background/Image0073.png differ diff --git a/sprites/frames/mm_background/Image0073.png.import b/sprites/frames/mm_background/Image0073.png.import index 016ab86..e2ef1fc 100644 --- a/sprites/frames/mm_background/Image0073.png.import +++ b/sprites/frames/mm_background/Image0073.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://brnccg7egcywr" +uid="uid://7e1aeot48dq6" path="res://.godot/imported/Image0073.png-571f7f0a69d4e4cb15640bf7350ddc84.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0074.png b/sprites/frames/mm_background/Image0074.png index d0b0ca1..15a9d10 100644 Binary files a/sprites/frames/mm_background/Image0074.png and b/sprites/frames/mm_background/Image0074.png differ diff --git a/sprites/frames/mm_background/Image0074.png.import b/sprites/frames/mm_background/Image0074.png.import index fd2295b..c35b63c 100644 --- a/sprites/frames/mm_background/Image0074.png.import +++ b/sprites/frames/mm_background/Image0074.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dphaelvvy0mkc" +uid="uid://pa0fxsqoc68o" path="res://.godot/imported/Image0074.png-c1a1db44ac42671c497a7b4bfd5792cf.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0075.png b/sprites/frames/mm_background/Image0075.png index 68d20cb..57fdf8b 100644 Binary files a/sprites/frames/mm_background/Image0075.png and b/sprites/frames/mm_background/Image0075.png differ diff --git a/sprites/frames/mm_background/Image0075.png.import b/sprites/frames/mm_background/Image0075.png.import index f6b428d..f76a025 100644 --- a/sprites/frames/mm_background/Image0075.png.import +++ b/sprites/frames/mm_background/Image0075.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ens566itmj6m" +uid="uid://g2wfinvh7jpw" path="res://.godot/imported/Image0075.png-f49b24ce3f6eaeb8dc85ead6d9233f0c.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0076.png b/sprites/frames/mm_background/Image0076.png index ea9afcc..fa5d2bc 100644 Binary files a/sprites/frames/mm_background/Image0076.png and b/sprites/frames/mm_background/Image0076.png differ diff --git a/sprites/frames/mm_background/Image0076.png.import b/sprites/frames/mm_background/Image0076.png.import index 32891f7..ce1a2e0 100644 --- a/sprites/frames/mm_background/Image0076.png.import +++ b/sprites/frames/mm_background/Image0076.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c1fy8owgpwj05" +uid="uid://dnpd3munsftyc" path="res://.godot/imported/Image0076.png-fc60516938a36bdba4145741c2b5e376.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0077.png b/sprites/frames/mm_background/Image0077.png index b504cdf..c8daf4d 100644 Binary files a/sprites/frames/mm_background/Image0077.png and b/sprites/frames/mm_background/Image0077.png differ diff --git a/sprites/frames/mm_background/Image0077.png.import b/sprites/frames/mm_background/Image0077.png.import index 3af394f..23872f5 100644 --- a/sprites/frames/mm_background/Image0077.png.import +++ b/sprites/frames/mm_background/Image0077.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ebeg5srrbuyj" +uid="uid://lso32g7rrexc" path="res://.godot/imported/Image0077.png-c7785dc0b6072d901537900416b276c8.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0078.png b/sprites/frames/mm_background/Image0078.png index bd8f511..f1de0f2 100644 Binary files a/sprites/frames/mm_background/Image0078.png and b/sprites/frames/mm_background/Image0078.png differ diff --git a/sprites/frames/mm_background/Image0078.png.import b/sprites/frames/mm_background/Image0078.png.import index a6c26ad..3d4b7dc 100644 --- a/sprites/frames/mm_background/Image0078.png.import +++ b/sprites/frames/mm_background/Image0078.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dttr4p5wbef3g" +uid="uid://b78pe43s7wdgk" path="res://.godot/imported/Image0078.png-e56face7ba7a658ca77c9b2b0cda9576.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0079.png b/sprites/frames/mm_background/Image0079.png index 4be70f4..445a1eb 100644 Binary files a/sprites/frames/mm_background/Image0079.png and b/sprites/frames/mm_background/Image0079.png differ diff --git a/sprites/frames/mm_background/Image0079.png.import b/sprites/frames/mm_background/Image0079.png.import index 95d938a..e10ee8e 100644 --- a/sprites/frames/mm_background/Image0079.png.import +++ b/sprites/frames/mm_background/Image0079.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://mhh03qm32eyo" +uid="uid://dxud6rilu70ga" path="res://.godot/imported/Image0079.png-53d85092cf1e693adf57cd04b3f7fddd.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0080.png b/sprites/frames/mm_background/Image0080.png index 0aabfae..50faaac 100644 Binary files a/sprites/frames/mm_background/Image0080.png and b/sprites/frames/mm_background/Image0080.png differ diff --git a/sprites/frames/mm_background/Image0080.png.import b/sprites/frames/mm_background/Image0080.png.import index 6d1c06a..8e280e2 100644 --- a/sprites/frames/mm_background/Image0080.png.import +++ b/sprites/frames/mm_background/Image0080.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://balpcv58dn76q" +uid="uid://b1xnapb0oma6n" path="res://.godot/imported/Image0080.png-9a0ce36853276318b15ebda3308522af.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0081.png b/sprites/frames/mm_background/Image0081.png index 33af9de..a9a57ff 100644 Binary files a/sprites/frames/mm_background/Image0081.png and b/sprites/frames/mm_background/Image0081.png differ diff --git a/sprites/frames/mm_background/Image0081.png.import b/sprites/frames/mm_background/Image0081.png.import index 8c3905b..c3a6796 100644 --- a/sprites/frames/mm_background/Image0081.png.import +++ b/sprites/frames/mm_background/Image0081.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ccum31ik4j3gv" +uid="uid://ciullnx5ok0el" path="res://.godot/imported/Image0081.png-ef2fd84978c3a2ca6ae78660cdf4fb05.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0082.png b/sprites/frames/mm_background/Image0082.png index 0172fc9..591ec21 100644 Binary files a/sprites/frames/mm_background/Image0082.png and b/sprites/frames/mm_background/Image0082.png differ diff --git a/sprites/frames/mm_background/Image0082.png.import b/sprites/frames/mm_background/Image0082.png.import index a8dc9fb..17e6c6a 100644 --- a/sprites/frames/mm_background/Image0082.png.import +++ b/sprites/frames/mm_background/Image0082.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://btbb3cg8ec4mk" +uid="uid://f1x2on5ce3dy" path="res://.godot/imported/Image0082.png-77e0c7c8995dc782a2106676e7399eaa.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0083.png b/sprites/frames/mm_background/Image0083.png index 96b0315..34e571c 100644 Binary files a/sprites/frames/mm_background/Image0083.png and b/sprites/frames/mm_background/Image0083.png differ diff --git a/sprites/frames/mm_background/Image0083.png.import b/sprites/frames/mm_background/Image0083.png.import index 96b27a6..74cca19 100644 --- a/sprites/frames/mm_background/Image0083.png.import +++ b/sprites/frames/mm_background/Image0083.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bplgabx2yb74s" +uid="uid://dugksfm5ubjkl" path="res://.godot/imported/Image0083.png-89dab3cb2f60530d7b0c92f723fb2cb6.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0084.png b/sprites/frames/mm_background/Image0084.png index 4ba8c69..b27b7d9 100644 Binary files a/sprites/frames/mm_background/Image0084.png and b/sprites/frames/mm_background/Image0084.png differ diff --git a/sprites/frames/mm_background/Image0084.png.import b/sprites/frames/mm_background/Image0084.png.import index 10814cd..7377fdc 100644 --- a/sprites/frames/mm_background/Image0084.png.import +++ b/sprites/frames/mm_background/Image0084.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b3m2ces64vypp" +uid="uid://ymh0jynmgjil" path="res://.godot/imported/Image0084.png-e26951dd5bc13e674c3a84750aa253c9.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0085.png b/sprites/frames/mm_background/Image0085.png index 4ecf23f..7a4e22c 100644 Binary files a/sprites/frames/mm_background/Image0085.png and b/sprites/frames/mm_background/Image0085.png differ diff --git a/sprites/frames/mm_background/Image0085.png.import b/sprites/frames/mm_background/Image0085.png.import index 1236ee3..053d411 100644 --- a/sprites/frames/mm_background/Image0085.png.import +++ b/sprites/frames/mm_background/Image0085.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ckx2h5a2hue5u" +uid="uid://d4jxv6dnklj02" path="res://.godot/imported/Image0085.png-9977f293b91845a831e86ceafe9e9f15.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0086.png b/sprites/frames/mm_background/Image0086.png index 69b0b6d..9213c10 100644 Binary files a/sprites/frames/mm_background/Image0086.png and b/sprites/frames/mm_background/Image0086.png differ diff --git a/sprites/frames/mm_background/Image0086.png.import b/sprites/frames/mm_background/Image0086.png.import index ebd5dd3..675313d 100644 --- a/sprites/frames/mm_background/Image0086.png.import +++ b/sprites/frames/mm_background/Image0086.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://wrmjxmyeoc04" +uid="uid://bjlx6j6b2lxvq" path="res://.godot/imported/Image0086.png-26e725123ae4252e32b365aa2fe8c5ac.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0087.png b/sprites/frames/mm_background/Image0087.png index 5a5cd03..2ef547c 100644 Binary files a/sprites/frames/mm_background/Image0087.png and b/sprites/frames/mm_background/Image0087.png differ diff --git a/sprites/frames/mm_background/Image0087.png.import b/sprites/frames/mm_background/Image0087.png.import index 935156c..19d842a 100644 --- a/sprites/frames/mm_background/Image0087.png.import +++ b/sprites/frames/mm_background/Image0087.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c1nwvhb4vuvk2" +uid="uid://bgapquflrkfjt" path="res://.godot/imported/Image0087.png-0c1c8c10f8605718bed7a50b09c0b925.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0088.png b/sprites/frames/mm_background/Image0088.png index 58d292d..54c64bc 100644 Binary files a/sprites/frames/mm_background/Image0088.png and b/sprites/frames/mm_background/Image0088.png differ diff --git a/sprites/frames/mm_background/Image0088.png.import b/sprites/frames/mm_background/Image0088.png.import index 8131c1c..58a4158 100644 --- a/sprites/frames/mm_background/Image0088.png.import +++ b/sprites/frames/mm_background/Image0088.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://coy6c7x0imkry" +uid="uid://tijhgbdpjreg" path="res://.godot/imported/Image0088.png-1344f1bb2fb31362680a532bd4fa9918.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0089.png b/sprites/frames/mm_background/Image0089.png index 8b448d9..e5dd795 100644 Binary files a/sprites/frames/mm_background/Image0089.png and b/sprites/frames/mm_background/Image0089.png differ diff --git a/sprites/frames/mm_background/Image0089.png.import b/sprites/frames/mm_background/Image0089.png.import index 6463228..c6b56d6 100644 --- a/sprites/frames/mm_background/Image0089.png.import +++ b/sprites/frames/mm_background/Image0089.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://djkp72l3ko7su" +uid="uid://b3rs6itbmgkes" path="res://.godot/imported/Image0089.png-6ab5e0befe0026aa1ac44f451e3b9906.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0090.png b/sprites/frames/mm_background/Image0090.png index 9af6857..1c28d03 100644 Binary files a/sprites/frames/mm_background/Image0090.png and b/sprites/frames/mm_background/Image0090.png differ diff --git a/sprites/frames/mm_background/Image0090.png.import b/sprites/frames/mm_background/Image0090.png.import index 1174a60..1fdd402 100644 --- a/sprites/frames/mm_background/Image0090.png.import +++ b/sprites/frames/mm_background/Image0090.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://e8anereixivw" +uid="uid://10k7wv05yb4x" path="res://.godot/imported/Image0090.png-15882c8ccf427c5327a0c5da7d80bedd.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0091.png b/sprites/frames/mm_background/Image0091.png index 36b1e7c..116e227 100644 Binary files a/sprites/frames/mm_background/Image0091.png and b/sprites/frames/mm_background/Image0091.png differ diff --git a/sprites/frames/mm_background/Image0091.png.import b/sprites/frames/mm_background/Image0091.png.import index 573e253..57ad232 100644 --- a/sprites/frames/mm_background/Image0091.png.import +++ b/sprites/frames/mm_background/Image0091.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dee02hr3w4y5r" +uid="uid://dnhifu8clrrh2" path="res://.godot/imported/Image0091.png-bf3521814edaac3d1ffc1cdbabc141fb.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0092.png b/sprites/frames/mm_background/Image0092.png index 673573e..b8ee27d 100644 Binary files a/sprites/frames/mm_background/Image0092.png and b/sprites/frames/mm_background/Image0092.png differ diff --git a/sprites/frames/mm_background/Image0092.png.import b/sprites/frames/mm_background/Image0092.png.import index c9a8cc7..1e6b11f 100644 --- a/sprites/frames/mm_background/Image0092.png.import +++ b/sprites/frames/mm_background/Image0092.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ccr1frpg7b7a" +uid="uid://dgbj81ajyvivb" path="res://.godot/imported/Image0092.png-de4e67e00a17bbb126d232a7b78a2730.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0093.png b/sprites/frames/mm_background/Image0093.png index 21bb7a9..e426055 100644 Binary files a/sprites/frames/mm_background/Image0093.png and b/sprites/frames/mm_background/Image0093.png differ diff --git a/sprites/frames/mm_background/Image0093.png.import b/sprites/frames/mm_background/Image0093.png.import index 4226881..36c67cc 100644 --- a/sprites/frames/mm_background/Image0093.png.import +++ b/sprites/frames/mm_background/Image0093.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bhaxgy3tgk8qq" +uid="uid://dq3jhfiqyssru" path="res://.godot/imported/Image0093.png-dbc281a219040f9a4066c5dfce2a0e5e.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0094.png b/sprites/frames/mm_background/Image0094.png index 107d04d..2df73e8 100644 Binary files a/sprites/frames/mm_background/Image0094.png and b/sprites/frames/mm_background/Image0094.png differ diff --git a/sprites/frames/mm_background/Image0094.png.import b/sprites/frames/mm_background/Image0094.png.import index c740ef6..a664150 100644 --- a/sprites/frames/mm_background/Image0094.png.import +++ b/sprites/frames/mm_background/Image0094.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://0rfhi8xvstn3" +uid="uid://cbtgr2um5xouc" path="res://.godot/imported/Image0094.png-a1843b741c5496369bd533c3cb76f545.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0095.png b/sprites/frames/mm_background/Image0095.png index e4b712f..a81b72d 100644 Binary files a/sprites/frames/mm_background/Image0095.png and b/sprites/frames/mm_background/Image0095.png differ diff --git a/sprites/frames/mm_background/Image0095.png.import b/sprites/frames/mm_background/Image0095.png.import index 309ffd6..5d2ff89 100644 --- a/sprites/frames/mm_background/Image0095.png.import +++ b/sprites/frames/mm_background/Image0095.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dp2rg7ggpdr2" +uid="uid://d14rcusulgeg7" path="res://.godot/imported/Image0095.png-6b7d477694e70e54149486206d0535cd.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0096.png b/sprites/frames/mm_background/Image0096.png index 46017d3..2816b0a 100644 Binary files a/sprites/frames/mm_background/Image0096.png and b/sprites/frames/mm_background/Image0096.png differ diff --git a/sprites/frames/mm_background/Image0096.png.import b/sprites/frames/mm_background/Image0096.png.import index 891d285..282d868 100644 --- a/sprites/frames/mm_background/Image0096.png.import +++ b/sprites/frames/mm_background/Image0096.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c63j5lw4sojb4" +uid="uid://dubnka4uosan7" path="res://.godot/imported/Image0096.png-8cfa787bcda63878eafa5e51c64d7d1f.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0097.png b/sprites/frames/mm_background/Image0097.png index c8d0d59..ccce496 100644 Binary files a/sprites/frames/mm_background/Image0097.png and b/sprites/frames/mm_background/Image0097.png differ diff --git a/sprites/frames/mm_background/Image0097.png.import b/sprites/frames/mm_background/Image0097.png.import index 1566728..cedfd84 100644 --- a/sprites/frames/mm_background/Image0097.png.import +++ b/sprites/frames/mm_background/Image0097.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://1wc66u4tk6fb" +uid="uid://d3o6vabtbluta" path="res://.godot/imported/Image0097.png-d6b757fc85dc8fd9033f7d8880ac41d0.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0098.png b/sprites/frames/mm_background/Image0098.png index 59578ae..501b65d 100644 Binary files a/sprites/frames/mm_background/Image0098.png and b/sprites/frames/mm_background/Image0098.png differ diff --git a/sprites/frames/mm_background/Image0098.png.import b/sprites/frames/mm_background/Image0098.png.import index 4609fa6..2c9939f 100644 --- a/sprites/frames/mm_background/Image0098.png.import +++ b/sprites/frames/mm_background/Image0098.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d31qrw8gx8gmi" +uid="uid://b8pd7bk1x1roj" path="res://.godot/imported/Image0098.png-ce1e3a1a6940ab68685b51677da4bd76.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0099.png b/sprites/frames/mm_background/Image0099.png index 6228f2b..f1f9f19 100644 Binary files a/sprites/frames/mm_background/Image0099.png and b/sprites/frames/mm_background/Image0099.png differ diff --git a/sprites/frames/mm_background/Image0099.png.import b/sprites/frames/mm_background/Image0099.png.import index 3c6f7c8..22d45e0 100644 --- a/sprites/frames/mm_background/Image0099.png.import +++ b/sprites/frames/mm_background/Image0099.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b40v3qe0armtn" +uid="uid://diwca7oq12pb2" path="res://.godot/imported/Image0099.png-e30c979f5cc3475d62e692cae16d791e.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0100.png b/sprites/frames/mm_background/Image0100.png index 4ff4f44..1840096 100644 Binary files a/sprites/frames/mm_background/Image0100.png and b/sprites/frames/mm_background/Image0100.png differ diff --git a/sprites/frames/mm_background/Image0100.png.import b/sprites/frames/mm_background/Image0100.png.import index 46d739e..3cec828 100644 --- a/sprites/frames/mm_background/Image0100.png.import +++ b/sprites/frames/mm_background/Image0100.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://3d5yk4nb2gc7" +uid="uid://dro4upt5nlxsu" path="res://.godot/imported/Image0100.png-4460cd85c65d40ad4c97145c7e388eb1.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0101.png b/sprites/frames/mm_background/Image0101.png index 7153b81..ba8468a 100644 Binary files a/sprites/frames/mm_background/Image0101.png and b/sprites/frames/mm_background/Image0101.png differ diff --git a/sprites/frames/mm_background/Image0101.png.import b/sprites/frames/mm_background/Image0101.png.import index 6770c9e..c0c2b1e 100644 --- a/sprites/frames/mm_background/Image0101.png.import +++ b/sprites/frames/mm_background/Image0101.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cfxnsvjwhtlb4" +uid="uid://kn4a8x7ammns" path="res://.godot/imported/Image0101.png-4c91780584a4a35b7359eb90bbb30ece.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0102.png b/sprites/frames/mm_background/Image0102.png index e7bcca5..e7d511f 100644 Binary files a/sprites/frames/mm_background/Image0102.png and b/sprites/frames/mm_background/Image0102.png differ diff --git a/sprites/frames/mm_background/Image0102.png.import b/sprites/frames/mm_background/Image0102.png.import index 464a46e..de78109 100644 --- a/sprites/frames/mm_background/Image0102.png.import +++ b/sprites/frames/mm_background/Image0102.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://o0p3uaynm8xr" +uid="uid://msr0s3wqxp3b" path="res://.godot/imported/Image0102.png-01e7a067d46c146ea13ed691ebf8c1ed.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0103.png b/sprites/frames/mm_background/Image0103.png index 5291c10..0c52a0d 100644 Binary files a/sprites/frames/mm_background/Image0103.png and b/sprites/frames/mm_background/Image0103.png differ diff --git a/sprites/frames/mm_background/Image0103.png.import b/sprites/frames/mm_background/Image0103.png.import index 7ecba7a..b385e26 100644 --- a/sprites/frames/mm_background/Image0103.png.import +++ b/sprites/frames/mm_background/Image0103.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://sprsvrsf35eq" +uid="uid://ol3jvkqgoqxr" path="res://.godot/imported/Image0103.png-7fcbfa52596fa16387e2631bad83b962.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0104.png b/sprites/frames/mm_background/Image0104.png index 2e160e0..e00ba1e 100644 Binary files a/sprites/frames/mm_background/Image0104.png and b/sprites/frames/mm_background/Image0104.png differ diff --git a/sprites/frames/mm_background/Image0104.png.import b/sprites/frames/mm_background/Image0104.png.import index ad5d3c7..47deb0b 100644 --- a/sprites/frames/mm_background/Image0104.png.import +++ b/sprites/frames/mm_background/Image0104.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d1rmo1hm1xeee" +uid="uid://cu4t4p1jfwwt8" path="res://.godot/imported/Image0104.png-b28290c2dddeedb7fbdcbe0c00b966b4.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0105.png b/sprites/frames/mm_background/Image0105.png index 727a3fc..4f37257 100644 Binary files a/sprites/frames/mm_background/Image0105.png and b/sprites/frames/mm_background/Image0105.png differ diff --git a/sprites/frames/mm_background/Image0105.png.import b/sprites/frames/mm_background/Image0105.png.import index 146f6b8..6f35b34 100644 --- a/sprites/frames/mm_background/Image0105.png.import +++ b/sprites/frames/mm_background/Image0105.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://nxapldv8625v" +uid="uid://ufv3fd05rldh" path="res://.godot/imported/Image0105.png-7984a644199c9a28aec1bf6c3da31f89.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0106.png b/sprites/frames/mm_background/Image0106.png index 2c18ab5..f96c5d8 100644 Binary files a/sprites/frames/mm_background/Image0106.png and b/sprites/frames/mm_background/Image0106.png differ diff --git a/sprites/frames/mm_background/Image0106.png.import b/sprites/frames/mm_background/Image0106.png.import index a690ecb..d8941f8 100644 --- a/sprites/frames/mm_background/Image0106.png.import +++ b/sprites/frames/mm_background/Image0106.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dp08hv6j6cvg0" +uid="uid://c5apqfati6poc" path="res://.godot/imported/Image0106.png-eca2dcc45a0b914411ea60fee6eb3b0f.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0107.png b/sprites/frames/mm_background/Image0107.png index ec6e344..a30c624 100644 Binary files a/sprites/frames/mm_background/Image0107.png and b/sprites/frames/mm_background/Image0107.png differ diff --git a/sprites/frames/mm_background/Image0107.png.import b/sprites/frames/mm_background/Image0107.png.import index 0794d7b..c59689b 100644 --- a/sprites/frames/mm_background/Image0107.png.import +++ b/sprites/frames/mm_background/Image0107.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cbca721158cry" +uid="uid://btwrovhrjfy1m" path="res://.godot/imported/Image0107.png-1326515751e86267d637dba88e2e58f8.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0108.png b/sprites/frames/mm_background/Image0108.png index bc04b4d..2366a74 100644 Binary files a/sprites/frames/mm_background/Image0108.png and b/sprites/frames/mm_background/Image0108.png differ diff --git a/sprites/frames/mm_background/Image0108.png.import b/sprites/frames/mm_background/Image0108.png.import index 84ef9cf..68cf95e 100644 --- a/sprites/frames/mm_background/Image0108.png.import +++ b/sprites/frames/mm_background/Image0108.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://kf26orbofx71" +uid="uid://c8mpdoqlpoj6e" path="res://.godot/imported/Image0108.png-7e578d3da5ed1e19c0fe4caa1c20d6e1.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0109.png b/sprites/frames/mm_background/Image0109.png index b061fdf..a50bb38 100644 Binary files a/sprites/frames/mm_background/Image0109.png and b/sprites/frames/mm_background/Image0109.png differ diff --git a/sprites/frames/mm_background/Image0109.png.import b/sprites/frames/mm_background/Image0109.png.import index 18ef17b..72c6db9 100644 --- a/sprites/frames/mm_background/Image0109.png.import +++ b/sprites/frames/mm_background/Image0109.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cow421cjc47e3" +uid="uid://bfw52acixf7yh" path="res://.godot/imported/Image0109.png-7923de2460653a9d099be05e60affe88.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0110.png b/sprites/frames/mm_background/Image0110.png index fcda5f6..163b04e 100644 Binary files a/sprites/frames/mm_background/Image0110.png and b/sprites/frames/mm_background/Image0110.png differ diff --git a/sprites/frames/mm_background/Image0110.png.import b/sprites/frames/mm_background/Image0110.png.import index f072fc2..c5017c0 100644 --- a/sprites/frames/mm_background/Image0110.png.import +++ b/sprites/frames/mm_background/Image0110.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://v72fq81kpgdc" +uid="uid://4t3so3s75201" path="res://.godot/imported/Image0110.png-653947d54ce54ec3e990fdadef85b029.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0111.png b/sprites/frames/mm_background/Image0111.png index 3971be8..2eac9db 100644 Binary files a/sprites/frames/mm_background/Image0111.png and b/sprites/frames/mm_background/Image0111.png differ diff --git a/sprites/frames/mm_background/Image0111.png.import b/sprites/frames/mm_background/Image0111.png.import index 26e9874..9f03742 100644 --- a/sprites/frames/mm_background/Image0111.png.import +++ b/sprites/frames/mm_background/Image0111.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c5vnubktf1hog" +uid="uid://bfqe1oi8cmr8m" path="res://.godot/imported/Image0111.png-69482d4372c87cf2e3fc8bfdbd3e621e.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0112.png b/sprites/frames/mm_background/Image0112.png index 7e0f7d5..d56cd04 100644 Binary files a/sprites/frames/mm_background/Image0112.png and b/sprites/frames/mm_background/Image0112.png differ diff --git a/sprites/frames/mm_background/Image0112.png.import b/sprites/frames/mm_background/Image0112.png.import index e355085..958c3be 100644 --- a/sprites/frames/mm_background/Image0112.png.import +++ b/sprites/frames/mm_background/Image0112.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c3hunftbe0pn4" +uid="uid://b0c4ysywqdf8i" path="res://.godot/imported/Image0112.png-065676e4d893438ca641d65438cdd565.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0113.png b/sprites/frames/mm_background/Image0113.png index 3aef783..5d4d920 100644 Binary files a/sprites/frames/mm_background/Image0113.png and b/sprites/frames/mm_background/Image0113.png differ diff --git a/sprites/frames/mm_background/Image0113.png.import b/sprites/frames/mm_background/Image0113.png.import index 4e8898f..bca716e 100644 --- a/sprites/frames/mm_background/Image0113.png.import +++ b/sprites/frames/mm_background/Image0113.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dj66kob6x13j5" +uid="uid://bycaru76sgul5" path="res://.godot/imported/Image0113.png-ab4574b4ad9bc5c9778e6f5c00d40250.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0114.png b/sprites/frames/mm_background/Image0114.png index d13963c..14461af 100644 Binary files a/sprites/frames/mm_background/Image0114.png and b/sprites/frames/mm_background/Image0114.png differ diff --git a/sprites/frames/mm_background/Image0114.png.import b/sprites/frames/mm_background/Image0114.png.import index 70c54f4..519ec4e 100644 --- a/sprites/frames/mm_background/Image0114.png.import +++ b/sprites/frames/mm_background/Image0114.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dki8foy8ylw3f" +uid="uid://bex5pm2wdr6ny" path="res://.godot/imported/Image0114.png-a26d790212d9084f1eb0a96052f435a9.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0115.png b/sprites/frames/mm_background/Image0115.png index 0e29a0a..b1d2a11 100644 Binary files a/sprites/frames/mm_background/Image0115.png and b/sprites/frames/mm_background/Image0115.png differ diff --git a/sprites/frames/mm_background/Image0115.png.import b/sprites/frames/mm_background/Image0115.png.import index d458753..124eef6 100644 --- a/sprites/frames/mm_background/Image0115.png.import +++ b/sprites/frames/mm_background/Image0115.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b3515646wnyti" +uid="uid://c0wbirq7lj5ca" path="res://.godot/imported/Image0115.png-222da16831c513c8d6743bd94be4ceca.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0116.png b/sprites/frames/mm_background/Image0116.png index a8077b7..ac1b5d2 100644 Binary files a/sprites/frames/mm_background/Image0116.png and b/sprites/frames/mm_background/Image0116.png differ diff --git a/sprites/frames/mm_background/Image0116.png.import b/sprites/frames/mm_background/Image0116.png.import index 8b8493d..79c231d 100644 --- a/sprites/frames/mm_background/Image0116.png.import +++ b/sprites/frames/mm_background/Image0116.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bd1p5ble18gxc" +uid="uid://diwyb0rsyae85" path="res://.godot/imported/Image0116.png-12d428f8866fcf1113da19654b7a3970.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0117.png b/sprites/frames/mm_background/Image0117.png index f79506e..d367c9c 100644 Binary files a/sprites/frames/mm_background/Image0117.png and b/sprites/frames/mm_background/Image0117.png differ diff --git a/sprites/frames/mm_background/Image0117.png.import b/sprites/frames/mm_background/Image0117.png.import index eaeca4a..fc60ada 100644 --- a/sprites/frames/mm_background/Image0117.png.import +++ b/sprites/frames/mm_background/Image0117.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://616itcd2r38" +uid="uid://30kux0yyeebc" path="res://.godot/imported/Image0117.png-3e1063f7eb6978535e1d7162663601e8.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0118.png b/sprites/frames/mm_background/Image0118.png index cccc894..6a0c6c2 100644 Binary files a/sprites/frames/mm_background/Image0118.png and b/sprites/frames/mm_background/Image0118.png differ diff --git a/sprites/frames/mm_background/Image0118.png.import b/sprites/frames/mm_background/Image0118.png.import index f1e5457..c172df7 100644 --- a/sprites/frames/mm_background/Image0118.png.import +++ b/sprites/frames/mm_background/Image0118.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ekx6i1544a7t" +uid="uid://npdpgtsp617y" path="res://.godot/imported/Image0118.png-cca09f1a75f9cfc8933326f49831fe64.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0119.png b/sprites/frames/mm_background/Image0119.png index b06b370..b773e66 100644 Binary files a/sprites/frames/mm_background/Image0119.png and b/sprites/frames/mm_background/Image0119.png differ diff --git a/sprites/frames/mm_background/Image0119.png.import b/sprites/frames/mm_background/Image0119.png.import index 0cccab0..062dd12 100644 --- a/sprites/frames/mm_background/Image0119.png.import +++ b/sprites/frames/mm_background/Image0119.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://du244vpxf2vop" +uid="uid://bs6yulirwkvvo" path="res://.godot/imported/Image0119.png-5e2fde6c64cf7ff8a7b20c6686a47f06.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0120.png b/sprites/frames/mm_background/Image0120.png index d970db0..39d2f76 100644 Binary files a/sprites/frames/mm_background/Image0120.png and b/sprites/frames/mm_background/Image0120.png differ diff --git a/sprites/frames/mm_background/Image0120.png.import b/sprites/frames/mm_background/Image0120.png.import index 3bdf336..dbd82c5 100644 --- a/sprites/frames/mm_background/Image0120.png.import +++ b/sprites/frames/mm_background/Image0120.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://taurnvhwu336" +uid="uid://bs6q7wmvu4764" path="res://.godot/imported/Image0120.png-b3c4a5d2ee4afd1849b4f996ef5886cc.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0121.png b/sprites/frames/mm_background/Image0121.png index ac1dde0..4c38ec4 100644 Binary files a/sprites/frames/mm_background/Image0121.png and b/sprites/frames/mm_background/Image0121.png differ diff --git a/sprites/frames/mm_background/Image0121.png.import b/sprites/frames/mm_background/Image0121.png.import index 61c82aa..515d11d 100644 --- a/sprites/frames/mm_background/Image0121.png.import +++ b/sprites/frames/mm_background/Image0121.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://btobs3r5gtghi" +uid="uid://yedg6ii6wflh" path="res://.godot/imported/Image0121.png-ca153c20bbf143576b6256c79ee79967.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0122.png b/sprites/frames/mm_background/Image0122.png index b566fac..67e8398 100644 Binary files a/sprites/frames/mm_background/Image0122.png and b/sprites/frames/mm_background/Image0122.png differ diff --git a/sprites/frames/mm_background/Image0122.png.import b/sprites/frames/mm_background/Image0122.png.import index b445851..dbe75a3 100644 --- a/sprites/frames/mm_background/Image0122.png.import +++ b/sprites/frames/mm_background/Image0122.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bg77uyb31ye2" +uid="uid://c3lf3dokh23d0" path="res://.godot/imported/Image0122.png-5189c8741363cb9c3387bc892d92e8af.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0123.png b/sprites/frames/mm_background/Image0123.png index f129bc2..0203da2 100644 Binary files a/sprites/frames/mm_background/Image0123.png and b/sprites/frames/mm_background/Image0123.png differ diff --git a/sprites/frames/mm_background/Image0123.png.import b/sprites/frames/mm_background/Image0123.png.import index bfa159c..e81e40a 100644 --- a/sprites/frames/mm_background/Image0123.png.import +++ b/sprites/frames/mm_background/Image0123.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bv66d5dju2a2i" +uid="uid://cix5iw0runnuh" path="res://.godot/imported/Image0123.png-b1414f926bf6b39d519baf4d1543d509.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0124.png b/sprites/frames/mm_background/Image0124.png index 39869bb..1e3352d 100644 Binary files a/sprites/frames/mm_background/Image0124.png and b/sprites/frames/mm_background/Image0124.png differ diff --git a/sprites/frames/mm_background/Image0124.png.import b/sprites/frames/mm_background/Image0124.png.import index 7c57d3c..a4af676 100644 --- a/sprites/frames/mm_background/Image0124.png.import +++ b/sprites/frames/mm_background/Image0124.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://hlhedu10kh6d" +uid="uid://do5c3nfikmqf0" path="res://.godot/imported/Image0124.png-c522f3f1791913d7c42e2b591578447a.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0125.png b/sprites/frames/mm_background/Image0125.png index 9151bf3..e64babe 100644 Binary files a/sprites/frames/mm_background/Image0125.png and b/sprites/frames/mm_background/Image0125.png differ diff --git a/sprites/frames/mm_background/Image0125.png.import b/sprites/frames/mm_background/Image0125.png.import index 36f7152..5ad963e 100644 --- a/sprites/frames/mm_background/Image0125.png.import +++ b/sprites/frames/mm_background/Image0125.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bbpmorww6ws75" +uid="uid://c3uet66k3nkyj" path="res://.godot/imported/Image0125.png-2d876568fb4a9f9f001f18289dd388bd.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0126.png b/sprites/frames/mm_background/Image0126.png index c849526..0130928 100644 Binary files a/sprites/frames/mm_background/Image0126.png and b/sprites/frames/mm_background/Image0126.png differ diff --git a/sprites/frames/mm_background/Image0126.png.import b/sprites/frames/mm_background/Image0126.png.import index 7c38fcc..4c62a9d 100644 --- a/sprites/frames/mm_background/Image0126.png.import +++ b/sprites/frames/mm_background/Image0126.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cs01pdaj22x22" +uid="uid://btkuvd11ghkbb" path="res://.godot/imported/Image0126.png-3e612378f3cb10dc02b761de334baf24.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0127.png b/sprites/frames/mm_background/Image0127.png index 19ce5fa..aac2507 100644 Binary files a/sprites/frames/mm_background/Image0127.png and b/sprites/frames/mm_background/Image0127.png differ diff --git a/sprites/frames/mm_background/Image0127.png.import b/sprites/frames/mm_background/Image0127.png.import index 73eda13..ee99e78 100644 --- a/sprites/frames/mm_background/Image0127.png.import +++ b/sprites/frames/mm_background/Image0127.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://by6i8is2gak3s" +uid="uid://y7y3vdweb32q" path="res://.godot/imported/Image0127.png-dd238cc22da7eb238e934531e925ad8b.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0128.png b/sprites/frames/mm_background/Image0128.png index e48b250..d0c2a06 100644 Binary files a/sprites/frames/mm_background/Image0128.png and b/sprites/frames/mm_background/Image0128.png differ diff --git a/sprites/frames/mm_background/Image0128.png.import b/sprites/frames/mm_background/Image0128.png.import index 93d4b4f..ce32bd2 100644 --- a/sprites/frames/mm_background/Image0128.png.import +++ b/sprites/frames/mm_background/Image0128.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b7qddqpt4na4p" +uid="uid://b0ocf5tl7stn" path="res://.godot/imported/Image0128.png-ac2f6f1f11036a39d02fdf174817f7bb.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0129.png b/sprites/frames/mm_background/Image0129.png index 2a54762..bfc16cb 100644 Binary files a/sprites/frames/mm_background/Image0129.png and b/sprites/frames/mm_background/Image0129.png differ diff --git a/sprites/frames/mm_background/Image0129.png.import b/sprites/frames/mm_background/Image0129.png.import index 151508e..98a131c 100644 --- a/sprites/frames/mm_background/Image0129.png.import +++ b/sprites/frames/mm_background/Image0129.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bd6u3rntj0tiy" +uid="uid://c07cxgawbf8cj" path="res://.godot/imported/Image0129.png-16adf4114117503488f3d1e2ac6d4df1.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0130.png b/sprites/frames/mm_background/Image0130.png index 7c9b516..6b1af3d 100644 Binary files a/sprites/frames/mm_background/Image0130.png and b/sprites/frames/mm_background/Image0130.png differ diff --git a/sprites/frames/mm_background/Image0130.png.import b/sprites/frames/mm_background/Image0130.png.import index ee59b88..e18ca8e 100644 --- a/sprites/frames/mm_background/Image0130.png.import +++ b/sprites/frames/mm_background/Image0130.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c843epssc7p7u" +uid="uid://dkiedngkj7dt2" path="res://.godot/imported/Image0130.png-841c66f79da7b69ead94e6e24f39e4a4.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0131.png b/sprites/frames/mm_background/Image0131.png index 6df8675..8a32476 100644 Binary files a/sprites/frames/mm_background/Image0131.png and b/sprites/frames/mm_background/Image0131.png differ diff --git a/sprites/frames/mm_background/Image0131.png.import b/sprites/frames/mm_background/Image0131.png.import index 9d82480..0229375 100644 --- a/sprites/frames/mm_background/Image0131.png.import +++ b/sprites/frames/mm_background/Image0131.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bdyajmx7sn7eg" +uid="uid://cmt0b555cm6fc" path="res://.godot/imported/Image0131.png-94e4062c436e5e8c742eb8ff880fee0e.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0132.png b/sprites/frames/mm_background/Image0132.png index 0b81f62..0898638 100644 Binary files a/sprites/frames/mm_background/Image0132.png and b/sprites/frames/mm_background/Image0132.png differ diff --git a/sprites/frames/mm_background/Image0132.png.import b/sprites/frames/mm_background/Image0132.png.import index 79bcc8a..011a2ec 100644 --- a/sprites/frames/mm_background/Image0132.png.import +++ b/sprites/frames/mm_background/Image0132.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d077nas4ixdl5" +uid="uid://o6hj6rvbdacw" path="res://.godot/imported/Image0132.png-85fe67983e82ab15973b1cbb5aba36ee.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0133.png b/sprites/frames/mm_background/Image0133.png index 7e12c87..f30442c 100644 Binary files a/sprites/frames/mm_background/Image0133.png and b/sprites/frames/mm_background/Image0133.png differ diff --git a/sprites/frames/mm_background/Image0133.png.import b/sprites/frames/mm_background/Image0133.png.import index a9de69c..0ce80ac 100644 --- a/sprites/frames/mm_background/Image0133.png.import +++ b/sprites/frames/mm_background/Image0133.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c4py1rq7akbnw" +uid="uid://dx6pcdak4udib" path="res://.godot/imported/Image0133.png-7147678966b2ffb8ebb89e80d28cb2e6.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0134.png b/sprites/frames/mm_background/Image0134.png index e9859ef..78cf87d 100644 Binary files a/sprites/frames/mm_background/Image0134.png and b/sprites/frames/mm_background/Image0134.png differ diff --git a/sprites/frames/mm_background/Image0134.png.import b/sprites/frames/mm_background/Image0134.png.import index d97b81e..6e4afd9 100644 --- a/sprites/frames/mm_background/Image0134.png.import +++ b/sprites/frames/mm_background/Image0134.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://37pw8dxpxwsr" +uid="uid://b03fbm3onv3e7" path="res://.godot/imported/Image0134.png-9b36a1b079279a7cbe93b0c8b64944bb.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0135.png b/sprites/frames/mm_background/Image0135.png index 6630419..56e8e68 100644 Binary files a/sprites/frames/mm_background/Image0135.png and b/sprites/frames/mm_background/Image0135.png differ diff --git a/sprites/frames/mm_background/Image0135.png.import b/sprites/frames/mm_background/Image0135.png.import index 93f5e9c..6d4948b 100644 --- a/sprites/frames/mm_background/Image0135.png.import +++ b/sprites/frames/mm_background/Image0135.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bnbe303ma11a1" +uid="uid://ssirqb8s81nk" path="res://.godot/imported/Image0135.png-b15cebab1da91920c707d5681d55ba5f.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0136.png b/sprites/frames/mm_background/Image0136.png index e10c9a9..3d64d45 100644 Binary files a/sprites/frames/mm_background/Image0136.png and b/sprites/frames/mm_background/Image0136.png differ diff --git a/sprites/frames/mm_background/Image0136.png.import b/sprites/frames/mm_background/Image0136.png.import index 9d6ecc5..2700be9 100644 --- a/sprites/frames/mm_background/Image0136.png.import +++ b/sprites/frames/mm_background/Image0136.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dm065kv6jci36" +uid="uid://5l1ocbtx10kh" path="res://.godot/imported/Image0136.png-379a67b0bc1736730c4d10ee251003d8.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0137.png b/sprites/frames/mm_background/Image0137.png index 45f6ebe..d6bb61d 100644 Binary files a/sprites/frames/mm_background/Image0137.png and b/sprites/frames/mm_background/Image0137.png differ diff --git a/sprites/frames/mm_background/Image0137.png.import b/sprites/frames/mm_background/Image0137.png.import index c6b69d4..0119970 100644 --- a/sprites/frames/mm_background/Image0137.png.import +++ b/sprites/frames/mm_background/Image0137.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dq2gx22kl7j2u" +uid="uid://8qe7qf6tnbk" path="res://.godot/imported/Image0137.png-584e0a2fdf664367dfa4d8a0e1b9f907.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0138.png b/sprites/frames/mm_background/Image0138.png index 48b7afc..1761c87 100644 Binary files a/sprites/frames/mm_background/Image0138.png and b/sprites/frames/mm_background/Image0138.png differ diff --git a/sprites/frames/mm_background/Image0138.png.import b/sprites/frames/mm_background/Image0138.png.import index 4cf06e8..8507242 100644 --- a/sprites/frames/mm_background/Image0138.png.import +++ b/sprites/frames/mm_background/Image0138.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dqnnv0xj7lr8c" +uid="uid://umiur2c0druu" path="res://.godot/imported/Image0138.png-87eb9f4d2dcf9874a33d16a78073778e.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0139.png b/sprites/frames/mm_background/Image0139.png index d16e8de..804a2e4 100644 Binary files a/sprites/frames/mm_background/Image0139.png and b/sprites/frames/mm_background/Image0139.png differ diff --git a/sprites/frames/mm_background/Image0139.png.import b/sprites/frames/mm_background/Image0139.png.import index 35c0e4a..24cae31 100644 --- a/sprites/frames/mm_background/Image0139.png.import +++ b/sprites/frames/mm_background/Image0139.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bpskq80yq5smh" +uid="uid://dkunhnlp1k3dv" path="res://.godot/imported/Image0139.png-66ebfa002d586b89e3dbc1bc757fb245.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0140.png b/sprites/frames/mm_background/Image0140.png index b4d32a9..56800b2 100644 Binary files a/sprites/frames/mm_background/Image0140.png and b/sprites/frames/mm_background/Image0140.png differ diff --git a/sprites/frames/mm_background/Image0140.png.import b/sprites/frames/mm_background/Image0140.png.import index 046e3c6..b057a51 100644 --- a/sprites/frames/mm_background/Image0140.png.import +++ b/sprites/frames/mm_background/Image0140.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://gs7g8fhdd65m" +uid="uid://dv0g00ldfay6g" path="res://.godot/imported/Image0140.png-5decbfacb1aadf9719a8880b40e00963.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0141.png b/sprites/frames/mm_background/Image0141.png index bf2e152..8f31d80 100644 Binary files a/sprites/frames/mm_background/Image0141.png and b/sprites/frames/mm_background/Image0141.png differ diff --git a/sprites/frames/mm_background/Image0141.png.import b/sprites/frames/mm_background/Image0141.png.import index 338a441..c12c4f7 100644 --- a/sprites/frames/mm_background/Image0141.png.import +++ b/sprites/frames/mm_background/Image0141.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cd1ygkixlup4n" +uid="uid://br454nqqfenin" path="res://.godot/imported/Image0141.png-737f742a1ecbd3f19299504313376688.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0142.png b/sprites/frames/mm_background/Image0142.png index cd98234..9e3a312 100644 Binary files a/sprites/frames/mm_background/Image0142.png and b/sprites/frames/mm_background/Image0142.png differ diff --git a/sprites/frames/mm_background/Image0142.png.import b/sprites/frames/mm_background/Image0142.png.import index deefe0c..e5853b8 100644 --- a/sprites/frames/mm_background/Image0142.png.import +++ b/sprites/frames/mm_background/Image0142.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c63j32xwh3yh5" +uid="uid://dhhn3pu4dktfq" path="res://.godot/imported/Image0142.png-4915b9d6aa640629d6269207c507cccb.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0143.png b/sprites/frames/mm_background/Image0143.png index c8e219e..460f50d 100644 Binary files a/sprites/frames/mm_background/Image0143.png and b/sprites/frames/mm_background/Image0143.png differ diff --git a/sprites/frames/mm_background/Image0143.png.import b/sprites/frames/mm_background/Image0143.png.import index d90dd1d..c96915c 100644 --- a/sprites/frames/mm_background/Image0143.png.import +++ b/sprites/frames/mm_background/Image0143.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://2p531u7xn7sw" +uid="uid://bkc2gnb5xg2c6" path="res://.godot/imported/Image0143.png-d988cf062d5da88d2a5aadd3396e666a.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0144.png b/sprites/frames/mm_background/Image0144.png index 056cc6c..3ebdcc4 100644 Binary files a/sprites/frames/mm_background/Image0144.png and b/sprites/frames/mm_background/Image0144.png differ diff --git a/sprites/frames/mm_background/Image0144.png.import b/sprites/frames/mm_background/Image0144.png.import index cedf5fc..3a8f1fe 100644 --- a/sprites/frames/mm_background/Image0144.png.import +++ b/sprites/frames/mm_background/Image0144.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://df3drrnmskqk3" +uid="uid://l8b8ut1q7iwa" path="res://.godot/imported/Image0144.png-7757c7148296934248b43adfe1dac125.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0145.png b/sprites/frames/mm_background/Image0145.png index b5149b4..b42083a 100644 Binary files a/sprites/frames/mm_background/Image0145.png and b/sprites/frames/mm_background/Image0145.png differ diff --git a/sprites/frames/mm_background/Image0145.png.import b/sprites/frames/mm_background/Image0145.png.import index bf68a14..05b6714 100644 --- a/sprites/frames/mm_background/Image0145.png.import +++ b/sprites/frames/mm_background/Image0145.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dvlb0rx0rbs1j" +uid="uid://rk3qwk4lt3e4" path="res://.godot/imported/Image0145.png-14901ee45a990cf42733733944ea7d06.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0146.png b/sprites/frames/mm_background/Image0146.png index 544610e..f4e10f7 100644 Binary files a/sprites/frames/mm_background/Image0146.png and b/sprites/frames/mm_background/Image0146.png differ diff --git a/sprites/frames/mm_background/Image0146.png.import b/sprites/frames/mm_background/Image0146.png.import index cb5a9c3..2be47fa 100644 --- a/sprites/frames/mm_background/Image0146.png.import +++ b/sprites/frames/mm_background/Image0146.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bew1b6ot0vvt7" +uid="uid://b45gypydo7lcr" path="res://.godot/imported/Image0146.png-2c532c666e7531309f38cb679855ad2a.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0147.png b/sprites/frames/mm_background/Image0147.png index 53679eb..d50572c 100644 Binary files a/sprites/frames/mm_background/Image0147.png and b/sprites/frames/mm_background/Image0147.png differ diff --git a/sprites/frames/mm_background/Image0147.png.import b/sprites/frames/mm_background/Image0147.png.import index 4525c87..08661d9 100644 --- a/sprites/frames/mm_background/Image0147.png.import +++ b/sprites/frames/mm_background/Image0147.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d0k4wqgpwp4to" +uid="uid://nybdbjidxyit" path="res://.godot/imported/Image0147.png-f9d300e4c301380b15ade9ab9a73cde5.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0148.png b/sprites/frames/mm_background/Image0148.png index ed93adb..2cb952c 100644 Binary files a/sprites/frames/mm_background/Image0148.png and b/sprites/frames/mm_background/Image0148.png differ diff --git a/sprites/frames/mm_background/Image0148.png.import b/sprites/frames/mm_background/Image0148.png.import index d907b96..1de7a82 100644 --- a/sprites/frames/mm_background/Image0148.png.import +++ b/sprites/frames/mm_background/Image0148.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cvxeif7wg43hd" +uid="uid://6c33ekmwqcfk" path="res://.godot/imported/Image0148.png-3983be03cc2957b24ad92d344a4a675a.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0149.png b/sprites/frames/mm_background/Image0149.png index e9f9f84..2a577c1 100644 Binary files a/sprites/frames/mm_background/Image0149.png and b/sprites/frames/mm_background/Image0149.png differ diff --git a/sprites/frames/mm_background/Image0149.png.import b/sprites/frames/mm_background/Image0149.png.import index 9a364e1..bb04c05 100644 --- a/sprites/frames/mm_background/Image0149.png.import +++ b/sprites/frames/mm_background/Image0149.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b68u13jkeutdk" +uid="uid://b6ndg6t6n3gnh" path="res://.godot/imported/Image0149.png-20eb5f310fb3a6d98141303e3799a36d.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0150.png b/sprites/frames/mm_background/Image0150.png index ea3ae84..8751d6f 100644 Binary files a/sprites/frames/mm_background/Image0150.png and b/sprites/frames/mm_background/Image0150.png differ diff --git a/sprites/frames/mm_background/Image0150.png.import b/sprites/frames/mm_background/Image0150.png.import index 44a1b8f..96e1b6e 100644 --- a/sprites/frames/mm_background/Image0150.png.import +++ b/sprites/frames/mm_background/Image0150.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://doky1a7opukfu" +uid="uid://cit76pss8brtv" path="res://.godot/imported/Image0150.png-21568c054b000d4cd820b8cb0b33cbd3.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0151.png b/sprites/frames/mm_background/Image0151.png index 2112203..6d2f5fe 100644 Binary files a/sprites/frames/mm_background/Image0151.png and b/sprites/frames/mm_background/Image0151.png differ diff --git a/sprites/frames/mm_background/Image0151.png.import b/sprites/frames/mm_background/Image0151.png.import index 0378d48..fbeb277 100644 --- a/sprites/frames/mm_background/Image0151.png.import +++ b/sprites/frames/mm_background/Image0151.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d271doeu6xv3w" +uid="uid://xb8l58igkk82" path="res://.godot/imported/Image0151.png-26129099b3c5fce9f6d84cf0adc052cc.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0152.png b/sprites/frames/mm_background/Image0152.png index 925b91f..4ecb8ef 100644 Binary files a/sprites/frames/mm_background/Image0152.png and b/sprites/frames/mm_background/Image0152.png differ diff --git a/sprites/frames/mm_background/Image0152.png.import b/sprites/frames/mm_background/Image0152.png.import index e430acc..ed6560d 100644 --- a/sprites/frames/mm_background/Image0152.png.import +++ b/sprites/frames/mm_background/Image0152.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cv42jyo0qtst7" +uid="uid://5p7u75wmkqx1" path="res://.godot/imported/Image0152.png-db6e8eb070acd1b6ed6d21918c67c432.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0153.png b/sprites/frames/mm_background/Image0153.png index 00ed186..0408e3c 100644 Binary files a/sprites/frames/mm_background/Image0153.png and b/sprites/frames/mm_background/Image0153.png differ diff --git a/sprites/frames/mm_background/Image0153.png.import b/sprites/frames/mm_background/Image0153.png.import index 44d21c1..d53e7f9 100644 --- a/sprites/frames/mm_background/Image0153.png.import +++ b/sprites/frames/mm_background/Image0153.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d28gp3gcxgdrp" +uid="uid://vc6j3yc316cn" path="res://.godot/imported/Image0153.png-c944830a0f8a45feac248318bac3f0ca.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0154.png b/sprites/frames/mm_background/Image0154.png index 0d3bdcb..74361ab 100644 Binary files a/sprites/frames/mm_background/Image0154.png and b/sprites/frames/mm_background/Image0154.png differ diff --git a/sprites/frames/mm_background/Image0154.png.import b/sprites/frames/mm_background/Image0154.png.import index 03c17c8..8cd98d4 100644 --- a/sprites/frames/mm_background/Image0154.png.import +++ b/sprites/frames/mm_background/Image0154.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://h7lkx7hj8m8b" +uid="uid://bsrbbwmrqdo0k" path="res://.godot/imported/Image0154.png-b738069b9c5931406030fd6c8d47358e.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0155.png b/sprites/frames/mm_background/Image0155.png index c3e8b3b..be44168 100644 Binary files a/sprites/frames/mm_background/Image0155.png and b/sprites/frames/mm_background/Image0155.png differ diff --git a/sprites/frames/mm_background/Image0155.png.import b/sprites/frames/mm_background/Image0155.png.import index cc8e09e..8a5ae17 100644 --- a/sprites/frames/mm_background/Image0155.png.import +++ b/sprites/frames/mm_background/Image0155.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://kq5b1gs2gxqs" +uid="uid://0ii7jwy2j28c" path="res://.godot/imported/Image0155.png-d14b2cb18fa2a2b77b4b331dd11c4de6.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0156.png b/sprites/frames/mm_background/Image0156.png index 7ca8a48..f44397c 100644 Binary files a/sprites/frames/mm_background/Image0156.png and b/sprites/frames/mm_background/Image0156.png differ diff --git a/sprites/frames/mm_background/Image0156.png.import b/sprites/frames/mm_background/Image0156.png.import index 5e7451e..2bdf094 100644 --- a/sprites/frames/mm_background/Image0156.png.import +++ b/sprites/frames/mm_background/Image0156.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dfet5aqg0odaj" +uid="uid://c57g8afun58ak" path="res://.godot/imported/Image0156.png-37e4bbce9f5d91df833b8a717bc87233.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0157.png b/sprites/frames/mm_background/Image0157.png index bdfdf35..4b2a997 100644 Binary files a/sprites/frames/mm_background/Image0157.png and b/sprites/frames/mm_background/Image0157.png differ diff --git a/sprites/frames/mm_background/Image0157.png.import b/sprites/frames/mm_background/Image0157.png.import index 3eaad9a..7bdca45 100644 --- a/sprites/frames/mm_background/Image0157.png.import +++ b/sprites/frames/mm_background/Image0157.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://yupepkv3jqvx" +uid="uid://bmmm1piy6245t" path="res://.godot/imported/Image0157.png-35cfef1b2c517c75ed18c348ded0cc50.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0158.png b/sprites/frames/mm_background/Image0158.png index dc23c0c..c34e2f5 100644 Binary files a/sprites/frames/mm_background/Image0158.png and b/sprites/frames/mm_background/Image0158.png differ diff --git a/sprites/frames/mm_background/Image0158.png.import b/sprites/frames/mm_background/Image0158.png.import index 22cc14f..36cfbbf 100644 --- a/sprites/frames/mm_background/Image0158.png.import +++ b/sprites/frames/mm_background/Image0158.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ctrwqi4xm1ym3" +uid="uid://gwgil38lc5vm" path="res://.godot/imported/Image0158.png-17f5c72b19683d0f10be043bdbd415d7.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0159.png b/sprites/frames/mm_background/Image0159.png index abbf8a2..c9b9d64 100644 Binary files a/sprites/frames/mm_background/Image0159.png and b/sprites/frames/mm_background/Image0159.png differ diff --git a/sprites/frames/mm_background/Image0159.png.import b/sprites/frames/mm_background/Image0159.png.import index 7f95997..62d8b83 100644 --- a/sprites/frames/mm_background/Image0159.png.import +++ b/sprites/frames/mm_background/Image0159.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://di0aim5f0mrjk" +uid="uid://cupvjtjik05od" path="res://.godot/imported/Image0159.png-2388f4ed8fbe0eb65a6b3b2fd8e4236b.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0160.png b/sprites/frames/mm_background/Image0160.png index 4a8216f..f9227c5 100644 Binary files a/sprites/frames/mm_background/Image0160.png and b/sprites/frames/mm_background/Image0160.png differ diff --git a/sprites/frames/mm_background/Image0160.png.import b/sprites/frames/mm_background/Image0160.png.import index 1a9ee11..8effc37 100644 --- a/sprites/frames/mm_background/Image0160.png.import +++ b/sprites/frames/mm_background/Image0160.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://df2yu84impomo" +uid="uid://ct46nbh6rvo0w" path="res://.godot/imported/Image0160.png-66b5ce4cf4b1e5aa514ea996a1d9c526.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0161.png b/sprites/frames/mm_background/Image0161.png index c4c3952..d7b101b 100644 Binary files a/sprites/frames/mm_background/Image0161.png and b/sprites/frames/mm_background/Image0161.png differ diff --git a/sprites/frames/mm_background/Image0161.png.import b/sprites/frames/mm_background/Image0161.png.import index 5131772..8b0ea84 100644 --- a/sprites/frames/mm_background/Image0161.png.import +++ b/sprites/frames/mm_background/Image0161.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://clhfax5k6m0au" +uid="uid://d2paebsa0gi42" path="res://.godot/imported/Image0161.png-53a403ce63220de16ce65da50b705fab.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0162.png b/sprites/frames/mm_background/Image0162.png index 04ddd29..d7a86e8 100644 Binary files a/sprites/frames/mm_background/Image0162.png and b/sprites/frames/mm_background/Image0162.png differ diff --git a/sprites/frames/mm_background/Image0162.png.import b/sprites/frames/mm_background/Image0162.png.import index fbf0073..7bc2ed7 100644 --- a/sprites/frames/mm_background/Image0162.png.import +++ b/sprites/frames/mm_background/Image0162.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://12mqu3qcdoun" +uid="uid://45ncka6spctb" path="res://.godot/imported/Image0162.png-2d8b6517803c298fb3d1381b90659f50.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0163.png b/sprites/frames/mm_background/Image0163.png index eef6921..5c532ed 100644 Binary files a/sprites/frames/mm_background/Image0163.png and b/sprites/frames/mm_background/Image0163.png differ diff --git a/sprites/frames/mm_background/Image0163.png.import b/sprites/frames/mm_background/Image0163.png.import index 9455b79..4949761 100644 --- a/sprites/frames/mm_background/Image0163.png.import +++ b/sprites/frames/mm_background/Image0163.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bk5low2vskv81" +uid="uid://0kvg541xer25" path="res://.godot/imported/Image0163.png-bffebb48b3b7344e6523955a6dfd4d75.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0164.png b/sprites/frames/mm_background/Image0164.png index 0ab4d72..942df75 100644 Binary files a/sprites/frames/mm_background/Image0164.png and b/sprites/frames/mm_background/Image0164.png differ diff --git a/sprites/frames/mm_background/Image0164.png.import b/sprites/frames/mm_background/Image0164.png.import index 5b2dc7a..73d3938 100644 --- a/sprites/frames/mm_background/Image0164.png.import +++ b/sprites/frames/mm_background/Image0164.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cw5xr3fkfmcxb" +uid="uid://bkvd55jo26wab" path="res://.godot/imported/Image0164.png-83fa7c1dd3b6cec5c020a0e12bda5de4.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0165.png b/sprites/frames/mm_background/Image0165.png index e891ad5..2692f40 100644 Binary files a/sprites/frames/mm_background/Image0165.png and b/sprites/frames/mm_background/Image0165.png differ diff --git a/sprites/frames/mm_background/Image0165.png.import b/sprites/frames/mm_background/Image0165.png.import index b1a94a9..f1d175b 100644 --- a/sprites/frames/mm_background/Image0165.png.import +++ b/sprites/frames/mm_background/Image0165.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cjsndr2rqg7mn" +uid="uid://bi4sc482h1jev" path="res://.godot/imported/Image0165.png-60bcb04d66adb7ec33f5f7145fa5487a.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0166.png b/sprites/frames/mm_background/Image0166.png index 3f1b130..6295296 100644 Binary files a/sprites/frames/mm_background/Image0166.png and b/sprites/frames/mm_background/Image0166.png differ diff --git a/sprites/frames/mm_background/Image0166.png.import b/sprites/frames/mm_background/Image0166.png.import index 69cbc82..69e564a 100644 --- a/sprites/frames/mm_background/Image0166.png.import +++ b/sprites/frames/mm_background/Image0166.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://betsy1776hs46" +uid="uid://dx1xry2xl0h1f" path="res://.godot/imported/Image0166.png-1ab5a065fa3f7e4bc872a56641633705.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0167.png b/sprites/frames/mm_background/Image0167.png index 6c872de..064cff3 100644 Binary files a/sprites/frames/mm_background/Image0167.png and b/sprites/frames/mm_background/Image0167.png differ diff --git a/sprites/frames/mm_background/Image0167.png.import b/sprites/frames/mm_background/Image0167.png.import index 6cee2fe..b393155 100644 --- a/sprites/frames/mm_background/Image0167.png.import +++ b/sprites/frames/mm_background/Image0167.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cr5nwfsx45xtu" +uid="uid://x4n26ifkh6km" path="res://.godot/imported/Image0167.png-eebd5513c5a1e30205939ae6c8013ac2.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0168.png b/sprites/frames/mm_background/Image0168.png index a14c5a8..f71ae25 100644 Binary files a/sprites/frames/mm_background/Image0168.png and b/sprites/frames/mm_background/Image0168.png differ diff --git a/sprites/frames/mm_background/Image0168.png.import b/sprites/frames/mm_background/Image0168.png.import index ad6d031..3dfd4d1 100644 --- a/sprites/frames/mm_background/Image0168.png.import +++ b/sprites/frames/mm_background/Image0168.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ccoga5dg6jxka" +uid="uid://bsbwvha8djq0b" path="res://.godot/imported/Image0168.png-2990905596f184dc36a3983132e8550b.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0169.png b/sprites/frames/mm_background/Image0169.png index ef0b9c9..a26dec2 100644 Binary files a/sprites/frames/mm_background/Image0169.png and b/sprites/frames/mm_background/Image0169.png differ diff --git a/sprites/frames/mm_background/Image0169.png.import b/sprites/frames/mm_background/Image0169.png.import index 4b23bc5..ae838c5 100644 --- a/sprites/frames/mm_background/Image0169.png.import +++ b/sprites/frames/mm_background/Image0169.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bwcx3q1em714k" +uid="uid://bycvvr53caljc" path="res://.godot/imported/Image0169.png-5993bf98bf1bd518af198387aec05e1c.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0170.png b/sprites/frames/mm_background/Image0170.png index 1c07586..b411e9a 100644 Binary files a/sprites/frames/mm_background/Image0170.png and b/sprites/frames/mm_background/Image0170.png differ diff --git a/sprites/frames/mm_background/Image0170.png.import b/sprites/frames/mm_background/Image0170.png.import index 4f90c90..fc43acb 100644 --- a/sprites/frames/mm_background/Image0170.png.import +++ b/sprites/frames/mm_background/Image0170.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://kb4w6oy0i3q4" +uid="uid://d3xwrjoux273u" path="res://.godot/imported/Image0170.png-4ce1856d4d138f4035ec3d889a8b202f.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0171.png b/sprites/frames/mm_background/Image0171.png index 971462a..4eb86bf 100644 Binary files a/sprites/frames/mm_background/Image0171.png and b/sprites/frames/mm_background/Image0171.png differ diff --git a/sprites/frames/mm_background/Image0171.png.import b/sprites/frames/mm_background/Image0171.png.import index 32a3cb0..3bbea64 100644 --- a/sprites/frames/mm_background/Image0171.png.import +++ b/sprites/frames/mm_background/Image0171.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b7375g76tkbk1" +uid="uid://bgy8oa46p40a" path="res://.godot/imported/Image0171.png-199c40ae5c702fe1471d03d1b4bd3478.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0172.png b/sprites/frames/mm_background/Image0172.png index 88137e2..a33b463 100644 Binary files a/sprites/frames/mm_background/Image0172.png and b/sprites/frames/mm_background/Image0172.png differ diff --git a/sprites/frames/mm_background/Image0172.png.import b/sprites/frames/mm_background/Image0172.png.import index ae33011..aa50ecc 100644 --- a/sprites/frames/mm_background/Image0172.png.import +++ b/sprites/frames/mm_background/Image0172.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bdiykqbqb1u33" +uid="uid://c1lo4cx8l0pki" path="res://.godot/imported/Image0172.png-7acdac0e4ba77a428150b370c709fb0b.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0173.png b/sprites/frames/mm_background/Image0173.png index 9c973f5..27df5cb 100644 Binary files a/sprites/frames/mm_background/Image0173.png and b/sprites/frames/mm_background/Image0173.png differ diff --git a/sprites/frames/mm_background/Image0173.png.import b/sprites/frames/mm_background/Image0173.png.import index 68f7e11..71c21e8 100644 --- a/sprites/frames/mm_background/Image0173.png.import +++ b/sprites/frames/mm_background/Image0173.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c20y7m1wudes7" +uid="uid://3yymttlm8ea2" path="res://.godot/imported/Image0173.png-6b36f852e6c2ed4d6e2fc37574817272.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0174.png b/sprites/frames/mm_background/Image0174.png index 2a0d489..df7b1f8 100644 Binary files a/sprites/frames/mm_background/Image0174.png and b/sprites/frames/mm_background/Image0174.png differ diff --git a/sprites/frames/mm_background/Image0174.png.import b/sprites/frames/mm_background/Image0174.png.import index 7c63d0d..e50a7d6 100644 --- a/sprites/frames/mm_background/Image0174.png.import +++ b/sprites/frames/mm_background/Image0174.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cy01ups3q2eja" +uid="uid://bj6yndtp0nl6k" path="res://.godot/imported/Image0174.png-2f856a06426145550324717a821e6848.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0175.png b/sprites/frames/mm_background/Image0175.png index cf6361b..3c618c4 100644 Binary files a/sprites/frames/mm_background/Image0175.png and b/sprites/frames/mm_background/Image0175.png differ diff --git a/sprites/frames/mm_background/Image0175.png.import b/sprites/frames/mm_background/Image0175.png.import index bd15da2..d5cc6f3 100644 --- a/sprites/frames/mm_background/Image0175.png.import +++ b/sprites/frames/mm_background/Image0175.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://m1ttcfj3uwqn" +uid="uid://b05hvklyr00s1" path="res://.godot/imported/Image0175.png-3cfdf69ae8246ac329855b46a237ac19.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0176.png b/sprites/frames/mm_background/Image0176.png index fb085ff..70c1e34 100644 Binary files a/sprites/frames/mm_background/Image0176.png and b/sprites/frames/mm_background/Image0176.png differ diff --git a/sprites/frames/mm_background/Image0176.png.import b/sprites/frames/mm_background/Image0176.png.import index ded3cfa..0513e1f 100644 --- a/sprites/frames/mm_background/Image0176.png.import +++ b/sprites/frames/mm_background/Image0176.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d07y6f0tlqpxm" +uid="uid://181sq338yy34" path="res://.godot/imported/Image0176.png-493f4296c8b1d48ad1f2549a1a9b3f47.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0177.png b/sprites/frames/mm_background/Image0177.png index 5f42b00..bf521c9 100644 Binary files a/sprites/frames/mm_background/Image0177.png and b/sprites/frames/mm_background/Image0177.png differ diff --git a/sprites/frames/mm_background/Image0177.png.import b/sprites/frames/mm_background/Image0177.png.import index a1d06b8..64ca8ea 100644 --- a/sprites/frames/mm_background/Image0177.png.import +++ b/sprites/frames/mm_background/Image0177.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bthdw3v5h0ds2" +uid="uid://cw2wkx3cafikr" path="res://.godot/imported/Image0177.png-180316e3e327732d878c64e24c9f7517.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0178.png b/sprites/frames/mm_background/Image0178.png index 81d31ab..453e94a 100644 Binary files a/sprites/frames/mm_background/Image0178.png and b/sprites/frames/mm_background/Image0178.png differ diff --git a/sprites/frames/mm_background/Image0178.png.import b/sprites/frames/mm_background/Image0178.png.import index eb222d6..76d2134 100644 --- a/sprites/frames/mm_background/Image0178.png.import +++ b/sprites/frames/mm_background/Image0178.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://clsfhhd15a05y" +uid="uid://evr0kssao7m3" path="res://.godot/imported/Image0178.png-757685c3a9c35ef854a968e01f6991b7.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0179.png b/sprites/frames/mm_background/Image0179.png index 02ff953..b69820b 100644 Binary files a/sprites/frames/mm_background/Image0179.png and b/sprites/frames/mm_background/Image0179.png differ diff --git a/sprites/frames/mm_background/Image0179.png.import b/sprites/frames/mm_background/Image0179.png.import index ee465cb..d014bb7 100644 --- a/sprites/frames/mm_background/Image0179.png.import +++ b/sprites/frames/mm_background/Image0179.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://r5k3enciw8i3" +uid="uid://bvrjprox1jdv3" path="res://.godot/imported/Image0179.png-c18b5701c7f9b68369e697d23eddf75a.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0180.png b/sprites/frames/mm_background/Image0180.png index c4468ba..7798aa6 100644 Binary files a/sprites/frames/mm_background/Image0180.png and b/sprites/frames/mm_background/Image0180.png differ diff --git a/sprites/frames/mm_background/Image0180.png.import b/sprites/frames/mm_background/Image0180.png.import index a44971d..681cbf6 100644 --- a/sprites/frames/mm_background/Image0180.png.import +++ b/sprites/frames/mm_background/Image0180.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://caf23p76l60p8" +uid="uid://dt7e7pyp5w2fw" path="res://.godot/imported/Image0180.png-d4c6af4ce6bffb8cc9eb0198a91031dd.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0181.png b/sprites/frames/mm_background/Image0181.png index 58d8156..7971395 100644 Binary files a/sprites/frames/mm_background/Image0181.png and b/sprites/frames/mm_background/Image0181.png differ diff --git a/sprites/frames/mm_background/Image0181.png.import b/sprites/frames/mm_background/Image0181.png.import index fdd74ef..69db2e5 100644 --- a/sprites/frames/mm_background/Image0181.png.import +++ b/sprites/frames/mm_background/Image0181.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://btu80nasbw0vn" +uid="uid://b88sai05bcyrk" path="res://.godot/imported/Image0181.png-de5d1b1dd32aa98c8894f1925df62341.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0182.png b/sprites/frames/mm_background/Image0182.png index 2a39741..1a8ade5 100644 Binary files a/sprites/frames/mm_background/Image0182.png and b/sprites/frames/mm_background/Image0182.png differ diff --git a/sprites/frames/mm_background/Image0182.png.import b/sprites/frames/mm_background/Image0182.png.import index 5193355..882b4fa 100644 --- a/sprites/frames/mm_background/Image0182.png.import +++ b/sprites/frames/mm_background/Image0182.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://2scamu235w02" +uid="uid://cfvtuouhriw74" path="res://.godot/imported/Image0182.png-7cebe68a813d54bc745442859bef6cfe.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0183.png b/sprites/frames/mm_background/Image0183.png index 498ed1d..561c747 100644 Binary files a/sprites/frames/mm_background/Image0183.png and b/sprites/frames/mm_background/Image0183.png differ diff --git a/sprites/frames/mm_background/Image0183.png.import b/sprites/frames/mm_background/Image0183.png.import index 475fa2f..85f3a05 100644 --- a/sprites/frames/mm_background/Image0183.png.import +++ b/sprites/frames/mm_background/Image0183.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://tmvxck6fudwh" +uid="uid://dp7mcklt31guk" path="res://.godot/imported/Image0183.png-3057b593b71e43005e82568692049dda.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0184.png b/sprites/frames/mm_background/Image0184.png index b4dad6b..912030d 100644 Binary files a/sprites/frames/mm_background/Image0184.png and b/sprites/frames/mm_background/Image0184.png differ diff --git a/sprites/frames/mm_background/Image0184.png.import b/sprites/frames/mm_background/Image0184.png.import index 89742be..641e9b5 100644 --- a/sprites/frames/mm_background/Image0184.png.import +++ b/sprites/frames/mm_background/Image0184.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://k3xqj0vo4b76" +uid="uid://bc3cl0u8ecraw" path="res://.godot/imported/Image0184.png-1f0fcd087e80b2e0db11d19b6f7bfaea.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0185.png b/sprites/frames/mm_background/Image0185.png index 9501f0e..c76d5f2 100644 Binary files a/sprites/frames/mm_background/Image0185.png and b/sprites/frames/mm_background/Image0185.png differ diff --git a/sprites/frames/mm_background/Image0185.png.import b/sprites/frames/mm_background/Image0185.png.import index a165a53..04a8573 100644 --- a/sprites/frames/mm_background/Image0185.png.import +++ b/sprites/frames/mm_background/Image0185.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://nyq2sovw1ypk" +uid="uid://d37wsm4dd6ms2" path="res://.godot/imported/Image0185.png-7aa51938c41e59c69c55b336cf7f1d48.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0186.png b/sprites/frames/mm_background/Image0186.png index 5517304..3b8d760 100644 Binary files a/sprites/frames/mm_background/Image0186.png and b/sprites/frames/mm_background/Image0186.png differ diff --git a/sprites/frames/mm_background/Image0186.png.import b/sprites/frames/mm_background/Image0186.png.import index b990af2..3887104 100644 --- a/sprites/frames/mm_background/Image0186.png.import +++ b/sprites/frames/mm_background/Image0186.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bvf1kt7l8px6x" +uid="uid://kk35kalm4j2d" path="res://.godot/imported/Image0186.png-9a617d57f1eb5696a2febe61fe8e70e3.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0187.png b/sprites/frames/mm_background/Image0187.png index 391995a..64cc0f8 100644 Binary files a/sprites/frames/mm_background/Image0187.png and b/sprites/frames/mm_background/Image0187.png differ diff --git a/sprites/frames/mm_background/Image0187.png.import b/sprites/frames/mm_background/Image0187.png.import index 7162bd0..4292544 100644 --- a/sprites/frames/mm_background/Image0187.png.import +++ b/sprites/frames/mm_background/Image0187.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ufsaqv4hbnsx" +uid="uid://b70u171x0f5di" path="res://.godot/imported/Image0187.png-cc6377a3676973e436206c48867acabd.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0188.png b/sprites/frames/mm_background/Image0188.png index e80688d..7642b5d 100644 Binary files a/sprites/frames/mm_background/Image0188.png and b/sprites/frames/mm_background/Image0188.png differ diff --git a/sprites/frames/mm_background/Image0188.png.import b/sprites/frames/mm_background/Image0188.png.import index 8c66053..40357c3 100644 --- a/sprites/frames/mm_background/Image0188.png.import +++ b/sprites/frames/mm_background/Image0188.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://l0etr148vdmt" +uid="uid://c5ih1khjaggr8" path="res://.godot/imported/Image0188.png-e5ad01ac5e1ec12ad84d16a06640a0d1.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0189.png b/sprites/frames/mm_background/Image0189.png index 8b70eb2..936dd44 100644 Binary files a/sprites/frames/mm_background/Image0189.png and b/sprites/frames/mm_background/Image0189.png differ diff --git a/sprites/frames/mm_background/Image0189.png.import b/sprites/frames/mm_background/Image0189.png.import index 3d3a4bb..f33c5f8 100644 --- a/sprites/frames/mm_background/Image0189.png.import +++ b/sprites/frames/mm_background/Image0189.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bm2ntkx23jbh1" +uid="uid://br5yw0os5ynfx" path="res://.godot/imported/Image0189.png-0d581d8e954ec4c5f27487379d28d5b0.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0190.png b/sprites/frames/mm_background/Image0190.png index c50aced..a53f34d 100644 Binary files a/sprites/frames/mm_background/Image0190.png and b/sprites/frames/mm_background/Image0190.png differ diff --git a/sprites/frames/mm_background/Image0190.png.import b/sprites/frames/mm_background/Image0190.png.import index 46f76ba..07c9c96 100644 --- a/sprites/frames/mm_background/Image0190.png.import +++ b/sprites/frames/mm_background/Image0190.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cdpkm6avmb5wx" +uid="uid://1vmp2ayu8jcy" path="res://.godot/imported/Image0190.png-e90999cab5d7873f7bfd9cda6c26531f.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0191.png b/sprites/frames/mm_background/Image0191.png index 92f939f..ed9a263 100644 Binary files a/sprites/frames/mm_background/Image0191.png and b/sprites/frames/mm_background/Image0191.png differ diff --git a/sprites/frames/mm_background/Image0191.png.import b/sprites/frames/mm_background/Image0191.png.import index fbc0645..8f71a29 100644 --- a/sprites/frames/mm_background/Image0191.png.import +++ b/sprites/frames/mm_background/Image0191.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://7e2k1utxksmk" +uid="uid://b8aic0up31b6f" path="res://.godot/imported/Image0191.png-f315ec1809a99828b9cccde8d2d487bb.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0192.png b/sprites/frames/mm_background/Image0192.png index 37f633f..fa424f1 100644 Binary files a/sprites/frames/mm_background/Image0192.png and b/sprites/frames/mm_background/Image0192.png differ diff --git a/sprites/frames/mm_background/Image0192.png.import b/sprites/frames/mm_background/Image0192.png.import index 91c14be..fb71429 100644 --- a/sprites/frames/mm_background/Image0192.png.import +++ b/sprites/frames/mm_background/Image0192.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c3xst5ce6jfj" +uid="uid://cvdahblolc4ik" path="res://.godot/imported/Image0192.png-4930b10ede1b47d3fea9afc60473dfaa.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0193.png b/sprites/frames/mm_background/Image0193.png index f3b1ec1..6d2dce2 100644 Binary files a/sprites/frames/mm_background/Image0193.png and b/sprites/frames/mm_background/Image0193.png differ diff --git a/sprites/frames/mm_background/Image0193.png.import b/sprites/frames/mm_background/Image0193.png.import index ad6eed7..eefec1c 100644 --- a/sprites/frames/mm_background/Image0193.png.import +++ b/sprites/frames/mm_background/Image0193.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cddb63jbfg0d5" +uid="uid://dxtd54j6cgxhj" path="res://.godot/imported/Image0193.png-1858a5632f07c0aed3e9b2523255f085.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0194.png b/sprites/frames/mm_background/Image0194.png index 0140686..e442edd 100644 Binary files a/sprites/frames/mm_background/Image0194.png and b/sprites/frames/mm_background/Image0194.png differ diff --git a/sprites/frames/mm_background/Image0194.png.import b/sprites/frames/mm_background/Image0194.png.import index fbe969d..60a74f4 100644 --- a/sprites/frames/mm_background/Image0194.png.import +++ b/sprites/frames/mm_background/Image0194.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dkoyrhry4tvnk" +uid="uid://b6r0ifxsccw2w" path="res://.godot/imported/Image0194.png-f3d1b2f7a65cdccd366afbd1072af522.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0195.png b/sprites/frames/mm_background/Image0195.png index 0ddccbf..6fae035 100644 Binary files a/sprites/frames/mm_background/Image0195.png and b/sprites/frames/mm_background/Image0195.png differ diff --git a/sprites/frames/mm_background/Image0195.png.import b/sprites/frames/mm_background/Image0195.png.import index 64a8166..a9f8183 100644 --- a/sprites/frames/mm_background/Image0195.png.import +++ b/sprites/frames/mm_background/Image0195.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://btbs735txb3wf" +uid="uid://bbxtxw2crtnqf" path="res://.godot/imported/Image0195.png-92af1a04db6adb4181ab9c62f00857c5.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0196.png b/sprites/frames/mm_background/Image0196.png index a9dd480..63af427 100644 Binary files a/sprites/frames/mm_background/Image0196.png and b/sprites/frames/mm_background/Image0196.png differ diff --git a/sprites/frames/mm_background/Image0196.png.import b/sprites/frames/mm_background/Image0196.png.import index 550f71b..2cebef0 100644 --- a/sprites/frames/mm_background/Image0196.png.import +++ b/sprites/frames/mm_background/Image0196.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://i4iobf6fcibc" +uid="uid://ci3ehu7qmtude" path="res://.godot/imported/Image0196.png-96a17dba07d7dd704f7f45e07a3c95ae.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0197.png b/sprites/frames/mm_background/Image0197.png index 0a36ecf..c35b3ff 100644 Binary files a/sprites/frames/mm_background/Image0197.png and b/sprites/frames/mm_background/Image0197.png differ diff --git a/sprites/frames/mm_background/Image0197.png.import b/sprites/frames/mm_background/Image0197.png.import index e183db7..156cb66 100644 --- a/sprites/frames/mm_background/Image0197.png.import +++ b/sprites/frames/mm_background/Image0197.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cgf6gk5qlcubq" +uid="uid://cv64bchilosrj" path="res://.godot/imported/Image0197.png-b06fe9916bd8552f37e13ee2f62d2b67.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0198.png b/sprites/frames/mm_background/Image0198.png index 60ee22e..cb2564b 100644 Binary files a/sprites/frames/mm_background/Image0198.png and b/sprites/frames/mm_background/Image0198.png differ diff --git a/sprites/frames/mm_background/Image0198.png.import b/sprites/frames/mm_background/Image0198.png.import index d88b702..c43d918 100644 --- a/sprites/frames/mm_background/Image0198.png.import +++ b/sprites/frames/mm_background/Image0198.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://8q7cpek4p25q" +uid="uid://lwde8x3pgfie" path="res://.godot/imported/Image0198.png-6f64124242f2565e2df5ef031ff4a213.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0199.png b/sprites/frames/mm_background/Image0199.png index c4c2347..db5217e 100644 Binary files a/sprites/frames/mm_background/Image0199.png and b/sprites/frames/mm_background/Image0199.png differ diff --git a/sprites/frames/mm_background/Image0199.png.import b/sprites/frames/mm_background/Image0199.png.import index 12a5a4e..8ae6d77 100644 --- a/sprites/frames/mm_background/Image0199.png.import +++ b/sprites/frames/mm_background/Image0199.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://m5u6x114q5wk" +uid="uid://dd2p8so1lpqc8" path="res://.godot/imported/Image0199.png-04b839548fbc0152727d74c25aa1fa81.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0200.png b/sprites/frames/mm_background/Image0200.png index d01f331..b6a7936 100644 Binary files a/sprites/frames/mm_background/Image0200.png and b/sprites/frames/mm_background/Image0200.png differ diff --git a/sprites/frames/mm_background/Image0200.png.import b/sprites/frames/mm_background/Image0200.png.import index 334b154..256a20a 100644 --- a/sprites/frames/mm_background/Image0200.png.import +++ b/sprites/frames/mm_background/Image0200.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dpuqx3bu1borj" +uid="uid://d0xpm1rn668iq" path="res://.godot/imported/Image0200.png-66818a48e68479806d84a15e27452b43.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0201.png b/sprites/frames/mm_background/Image0201.png index f347c75..5c81968 100644 Binary files a/sprites/frames/mm_background/Image0201.png and b/sprites/frames/mm_background/Image0201.png differ diff --git a/sprites/frames/mm_background/Image0201.png.import b/sprites/frames/mm_background/Image0201.png.import index 3802c56..6413cc6 100644 --- a/sprites/frames/mm_background/Image0201.png.import +++ b/sprites/frames/mm_background/Image0201.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dobdfhw7vhx3f" +uid="uid://8fc6uyshwnej" path="res://.godot/imported/Image0201.png-fc26b51e191bd9158ec7fd203709cf37.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0202.png b/sprites/frames/mm_background/Image0202.png index 9835438..b4fb50e 100644 Binary files a/sprites/frames/mm_background/Image0202.png and b/sprites/frames/mm_background/Image0202.png differ diff --git a/sprites/frames/mm_background/Image0202.png.import b/sprites/frames/mm_background/Image0202.png.import index 871b34b..6e43899 100644 --- a/sprites/frames/mm_background/Image0202.png.import +++ b/sprites/frames/mm_background/Image0202.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://da4hgldx30jwj" +uid="uid://c31cl1v8ns78a" path="res://.godot/imported/Image0202.png-4a02a69ac5bdf526e863b94d02877ec2.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0203.png b/sprites/frames/mm_background/Image0203.png index 9b5e594..476cba7 100644 Binary files a/sprites/frames/mm_background/Image0203.png and b/sprites/frames/mm_background/Image0203.png differ diff --git a/sprites/frames/mm_background/Image0203.png.import b/sprites/frames/mm_background/Image0203.png.import index 6058f95..8bd123d 100644 --- a/sprites/frames/mm_background/Image0203.png.import +++ b/sprites/frames/mm_background/Image0203.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dasejeqxx65xq" +uid="uid://dww6yrvrqa2i8" path="res://.godot/imported/Image0203.png-c9b2ab4286324b982665c645b9dfab2a.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0204.png b/sprites/frames/mm_background/Image0204.png index 8a0e08b..fe7063a 100644 Binary files a/sprites/frames/mm_background/Image0204.png and b/sprites/frames/mm_background/Image0204.png differ diff --git a/sprites/frames/mm_background/Image0204.png.import b/sprites/frames/mm_background/Image0204.png.import index f666606..fab6322 100644 --- a/sprites/frames/mm_background/Image0204.png.import +++ b/sprites/frames/mm_background/Image0204.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://blyx2fn8k45u4" +uid="uid://3ndsdw3ufcfx" path="res://.godot/imported/Image0204.png-b2c05a3f24a907422cd28a5ebaeca725.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0205.png b/sprites/frames/mm_background/Image0205.png index 69985d7..110cca9 100644 Binary files a/sprites/frames/mm_background/Image0205.png and b/sprites/frames/mm_background/Image0205.png differ diff --git a/sprites/frames/mm_background/Image0205.png.import b/sprites/frames/mm_background/Image0205.png.import index e96ad81..3ddf936 100644 --- a/sprites/frames/mm_background/Image0205.png.import +++ b/sprites/frames/mm_background/Image0205.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bvucrx2u2no17" +uid="uid://bdiybkhyefl2" path="res://.godot/imported/Image0205.png-06be301e097bc328fc735cd6e8365e32.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0206.png b/sprites/frames/mm_background/Image0206.png index a6f9a79..b686427 100644 Binary files a/sprites/frames/mm_background/Image0206.png and b/sprites/frames/mm_background/Image0206.png differ diff --git a/sprites/frames/mm_background/Image0206.png.import b/sprites/frames/mm_background/Image0206.png.import index 36eef13..8bc5949 100644 --- a/sprites/frames/mm_background/Image0206.png.import +++ b/sprites/frames/mm_background/Image0206.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d3mn7ogqxyonw" +uid="uid://bjhfgdjpvxjbb" path="res://.godot/imported/Image0206.png-066900581da1966737f9ff59245a4cf1.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0207.png b/sprites/frames/mm_background/Image0207.png index 5d23b85..22b0755 100644 Binary files a/sprites/frames/mm_background/Image0207.png and b/sprites/frames/mm_background/Image0207.png differ diff --git a/sprites/frames/mm_background/Image0207.png.import b/sprites/frames/mm_background/Image0207.png.import index dc353db..6b593c6 100644 --- a/sprites/frames/mm_background/Image0207.png.import +++ b/sprites/frames/mm_background/Image0207.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d0n56p6a7dyna" +uid="uid://beifxswgufy6g" path="res://.godot/imported/Image0207.png-43ba31601e849cb838bfd07d590cae18.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0208.png b/sprites/frames/mm_background/Image0208.png index 3efa3ff..5371a86 100644 Binary files a/sprites/frames/mm_background/Image0208.png and b/sprites/frames/mm_background/Image0208.png differ diff --git a/sprites/frames/mm_background/Image0208.png.import b/sprites/frames/mm_background/Image0208.png.import index fdf4486..8ea8002 100644 --- a/sprites/frames/mm_background/Image0208.png.import +++ b/sprites/frames/mm_background/Image0208.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b14iu1jwlfgtu" +uid="uid://bdovn0hpbauih" path="res://.godot/imported/Image0208.png-25ed26e23f35624c4843017c39769a66.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0209.png b/sprites/frames/mm_background/Image0209.png index 1138f21..f1f40f1 100644 Binary files a/sprites/frames/mm_background/Image0209.png and b/sprites/frames/mm_background/Image0209.png differ diff --git a/sprites/frames/mm_background/Image0209.png.import b/sprites/frames/mm_background/Image0209.png.import index f677a1d..ab0f5cf 100644 --- a/sprites/frames/mm_background/Image0209.png.import +++ b/sprites/frames/mm_background/Image0209.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cttsswk20vbam" +uid="uid://cexjjwbpjw36r" path="res://.godot/imported/Image0209.png-c75ae73d7e637e2bde4291daa483e1e0.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0210.png b/sprites/frames/mm_background/Image0210.png index 3b6c208..44ecfbf 100644 Binary files a/sprites/frames/mm_background/Image0210.png and b/sprites/frames/mm_background/Image0210.png differ diff --git a/sprites/frames/mm_background/Image0210.png.import b/sprites/frames/mm_background/Image0210.png.import index c194c82..db1e8b4 100644 --- a/sprites/frames/mm_background/Image0210.png.import +++ b/sprites/frames/mm_background/Image0210.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b4060b2gbj3ha" +uid="uid://brswfhmqbq7iw" path="res://.godot/imported/Image0210.png-b7fa8e9281c78a3b443cc005b53e7598.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0211.png b/sprites/frames/mm_background/Image0211.png index d00a8ad..db4ec5b 100644 Binary files a/sprites/frames/mm_background/Image0211.png and b/sprites/frames/mm_background/Image0211.png differ diff --git a/sprites/frames/mm_background/Image0211.png.import b/sprites/frames/mm_background/Image0211.png.import index 7301045..d65c216 100644 --- a/sprites/frames/mm_background/Image0211.png.import +++ b/sprites/frames/mm_background/Image0211.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://8asiqmkooeec" +uid="uid://do05ahyllcu82" path="res://.godot/imported/Image0211.png-85f84f1f4fdd5ebc192d5672f40b9286.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0212.png b/sprites/frames/mm_background/Image0212.png index d5251cd..9b8f08c 100644 Binary files a/sprites/frames/mm_background/Image0212.png and b/sprites/frames/mm_background/Image0212.png differ diff --git a/sprites/frames/mm_background/Image0212.png.import b/sprites/frames/mm_background/Image0212.png.import index 06ff390..2928edb 100644 --- a/sprites/frames/mm_background/Image0212.png.import +++ b/sprites/frames/mm_background/Image0212.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bh8useby0tyl2" +uid="uid://2ttq8r5g0cmj" path="res://.godot/imported/Image0212.png-5d6078cb681e5e9af9446ae15ab7f115.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0213.png b/sprites/frames/mm_background/Image0213.png index 6508d0a..e074346 100644 Binary files a/sprites/frames/mm_background/Image0213.png and b/sprites/frames/mm_background/Image0213.png differ diff --git a/sprites/frames/mm_background/Image0213.png.import b/sprites/frames/mm_background/Image0213.png.import index b535c43..805c9a7 100644 --- a/sprites/frames/mm_background/Image0213.png.import +++ b/sprites/frames/mm_background/Image0213.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://lluxe1woh5h3" +uid="uid://d3quq1spk6f5e" path="res://.godot/imported/Image0213.png-9a562a920b416629b95d5e728d982b4d.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0214.png b/sprites/frames/mm_background/Image0214.png index 9393739..0efd09f 100644 Binary files a/sprites/frames/mm_background/Image0214.png and b/sprites/frames/mm_background/Image0214.png differ diff --git a/sprites/frames/mm_background/Image0214.png.import b/sprites/frames/mm_background/Image0214.png.import index 8153f91..85854dc 100644 --- a/sprites/frames/mm_background/Image0214.png.import +++ b/sprites/frames/mm_background/Image0214.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c8ny6luksfx2u" +uid="uid://dpd1qx1vci0vl" path="res://.godot/imported/Image0214.png-3aebb1c7c6018ac7196f9bb0155a1b74.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0215.png b/sprites/frames/mm_background/Image0215.png index 1b186bd..1d64233 100644 Binary files a/sprites/frames/mm_background/Image0215.png and b/sprites/frames/mm_background/Image0215.png differ diff --git a/sprites/frames/mm_background/Image0215.png.import b/sprites/frames/mm_background/Image0215.png.import index bcf2eef..1ca8c4b 100644 --- a/sprites/frames/mm_background/Image0215.png.import +++ b/sprites/frames/mm_background/Image0215.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cprflhi0xeece" +uid="uid://t280r240rpnb" path="res://.godot/imported/Image0215.png-0b548ab5de3359be238c4c5c9caa5ed2.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0216.png b/sprites/frames/mm_background/Image0216.png index 6c3535f..943a7b8 100644 Binary files a/sprites/frames/mm_background/Image0216.png and b/sprites/frames/mm_background/Image0216.png differ diff --git a/sprites/frames/mm_background/Image0216.png.import b/sprites/frames/mm_background/Image0216.png.import index f8faeae..5c9fe97 100644 --- a/sprites/frames/mm_background/Image0216.png.import +++ b/sprites/frames/mm_background/Image0216.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://4gnp2aak1iv" +uid="uid://chkmao6uaq4lk" path="res://.godot/imported/Image0216.png-84a90b25638615835ded4b84fc1ec3f2.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0217.png b/sprites/frames/mm_background/Image0217.png index c54587e..018d377 100644 Binary files a/sprites/frames/mm_background/Image0217.png and b/sprites/frames/mm_background/Image0217.png differ diff --git a/sprites/frames/mm_background/Image0217.png.import b/sprites/frames/mm_background/Image0217.png.import index e51f3a5..42d7d8d 100644 --- a/sprites/frames/mm_background/Image0217.png.import +++ b/sprites/frames/mm_background/Image0217.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cachioxu4r3bx" +uid="uid://cowoc6tqhpjv3" path="res://.godot/imported/Image0217.png-6ef18a70ea0c8f58f2449ba8d7c1d535.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0218.png b/sprites/frames/mm_background/Image0218.png index 446a6d1..7cc8510 100644 Binary files a/sprites/frames/mm_background/Image0218.png and b/sprites/frames/mm_background/Image0218.png differ diff --git a/sprites/frames/mm_background/Image0218.png.import b/sprites/frames/mm_background/Image0218.png.import index d94ce5a..f93f9e6 100644 --- a/sprites/frames/mm_background/Image0218.png.import +++ b/sprites/frames/mm_background/Image0218.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c0o247auny5o2" +uid="uid://peuotvhimusf" path="res://.godot/imported/Image0218.png-aefe30ef680d09aad64264540e5abb3d.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0219.png b/sprites/frames/mm_background/Image0219.png index 794e9cf..999560c 100644 Binary files a/sprites/frames/mm_background/Image0219.png and b/sprites/frames/mm_background/Image0219.png differ diff --git a/sprites/frames/mm_background/Image0219.png.import b/sprites/frames/mm_background/Image0219.png.import index e0405f4..dbe4082 100644 --- a/sprites/frames/mm_background/Image0219.png.import +++ b/sprites/frames/mm_background/Image0219.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bbn1hunkugncr" +uid="uid://d3j0u3i5yqg3p" path="res://.godot/imported/Image0219.png-c96d638ca0d2acfb0c19f96a6403f7e5.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0220.png b/sprites/frames/mm_background/Image0220.png index fb101c0..504847c 100644 Binary files a/sprites/frames/mm_background/Image0220.png and b/sprites/frames/mm_background/Image0220.png differ diff --git a/sprites/frames/mm_background/Image0220.png.import b/sprites/frames/mm_background/Image0220.png.import index 5885bfd..e1e0afe 100644 --- a/sprites/frames/mm_background/Image0220.png.import +++ b/sprites/frames/mm_background/Image0220.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://djsh2npacy2a2" +uid="uid://cyr6gx6uobfni" path="res://.godot/imported/Image0220.png-05df8928d55a428ea055e65d9735ddc0.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0221.png b/sprites/frames/mm_background/Image0221.png index 54bda27..b1fbf67 100644 Binary files a/sprites/frames/mm_background/Image0221.png and b/sprites/frames/mm_background/Image0221.png differ diff --git a/sprites/frames/mm_background/Image0221.png.import b/sprites/frames/mm_background/Image0221.png.import index b5aaa19..e5f1cfa 100644 --- a/sprites/frames/mm_background/Image0221.png.import +++ b/sprites/frames/mm_background/Image0221.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://nyhwqihuwiuw" +uid="uid://bu6s2st4goxn2" path="res://.godot/imported/Image0221.png-5a2d9523dcabadc7f20301eaaae228e5.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0222.png b/sprites/frames/mm_background/Image0222.png index 3f75d5d..64ae195 100644 Binary files a/sprites/frames/mm_background/Image0222.png and b/sprites/frames/mm_background/Image0222.png differ diff --git a/sprites/frames/mm_background/Image0222.png.import b/sprites/frames/mm_background/Image0222.png.import index e71c6bf..61197f0 100644 --- a/sprites/frames/mm_background/Image0222.png.import +++ b/sprites/frames/mm_background/Image0222.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://fu5dbfgygd22" +uid="uid://ctpdp1ruhbvwp" path="res://.godot/imported/Image0222.png-8d6086f222052f86f532a0c4c6a64ae4.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0223.png b/sprites/frames/mm_background/Image0223.png index d6e7a4d..faca883 100644 Binary files a/sprites/frames/mm_background/Image0223.png and b/sprites/frames/mm_background/Image0223.png differ diff --git a/sprites/frames/mm_background/Image0223.png.import b/sprites/frames/mm_background/Image0223.png.import index 055156a..207e3d9 100644 --- a/sprites/frames/mm_background/Image0223.png.import +++ b/sprites/frames/mm_background/Image0223.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cpuxxs2tbcg8a" +uid="uid://dc2j301lcftjy" path="res://.godot/imported/Image0223.png-1cb616daf58aa9fa4bcdf4e2f0b1546c.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0224.png b/sprites/frames/mm_background/Image0224.png index 2a24fde..1dd604b 100644 Binary files a/sprites/frames/mm_background/Image0224.png and b/sprites/frames/mm_background/Image0224.png differ diff --git a/sprites/frames/mm_background/Image0224.png.import b/sprites/frames/mm_background/Image0224.png.import index ffc20ab..5eb75ed 100644 --- a/sprites/frames/mm_background/Image0224.png.import +++ b/sprites/frames/mm_background/Image0224.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bt75bt354br6l" +uid="uid://vn1w81ctgfw2" path="res://.godot/imported/Image0224.png-c7cec188976d4e829bd28da7d938789a.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0225.png b/sprites/frames/mm_background/Image0225.png index 6ef9b83..d845468 100644 Binary files a/sprites/frames/mm_background/Image0225.png and b/sprites/frames/mm_background/Image0225.png differ diff --git a/sprites/frames/mm_background/Image0225.png.import b/sprites/frames/mm_background/Image0225.png.import index c25db41..d10aa99 100644 --- a/sprites/frames/mm_background/Image0225.png.import +++ b/sprites/frames/mm_background/Image0225.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bdffu8v0hy2nr" +uid="uid://e1o7r51xa7e8" path="res://.godot/imported/Image0225.png-af100e13edd7d7053ecd9254f4794597.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0226.png b/sprites/frames/mm_background/Image0226.png index 4c16b29..7131586 100644 Binary files a/sprites/frames/mm_background/Image0226.png and b/sprites/frames/mm_background/Image0226.png differ diff --git a/sprites/frames/mm_background/Image0226.png.import b/sprites/frames/mm_background/Image0226.png.import index a3d9930..1f1e597 100644 --- a/sprites/frames/mm_background/Image0226.png.import +++ b/sprites/frames/mm_background/Image0226.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bthx30hedem3p" +uid="uid://671ej3xmedak" path="res://.godot/imported/Image0226.png-463004ed4c6fc38e21ce67a8abd52eda.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0227.png b/sprites/frames/mm_background/Image0227.png index 506c86e..287cc25 100644 Binary files a/sprites/frames/mm_background/Image0227.png and b/sprites/frames/mm_background/Image0227.png differ diff --git a/sprites/frames/mm_background/Image0227.png.import b/sprites/frames/mm_background/Image0227.png.import index d947d6c..f676e5d 100644 --- a/sprites/frames/mm_background/Image0227.png.import +++ b/sprites/frames/mm_background/Image0227.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c24ukjot8dg62" +uid="uid://di1orjmyejdaw" path="res://.godot/imported/Image0227.png-fb6ab2c10a8fbca562c51ed272d4f446.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0228.png b/sprites/frames/mm_background/Image0228.png index 6d7744a..df2fad0 100644 Binary files a/sprites/frames/mm_background/Image0228.png and b/sprites/frames/mm_background/Image0228.png differ diff --git a/sprites/frames/mm_background/Image0228.png.import b/sprites/frames/mm_background/Image0228.png.import index e8d3811..d1353e3 100644 --- a/sprites/frames/mm_background/Image0228.png.import +++ b/sprites/frames/mm_background/Image0228.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ba1v5ecj7hgnu" +uid="uid://c8jf5vp4pqil8" path="res://.godot/imported/Image0228.png-48375b0fd158b1a075d801d35de42671.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0229.png b/sprites/frames/mm_background/Image0229.png index 030286e..71fedf2 100644 Binary files a/sprites/frames/mm_background/Image0229.png and b/sprites/frames/mm_background/Image0229.png differ diff --git a/sprites/frames/mm_background/Image0229.png.import b/sprites/frames/mm_background/Image0229.png.import index 73efab8..7a6f2e9 100644 --- a/sprites/frames/mm_background/Image0229.png.import +++ b/sprites/frames/mm_background/Image0229.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://o2mwnome55vy" +uid="uid://lyqeobjpu1bl" path="res://.godot/imported/Image0229.png-4a74f340f42b9cf6db1a78193c7c2fc0.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0230.png b/sprites/frames/mm_background/Image0230.png index 720899e..e154aa4 100644 Binary files a/sprites/frames/mm_background/Image0230.png and b/sprites/frames/mm_background/Image0230.png differ diff --git a/sprites/frames/mm_background/Image0230.png.import b/sprites/frames/mm_background/Image0230.png.import index 0ce8fc3..a7d5dad 100644 --- a/sprites/frames/mm_background/Image0230.png.import +++ b/sprites/frames/mm_background/Image0230.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b3e6aqoxluwke" +uid="uid://ck5t4pldp0cft" path="res://.godot/imported/Image0230.png-de0c0126415765f3a4b62a68647fb076.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0231.png b/sprites/frames/mm_background/Image0231.png index c508d29..76651f0 100644 Binary files a/sprites/frames/mm_background/Image0231.png and b/sprites/frames/mm_background/Image0231.png differ diff --git a/sprites/frames/mm_background/Image0231.png.import b/sprites/frames/mm_background/Image0231.png.import index 0f3e0dc..d146ef0 100644 --- a/sprites/frames/mm_background/Image0231.png.import +++ b/sprites/frames/mm_background/Image0231.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c1xpnjo1gn2bw" +uid="uid://cc3q6sgfw0axu" path="res://.godot/imported/Image0231.png-58c0158741e65eeeb37f347165e125bf.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0232.png b/sprites/frames/mm_background/Image0232.png index e5fdf02..da6fba4 100644 Binary files a/sprites/frames/mm_background/Image0232.png and b/sprites/frames/mm_background/Image0232.png differ diff --git a/sprites/frames/mm_background/Image0232.png.import b/sprites/frames/mm_background/Image0232.png.import index 7fb6ce3..4f13499 100644 --- a/sprites/frames/mm_background/Image0232.png.import +++ b/sprites/frames/mm_background/Image0232.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c6pqle5cp0e8k" +uid="uid://du25xblt3qmnt" path="res://.godot/imported/Image0232.png-42370a4ae34516c1d8d5c3c9456ba4b6.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0233.png b/sprites/frames/mm_background/Image0233.png index 197f3c2..0b34e23 100644 Binary files a/sprites/frames/mm_background/Image0233.png and b/sprites/frames/mm_background/Image0233.png differ diff --git a/sprites/frames/mm_background/Image0233.png.import b/sprites/frames/mm_background/Image0233.png.import index 85de567..70ecb87 100644 --- a/sprites/frames/mm_background/Image0233.png.import +++ b/sprites/frames/mm_background/Image0233.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://crvhi11apiorn" +uid="uid://cgpe1nb3ix1y0" path="res://.godot/imported/Image0233.png-62dcfb65753455356c17a31b54b2f26b.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0234.png b/sprites/frames/mm_background/Image0234.png index f739b99..127fe19 100644 Binary files a/sprites/frames/mm_background/Image0234.png and b/sprites/frames/mm_background/Image0234.png differ diff --git a/sprites/frames/mm_background/Image0234.png.import b/sprites/frames/mm_background/Image0234.png.import index 261c4db..b4b9b8a 100644 --- a/sprites/frames/mm_background/Image0234.png.import +++ b/sprites/frames/mm_background/Image0234.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://b3ekekiovuu27" +uid="uid://d1gf0eswt0htr" path="res://.godot/imported/Image0234.png-ff3d952811a77dfb99b1c3aaa6cf7df3.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0235.png b/sprites/frames/mm_background/Image0235.png index 1d9e2f5..347b784 100644 Binary files a/sprites/frames/mm_background/Image0235.png and b/sprites/frames/mm_background/Image0235.png differ diff --git a/sprites/frames/mm_background/Image0235.png.import b/sprites/frames/mm_background/Image0235.png.import index 3201b47..3fe85e1 100644 --- a/sprites/frames/mm_background/Image0235.png.import +++ b/sprites/frames/mm_background/Image0235.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://c6qy4ibq7dpdc" +uid="uid://c8sbrvfsg4j62" path="res://.godot/imported/Image0235.png-36cc4dc73ff7b9ec4b81073c546f5aa1.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0236.png b/sprites/frames/mm_background/Image0236.png index 41ae68a..66c691c 100644 Binary files a/sprites/frames/mm_background/Image0236.png and b/sprites/frames/mm_background/Image0236.png differ diff --git a/sprites/frames/mm_background/Image0236.png.import b/sprites/frames/mm_background/Image0236.png.import index f1e9538..830ef87 100644 --- a/sprites/frames/mm_background/Image0236.png.import +++ b/sprites/frames/mm_background/Image0236.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://brq4nqrnyd0kn" +uid="uid://dac5hlugps0kg" path="res://.godot/imported/Image0236.png-30d5012549779f1096298205761787fe.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0237.png b/sprites/frames/mm_background/Image0237.png index 5752630..3abeba1 100644 Binary files a/sprites/frames/mm_background/Image0237.png and b/sprites/frames/mm_background/Image0237.png differ diff --git a/sprites/frames/mm_background/Image0237.png.import b/sprites/frames/mm_background/Image0237.png.import index c60801f..7835f9e 100644 --- a/sprites/frames/mm_background/Image0237.png.import +++ b/sprites/frames/mm_background/Image0237.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bxk40k5vvqycl" +uid="uid://bucpabnqbvssl" path="res://.godot/imported/Image0237.png-8d4906b9cee46cd3a2c718b97dfe3373.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0238.png b/sprites/frames/mm_background/Image0238.png index cd5fd83..f0eeb1b 100644 Binary files a/sprites/frames/mm_background/Image0238.png and b/sprites/frames/mm_background/Image0238.png differ diff --git a/sprites/frames/mm_background/Image0238.png.import b/sprites/frames/mm_background/Image0238.png.import index c7a234c..a95bc6e 100644 --- a/sprites/frames/mm_background/Image0238.png.import +++ b/sprites/frames/mm_background/Image0238.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://chh7decyeb2xf" +uid="uid://d3and8que5e2l" path="res://.godot/imported/Image0238.png-f90a30277abcfc196f1f0707d81f35df.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0239.png b/sprites/frames/mm_background/Image0239.png index 824098a..554b014 100644 Binary files a/sprites/frames/mm_background/Image0239.png and b/sprites/frames/mm_background/Image0239.png differ diff --git a/sprites/frames/mm_background/Image0239.png.import b/sprites/frames/mm_background/Image0239.png.import index 509224c..6b6cdb4 100644 --- a/sprites/frames/mm_background/Image0239.png.import +++ b/sprites/frames/mm_background/Image0239.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://gvj82q8oo0pr" +uid="uid://x6lm452i4dmr" path="res://.godot/imported/Image0239.png-42a328121bfd07f8d24b6aede7c2481a.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0240.png b/sprites/frames/mm_background/Image0240.png index ac90fca..04befe8 100644 Binary files a/sprites/frames/mm_background/Image0240.png and b/sprites/frames/mm_background/Image0240.png differ diff --git a/sprites/frames/mm_background/Image0240.png.import b/sprites/frames/mm_background/Image0240.png.import index 18e4ed5..dd34f50 100644 --- a/sprites/frames/mm_background/Image0240.png.import +++ b/sprites/frames/mm_background/Image0240.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bklhocrk8t805" +uid="uid://cbkc5w67uy4m3" path="res://.godot/imported/Image0240.png-8906878d51957460f0af16ebbeee1f15.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0241.png b/sprites/frames/mm_background/Image0241.png index 058c900..1efe4e0 100644 Binary files a/sprites/frames/mm_background/Image0241.png and b/sprites/frames/mm_background/Image0241.png differ diff --git a/sprites/frames/mm_background/Image0241.png.import b/sprites/frames/mm_background/Image0241.png.import index 51307cc..6f0adee 100644 --- a/sprites/frames/mm_background/Image0241.png.import +++ b/sprites/frames/mm_background/Image0241.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://cjay80n6isw5o" +uid="uid://bvlbgggtxjkko" path="res://.godot/imported/Image0241.png-f4756c5123b91847f780b133c583be42.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0242.png b/sprites/frames/mm_background/Image0242.png index db7128c..d69f1d6 100644 Binary files a/sprites/frames/mm_background/Image0242.png and b/sprites/frames/mm_background/Image0242.png differ diff --git a/sprites/frames/mm_background/Image0242.png.import b/sprites/frames/mm_background/Image0242.png.import index c212712..8381bb9 100644 --- a/sprites/frames/mm_background/Image0242.png.import +++ b/sprites/frames/mm_background/Image0242.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dt24vcjcvcabq" +uid="uid://cucxithi1feli" path="res://.godot/imported/Image0242.png-61d920dc76d766003d3ef09839c5664e.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0243.png b/sprites/frames/mm_background/Image0243.png index 4637af4..e66d7b5 100644 Binary files a/sprites/frames/mm_background/Image0243.png and b/sprites/frames/mm_background/Image0243.png differ diff --git a/sprites/frames/mm_background/Image0243.png.import b/sprites/frames/mm_background/Image0243.png.import index b3c4170..212e390 100644 --- a/sprites/frames/mm_background/Image0243.png.import +++ b/sprites/frames/mm_background/Image0243.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://ck02pu5asr3as" +uid="uid://cg0wl4au8biuu" path="res://.godot/imported/Image0243.png-888c066edc962496c03982819c7fea6e.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0244.png b/sprites/frames/mm_background/Image0244.png index e5cf8b3..0840a68 100644 Binary files a/sprites/frames/mm_background/Image0244.png and b/sprites/frames/mm_background/Image0244.png differ diff --git a/sprites/frames/mm_background/Image0244.png.import b/sprites/frames/mm_background/Image0244.png.import index 4be6506..fe6b11d 100644 --- a/sprites/frames/mm_background/Image0244.png.import +++ b/sprites/frames/mm_background/Image0244.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bsbaqfy8jc106" +uid="uid://chi2yfutv8oec" path="res://.godot/imported/Image0244.png-be49337c747d61c04032d5c7dbc9bffb.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0245.png b/sprites/frames/mm_background/Image0245.png index 211a3f9..5579c68 100644 Binary files a/sprites/frames/mm_background/Image0245.png and b/sprites/frames/mm_background/Image0245.png differ diff --git a/sprites/frames/mm_background/Image0245.png.import b/sprites/frames/mm_background/Image0245.png.import index b5f566e..d63aaff 100644 --- a/sprites/frames/mm_background/Image0245.png.import +++ b/sprites/frames/mm_background/Image0245.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://d2wurexja4nem" +uid="uid://di4o5dsrdps4m" path="res://.godot/imported/Image0245.png-0088e779206db00a4380a1d44b59a863.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0246.png b/sprites/frames/mm_background/Image0246.png index 46f832c..b80e068 100644 Binary files a/sprites/frames/mm_background/Image0246.png and b/sprites/frames/mm_background/Image0246.png differ diff --git a/sprites/frames/mm_background/Image0246.png.import b/sprites/frames/mm_background/Image0246.png.import index c151f9f..859cddc 100644 --- a/sprites/frames/mm_background/Image0246.png.import +++ b/sprites/frames/mm_background/Image0246.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://jeufaqsda4xi" +uid="uid://bvvg5ws2bhy2p" path="res://.godot/imported/Image0246.png-9d2aed18653bd233c491fe9e9da0f3b1.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0247.png b/sprites/frames/mm_background/Image0247.png index b939439..b3e644e 100644 Binary files a/sprites/frames/mm_background/Image0247.png and b/sprites/frames/mm_background/Image0247.png differ diff --git a/sprites/frames/mm_background/Image0247.png.import b/sprites/frames/mm_background/Image0247.png.import index 1038bfa..b618372 100644 --- a/sprites/frames/mm_background/Image0247.png.import +++ b/sprites/frames/mm_background/Image0247.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dtjlua2vlgrsi" +uid="uid://cpxku0fmpewaf" path="res://.godot/imported/Image0247.png-f3e6748e755dffc2225e68c894f3d20e.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0248.png b/sprites/frames/mm_background/Image0248.png index a2ec639..b66910a 100644 Binary files a/sprites/frames/mm_background/Image0248.png and b/sprites/frames/mm_background/Image0248.png differ diff --git a/sprites/frames/mm_background/Image0248.png.import b/sprites/frames/mm_background/Image0248.png.import index 71fa24f..1fecf8d 100644 --- a/sprites/frames/mm_background/Image0248.png.import +++ b/sprites/frames/mm_background/Image0248.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bo16og7ribju1" +uid="uid://nfph200o21tx" path="res://.godot/imported/Image0248.png-c514665f8d350a197ed70059419d49df.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0249.png b/sprites/frames/mm_background/Image0249.png index d58c98a..35ec5a4 100644 Binary files a/sprites/frames/mm_background/Image0249.png and b/sprites/frames/mm_background/Image0249.png differ diff --git a/sprites/frames/mm_background/Image0249.png.import b/sprites/frames/mm_background/Image0249.png.import index ae83b8a..0ce522c 100644 --- a/sprites/frames/mm_background/Image0249.png.import +++ b/sprites/frames/mm_background/Image0249.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://dgbtus7qf1tiq" +uid="uid://bow0jheunbhi6" path="res://.godot/imported/Image0249.png-6169a9b230f206b799b31b551161b96c.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background/Image0250.png b/sprites/frames/mm_background/Image0250.png index 3f8fc4b..ec71f20 100644 Binary files a/sprites/frames/mm_background/Image0250.png and b/sprites/frames/mm_background/Image0250.png differ diff --git a/sprites/frames/mm_background/Image0250.png.import b/sprites/frames/mm_background/Image0250.png.import index ea72ded..048a398 100644 --- a/sprites/frames/mm_background/Image0250.png.import +++ b/sprites/frames/mm_background/Image0250.png.import @@ -2,7 +2,7 @@ importer="texture" type="CompressedTexture2D" -uid="uid://bvvk8ffdyxma4" +uid="uid://gognkvncb0ae" path="res://.godot/imported/Image0250.png-0d8faac07ccaff16f83e0aad73598b26.ctex" metadata={ "vram_texture": false diff --git a/sprites/frames/mm_background_old/Image0030.png b/sprites/frames/mm_background_old/Image0030.png new file mode 100644 index 0000000..0e52428 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0030.png differ diff --git a/sprites/frames/mm_background_old/Image0030.png.import b/sprites/frames/mm_background_old/Image0030.png.import new file mode 100644 index 0000000..f371750 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0030.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bqphril16y8j3" +path="res://.godot/imported/Image0030.png-1e581954c3f6096bf5a55ba4adc05122.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0030.png" +dest_files=["res://.godot/imported/Image0030.png-1e581954c3f6096bf5a55ba4adc05122.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0031.png b/sprites/frames/mm_background_old/Image0031.png new file mode 100644 index 0000000..7f68bfc Binary files /dev/null and b/sprites/frames/mm_background_old/Image0031.png differ diff --git a/sprites/frames/mm_background_old/Image0031.png.import b/sprites/frames/mm_background_old/Image0031.png.import new file mode 100644 index 0000000..9090269 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0031.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://sch4onug65sj" +path="res://.godot/imported/Image0031.png-dfc1ae65f61c33f5780138c8b9cbc447.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0031.png" +dest_files=["res://.godot/imported/Image0031.png-dfc1ae65f61c33f5780138c8b9cbc447.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0032.png b/sprites/frames/mm_background_old/Image0032.png new file mode 100644 index 0000000..eaea4a2 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0032.png differ diff --git a/sprites/frames/mm_background_old/Image0032.png.import b/sprites/frames/mm_background_old/Image0032.png.import new file mode 100644 index 0000000..469b82e --- /dev/null +++ b/sprites/frames/mm_background_old/Image0032.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ccp1q0heignk7" +path="res://.godot/imported/Image0032.png-a57e75d504306a6f8af28812fa146e54.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0032.png" +dest_files=["res://.godot/imported/Image0032.png-a57e75d504306a6f8af28812fa146e54.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0033.png b/sprites/frames/mm_background_old/Image0033.png new file mode 100644 index 0000000..e92dadd Binary files /dev/null and b/sprites/frames/mm_background_old/Image0033.png differ diff --git a/sprites/frames/mm_background_old/Image0033.png.import b/sprites/frames/mm_background_old/Image0033.png.import new file mode 100644 index 0000000..13a1a5a --- /dev/null +++ b/sprites/frames/mm_background_old/Image0033.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://s31xana5ybmv" +path="res://.godot/imported/Image0033.png-01122238df2fed491fd2a157202f5847.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0033.png" +dest_files=["res://.godot/imported/Image0033.png-01122238df2fed491fd2a157202f5847.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0034.png b/sprites/frames/mm_background_old/Image0034.png new file mode 100644 index 0000000..dc782ee Binary files /dev/null and b/sprites/frames/mm_background_old/Image0034.png differ diff --git a/sprites/frames/mm_background_old/Image0034.png.import b/sprites/frames/mm_background_old/Image0034.png.import new file mode 100644 index 0000000..4f56106 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0034.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmxdapd6evr3t" +path="res://.godot/imported/Image0034.png-268c7a11a287419a0613562da9178882.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0034.png" +dest_files=["res://.godot/imported/Image0034.png-268c7a11a287419a0613562da9178882.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0035.png b/sprites/frames/mm_background_old/Image0035.png new file mode 100644 index 0000000..01ccfab Binary files /dev/null and b/sprites/frames/mm_background_old/Image0035.png differ diff --git a/sprites/frames/mm_background_old/Image0035.png.import b/sprites/frames/mm_background_old/Image0035.png.import new file mode 100644 index 0000000..1f7419a --- /dev/null +++ b/sprites/frames/mm_background_old/Image0035.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dh0oxoaso7v10" +path="res://.godot/imported/Image0035.png-3dd8c28b6cd47cf06d14ec7e183ea8fc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0035.png" +dest_files=["res://.godot/imported/Image0035.png-3dd8c28b6cd47cf06d14ec7e183ea8fc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0036.png b/sprites/frames/mm_background_old/Image0036.png new file mode 100644 index 0000000..0cb0452 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0036.png differ diff --git a/sprites/frames/mm_background_old/Image0036.png.import b/sprites/frames/mm_background_old/Image0036.png.import new file mode 100644 index 0000000..4d17a61 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0036.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7dltqpijlfa4" +path="res://.godot/imported/Image0036.png-48fd8a8fa30c908bc150b59815d039d9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0036.png" +dest_files=["res://.godot/imported/Image0036.png-48fd8a8fa30c908bc150b59815d039d9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0037.png b/sprites/frames/mm_background_old/Image0037.png new file mode 100644 index 0000000..3c4f6ab Binary files /dev/null and b/sprites/frames/mm_background_old/Image0037.png differ diff --git a/sprites/frames/mm_background_old/Image0037.png.import b/sprites/frames/mm_background_old/Image0037.png.import new file mode 100644 index 0000000..1690698 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0037.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://e2c0r2weyemc" +path="res://.godot/imported/Image0037.png-31f57f89ba9e49f2be5a341be85904af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0037.png" +dest_files=["res://.godot/imported/Image0037.png-31f57f89ba9e49f2be5a341be85904af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0038.png b/sprites/frames/mm_background_old/Image0038.png new file mode 100644 index 0000000..ba49d4a Binary files /dev/null and b/sprites/frames/mm_background_old/Image0038.png differ diff --git a/sprites/frames/mm_background_old/Image0038.png.import b/sprites/frames/mm_background_old/Image0038.png.import new file mode 100644 index 0000000..7774db6 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0038.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blfr6kypiowof" +path="res://.godot/imported/Image0038.png-f433e9c1e41438666ac1d6698377c3ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0038.png" +dest_files=["res://.godot/imported/Image0038.png-f433e9c1e41438666ac1d6698377c3ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0039.png b/sprites/frames/mm_background_old/Image0039.png new file mode 100644 index 0000000..081b42c Binary files /dev/null and b/sprites/frames/mm_background_old/Image0039.png differ diff --git a/sprites/frames/mm_background_old/Image0039.png.import b/sprites/frames/mm_background_old/Image0039.png.import new file mode 100644 index 0000000..79c262e --- /dev/null +++ b/sprites/frames/mm_background_old/Image0039.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hqai62uag7bt" +path="res://.godot/imported/Image0039.png-7dfb993cf3f4836597e6e09ff1a8ad5f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0039.png" +dest_files=["res://.godot/imported/Image0039.png-7dfb993cf3f4836597e6e09ff1a8ad5f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0040.png b/sprites/frames/mm_background_old/Image0040.png new file mode 100644 index 0000000..298c322 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0040.png differ diff --git a/sprites/frames/mm_background_old/Image0040.png.import b/sprites/frames/mm_background_old/Image0040.png.import new file mode 100644 index 0000000..ed1b7c3 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0040.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://diwxi35drwgbf" +path="res://.godot/imported/Image0040.png-06942ddd49bd3d61a996c60507ad1336.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0040.png" +dest_files=["res://.godot/imported/Image0040.png-06942ddd49bd3d61a996c60507ad1336.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0041.png b/sprites/frames/mm_background_old/Image0041.png new file mode 100644 index 0000000..7d4b382 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0041.png differ diff --git a/sprites/frames/mm_background_old/Image0041.png.import b/sprites/frames/mm_background_old/Image0041.png.import new file mode 100644 index 0000000..2d43b01 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0041.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m7ars2itm52u" +path="res://.godot/imported/Image0041.png-3e46abe8d2e218af6287c70f64f2146e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0041.png" +dest_files=["res://.godot/imported/Image0041.png-3e46abe8d2e218af6287c70f64f2146e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0042.png b/sprites/frames/mm_background_old/Image0042.png new file mode 100644 index 0000000..ed78ef4 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0042.png differ diff --git a/sprites/frames/mm_background_old/Image0042.png.import b/sprites/frames/mm_background_old/Image0042.png.import new file mode 100644 index 0000000..9515ba4 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0042.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://deh3lq5ni5ape" +path="res://.godot/imported/Image0042.png-f66dbc888a72f4a34cedd15cfe6a7055.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0042.png" +dest_files=["res://.godot/imported/Image0042.png-f66dbc888a72f4a34cedd15cfe6a7055.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0043.png b/sprites/frames/mm_background_old/Image0043.png new file mode 100644 index 0000000..b05e6d9 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0043.png differ diff --git a/sprites/frames/mm_background_old/Image0043.png.import b/sprites/frames/mm_background_old/Image0043.png.import new file mode 100644 index 0000000..342ea21 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0043.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dwn77gtd6t6jh" +path="res://.godot/imported/Image0043.png-7e86555eeb6b7c202e088ef5510fa3ff.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0043.png" +dest_files=["res://.godot/imported/Image0043.png-7e86555eeb6b7c202e088ef5510fa3ff.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0044.png b/sprites/frames/mm_background_old/Image0044.png new file mode 100644 index 0000000..e86da47 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0044.png differ diff --git a/sprites/frames/mm_background_old/Image0044.png.import b/sprites/frames/mm_background_old/Image0044.png.import new file mode 100644 index 0000000..b1a262c --- /dev/null +++ b/sprites/frames/mm_background_old/Image0044.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by7ppvp3e8by4" +path="res://.godot/imported/Image0044.png-1a2d6ae2494dcfbbad2fb6d8d272e4a4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0044.png" +dest_files=["res://.godot/imported/Image0044.png-1a2d6ae2494dcfbbad2fb6d8d272e4a4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0045.png b/sprites/frames/mm_background_old/Image0045.png new file mode 100644 index 0000000..f08d7b8 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0045.png differ diff --git a/sprites/frames/mm_background_old/Image0045.png.import b/sprites/frames/mm_background_old/Image0045.png.import new file mode 100644 index 0000000..a76017c --- /dev/null +++ b/sprites/frames/mm_background_old/Image0045.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4tx6l8xyxfxo" +path="res://.godot/imported/Image0045.png-b5c7e74e008a84454c7e6081c1cf05af.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0045.png" +dest_files=["res://.godot/imported/Image0045.png-b5c7e74e008a84454c7e6081c1cf05af.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0046.png b/sprites/frames/mm_background_old/Image0046.png new file mode 100644 index 0000000..9ebde68 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0046.png differ diff --git a/sprites/frames/mm_background_old/Image0046.png.import b/sprites/frames/mm_background_old/Image0046.png.import new file mode 100644 index 0000000..e0855fb --- /dev/null +++ b/sprites/frames/mm_background_old/Image0046.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://if58nlg20c2m" +path="res://.godot/imported/Image0046.png-47f46e20a26d5656efcf9bb123e53957.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0046.png" +dest_files=["res://.godot/imported/Image0046.png-47f46e20a26d5656efcf9bb123e53957.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0047.png b/sprites/frames/mm_background_old/Image0047.png new file mode 100644 index 0000000..157a317 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0047.png differ diff --git a/sprites/frames/mm_background_old/Image0047.png.import b/sprites/frames/mm_background_old/Image0047.png.import new file mode 100644 index 0000000..3ff6274 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0047.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bg81qank4mhmn" +path="res://.godot/imported/Image0047.png-9043a5ee517978f92aa5efaa69917a21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0047.png" +dest_files=["res://.godot/imported/Image0047.png-9043a5ee517978f92aa5efaa69917a21.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0048.png b/sprites/frames/mm_background_old/Image0048.png new file mode 100644 index 0000000..5228825 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0048.png differ diff --git a/sprites/frames/mm_background_old/Image0048.png.import b/sprites/frames/mm_background_old/Image0048.png.import new file mode 100644 index 0000000..8088383 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0048.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmmruahp7uuh6" +path="res://.godot/imported/Image0048.png-39f38c9e81746dd610fb0d99e2900de8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0048.png" +dest_files=["res://.godot/imported/Image0048.png-39f38c9e81746dd610fb0d99e2900de8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0049.png b/sprites/frames/mm_background_old/Image0049.png new file mode 100644 index 0000000..bc9b1a5 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0049.png differ diff --git a/sprites/frames/mm_background_old/Image0049.png.import b/sprites/frames/mm_background_old/Image0049.png.import new file mode 100644 index 0000000..139e3fc --- /dev/null +++ b/sprites/frames/mm_background_old/Image0049.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d4erqo8hamnqx" +path="res://.godot/imported/Image0049.png-42cb707667b316f6a4879548896f8f81.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0049.png" +dest_files=["res://.godot/imported/Image0049.png-42cb707667b316f6a4879548896f8f81.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0050.png b/sprites/frames/mm_background_old/Image0050.png new file mode 100644 index 0000000..b3c8fd7 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0050.png differ diff --git a/sprites/frames/mm_background_old/Image0050.png.import b/sprites/frames/mm_background_old/Image0050.png.import new file mode 100644 index 0000000..3938d5f --- /dev/null +++ b/sprites/frames/mm_background_old/Image0050.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iwkh7wfmkj3f" +path="res://.godot/imported/Image0050.png-1f379565f78baf3996b2935eb1e18a1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0050.png" +dest_files=["res://.godot/imported/Image0050.png-1f379565f78baf3996b2935eb1e18a1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0051.png b/sprites/frames/mm_background_old/Image0051.png new file mode 100644 index 0000000..6ddde9b Binary files /dev/null and b/sprites/frames/mm_background_old/Image0051.png differ diff --git a/sprites/frames/mm_background_old/Image0051.png.import b/sprites/frames/mm_background_old/Image0051.png.import new file mode 100644 index 0000000..6652103 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0051.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3u7smu4lgwsa" +path="res://.godot/imported/Image0051.png-3ae790697179521ad3c76775890d4f29.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0051.png" +dest_files=["res://.godot/imported/Image0051.png-3ae790697179521ad3c76775890d4f29.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0052.png b/sprites/frames/mm_background_old/Image0052.png new file mode 100644 index 0000000..20e507f Binary files /dev/null and b/sprites/frames/mm_background_old/Image0052.png differ diff --git a/sprites/frames/mm_background_old/Image0052.png.import b/sprites/frames/mm_background_old/Image0052.png.import new file mode 100644 index 0000000..43d6922 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0052.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://iommumjnay6j" +path="res://.godot/imported/Image0052.png-d64e7e0a1952bf49d08a7d0f0eaec98e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0052.png" +dest_files=["res://.godot/imported/Image0052.png-d64e7e0a1952bf49d08a7d0f0eaec98e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0053.png b/sprites/frames/mm_background_old/Image0053.png new file mode 100644 index 0000000..315ccc6 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0053.png differ diff --git a/sprites/frames/mm_background_old/Image0053.png.import b/sprites/frames/mm_background_old/Image0053.png.import new file mode 100644 index 0000000..8c56878 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0053.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://r0kccnfp75r6" +path="res://.godot/imported/Image0053.png-3bab8b7e163b7188c838186936bd8e09.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0053.png" +dest_files=["res://.godot/imported/Image0053.png-3bab8b7e163b7188c838186936bd8e09.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0054.png b/sprites/frames/mm_background_old/Image0054.png new file mode 100644 index 0000000..8448214 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0054.png differ diff --git a/sprites/frames/mm_background_old/Image0054.png.import b/sprites/frames/mm_background_old/Image0054.png.import new file mode 100644 index 0000000..e2e7a95 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0054.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bl5wcmwv25pew" +path="res://.godot/imported/Image0054.png-969be36fe41d179c467879263439a3b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0054.png" +dest_files=["res://.godot/imported/Image0054.png-969be36fe41d179c467879263439a3b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0055.png b/sprites/frames/mm_background_old/Image0055.png new file mode 100644 index 0000000..c214581 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0055.png differ diff --git a/sprites/frames/mm_background_old/Image0055.png.import b/sprites/frames/mm_background_old/Image0055.png.import new file mode 100644 index 0000000..88f60bf --- /dev/null +++ b/sprites/frames/mm_background_old/Image0055.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dy2grbtj11w3h" +path="res://.godot/imported/Image0055.png-4e766e38e84a041af28cc1dab3a55a32.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0055.png" +dest_files=["res://.godot/imported/Image0055.png-4e766e38e84a041af28cc1dab3a55a32.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0056.png b/sprites/frames/mm_background_old/Image0056.png new file mode 100644 index 0000000..acbd9bf Binary files /dev/null and b/sprites/frames/mm_background_old/Image0056.png differ diff --git a/sprites/frames/mm_background_old/Image0056.png.import b/sprites/frames/mm_background_old/Image0056.png.import new file mode 100644 index 0000000..acdc56f --- /dev/null +++ b/sprites/frames/mm_background_old/Image0056.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do51mw2n5x3nr" +path="res://.godot/imported/Image0056.png-daaf39187bb0a6901a736271e634705d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0056.png" +dest_files=["res://.godot/imported/Image0056.png-daaf39187bb0a6901a736271e634705d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0057.png b/sprites/frames/mm_background_old/Image0057.png new file mode 100644 index 0000000..6cab59c Binary files /dev/null and b/sprites/frames/mm_background_old/Image0057.png differ diff --git a/sprites/frames/mm_background_old/Image0057.png.import b/sprites/frames/mm_background_old/Image0057.png.import new file mode 100644 index 0000000..9a61bff --- /dev/null +++ b/sprites/frames/mm_background_old/Image0057.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ypu4bo3x1bsw" +path="res://.godot/imported/Image0057.png-681fd3b2f176b4acc3dbe82eccf2b3b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0057.png" +dest_files=["res://.godot/imported/Image0057.png-681fd3b2f176b4acc3dbe82eccf2b3b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0058.png b/sprites/frames/mm_background_old/Image0058.png new file mode 100644 index 0000000..28cfc63 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0058.png differ diff --git a/sprites/frames/mm_background_old/Image0058.png.import b/sprites/frames/mm_background_old/Image0058.png.import new file mode 100644 index 0000000..ee66c0f --- /dev/null +++ b/sprites/frames/mm_background_old/Image0058.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ceft5veoyujq8" +path="res://.godot/imported/Image0058.png-05a7be7e3bb6a474a0211d9676833d21.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0058.png" +dest_files=["res://.godot/imported/Image0058.png-05a7be7e3bb6a474a0211d9676833d21.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0059.png b/sprites/frames/mm_background_old/Image0059.png new file mode 100644 index 0000000..a0eb1be Binary files /dev/null and b/sprites/frames/mm_background_old/Image0059.png differ diff --git a/sprites/frames/mm_background_old/Image0059.png.import b/sprites/frames/mm_background_old/Image0059.png.import new file mode 100644 index 0000000..264ee0d --- /dev/null +++ b/sprites/frames/mm_background_old/Image0059.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chdynml57bfrx" +path="res://.godot/imported/Image0059.png-8173c79dc6cfe147b8509a026704c667.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0059.png" +dest_files=["res://.godot/imported/Image0059.png-8173c79dc6cfe147b8509a026704c667.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0060.png b/sprites/frames/mm_background_old/Image0060.png new file mode 100644 index 0000000..f4d4d66 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0060.png differ diff --git a/sprites/frames/mm_background_old/Image0060.png.import b/sprites/frames/mm_background_old/Image0060.png.import new file mode 100644 index 0000000..f5949e5 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0060.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jd4m6kgi3nyw" +path="res://.godot/imported/Image0060.png-e0c90745b0d6e7853dfddec0e71828aa.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0060.png" +dest_files=["res://.godot/imported/Image0060.png-e0c90745b0d6e7853dfddec0e71828aa.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0061.png b/sprites/frames/mm_background_old/Image0061.png new file mode 100644 index 0000000..0256e2f Binary files /dev/null and b/sprites/frames/mm_background_old/Image0061.png differ diff --git a/sprites/frames/mm_background_old/Image0061.png.import b/sprites/frames/mm_background_old/Image0061.png.import new file mode 100644 index 0000000..0a0be39 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0061.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://516dxnuh576x" +path="res://.godot/imported/Image0061.png-58a612c4d8689c7286788ed65c3fef91.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0061.png" +dest_files=["res://.godot/imported/Image0061.png-58a612c4d8689c7286788ed65c3fef91.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0062.png b/sprites/frames/mm_background_old/Image0062.png new file mode 100644 index 0000000..d274363 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0062.png differ diff --git a/sprites/frames/mm_background_old/Image0062.png.import b/sprites/frames/mm_background_old/Image0062.png.import new file mode 100644 index 0000000..3f88ad0 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0062.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://7bnijky6bndy" +path="res://.godot/imported/Image0062.png-ea407cd1926898d3a6ad0cb10464c8a7.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0062.png" +dest_files=["res://.godot/imported/Image0062.png-ea407cd1926898d3a6ad0cb10464c8a7.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0063.png b/sprites/frames/mm_background_old/Image0063.png new file mode 100644 index 0000000..9fb65b2 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0063.png differ diff --git a/sprites/frames/mm_background_old/Image0063.png.import b/sprites/frames/mm_background_old/Image0063.png.import new file mode 100644 index 0000000..86892c5 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0063.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rcmdqk1ssh42" +path="res://.godot/imported/Image0063.png-ebea06848b7b02df0698329e93eb5ca6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0063.png" +dest_files=["res://.godot/imported/Image0063.png-ebea06848b7b02df0698329e93eb5ca6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0064.png b/sprites/frames/mm_background_old/Image0064.png new file mode 100644 index 0000000..3b1ed51 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0064.png differ diff --git a/sprites/frames/mm_background_old/Image0064.png.import b/sprites/frames/mm_background_old/Image0064.png.import new file mode 100644 index 0000000..505aacc --- /dev/null +++ b/sprites/frames/mm_background_old/Image0064.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://icn40o16vik2" +path="res://.godot/imported/Image0064.png-0111a53e6a45669d67549b4ab8bfacbe.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0064.png" +dest_files=["res://.godot/imported/Image0064.png-0111a53e6a45669d67549b4ab8bfacbe.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0065.png b/sprites/frames/mm_background_old/Image0065.png new file mode 100644 index 0000000..53e67ed Binary files /dev/null and b/sprites/frames/mm_background_old/Image0065.png differ diff --git a/sprites/frames/mm_background_old/Image0065.png.import b/sprites/frames/mm_background_old/Image0065.png.import new file mode 100644 index 0000000..6bf0515 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0065.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqmq6s63xd5sm" +path="res://.godot/imported/Image0065.png-3a351a3f41d2ce418653853635ae6459.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0065.png" +dest_files=["res://.godot/imported/Image0065.png-3a351a3f41d2ce418653853635ae6459.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0066.png b/sprites/frames/mm_background_old/Image0066.png new file mode 100644 index 0000000..449d267 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0066.png differ diff --git a/sprites/frames/mm_background_old/Image0066.png.import b/sprites/frames/mm_background_old/Image0066.png.import new file mode 100644 index 0000000..fad93af --- /dev/null +++ b/sprites/frames/mm_background_old/Image0066.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dlp1gaeey67cb" +path="res://.godot/imported/Image0066.png-a9b23e56739f8b0443ec98522c9165f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0066.png" +dest_files=["res://.godot/imported/Image0066.png-a9b23e56739f8b0443ec98522c9165f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0067.png b/sprites/frames/mm_background_old/Image0067.png new file mode 100644 index 0000000..07af1b8 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0067.png differ diff --git a/sprites/frames/mm_background_old/Image0067.png.import b/sprites/frames/mm_background_old/Image0067.png.import new file mode 100644 index 0000000..da79db8 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0067.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dssklx5wdk16t" +path="res://.godot/imported/Image0067.png-f3cc89d6b17c029d257d856f1c1c9129.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0067.png" +dest_files=["res://.godot/imported/Image0067.png-f3cc89d6b17c029d257d856f1c1c9129.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0068.png b/sprites/frames/mm_background_old/Image0068.png new file mode 100644 index 0000000..1ce0eec Binary files /dev/null and b/sprites/frames/mm_background_old/Image0068.png differ diff --git a/sprites/frames/mm_background_old/Image0068.png.import b/sprites/frames/mm_background_old/Image0068.png.import new file mode 100644 index 0000000..ed25c38 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0068.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3gkad64h5ljl" +path="res://.godot/imported/Image0068.png-1a61565553320ad22f0d7f9a3ed4a69d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0068.png" +dest_files=["res://.godot/imported/Image0068.png-1a61565553320ad22f0d7f9a3ed4a69d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0069.png b/sprites/frames/mm_background_old/Image0069.png new file mode 100644 index 0000000..525af26 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0069.png differ diff --git a/sprites/frames/mm_background_old/Image0069.png.import b/sprites/frames/mm_background_old/Image0069.png.import new file mode 100644 index 0000000..ced70da --- /dev/null +++ b/sprites/frames/mm_background_old/Image0069.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ch8pivomcc7vf" +path="res://.godot/imported/Image0069.png-718db87762bd4fad6aa9fc448fb3edc0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0069.png" +dest_files=["res://.godot/imported/Image0069.png-718db87762bd4fad6aa9fc448fb3edc0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0070.png b/sprites/frames/mm_background_old/Image0070.png new file mode 100644 index 0000000..242667a Binary files /dev/null and b/sprites/frames/mm_background_old/Image0070.png differ diff --git a/sprites/frames/mm_background_old/Image0070.png.import b/sprites/frames/mm_background_old/Image0070.png.import new file mode 100644 index 0000000..f66b13c --- /dev/null +++ b/sprites/frames/mm_background_old/Image0070.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c26nc0adx4m0q" +path="res://.godot/imported/Image0070.png-ea04ad67c3ace4b5369c0958a4067842.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0070.png" +dest_files=["res://.godot/imported/Image0070.png-ea04ad67c3ace4b5369c0958a4067842.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0071.png b/sprites/frames/mm_background_old/Image0071.png new file mode 100644 index 0000000..10fbf0f Binary files /dev/null and b/sprites/frames/mm_background_old/Image0071.png differ diff --git a/sprites/frames/mm_background_old/Image0071.png.import b/sprites/frames/mm_background_old/Image0071.png.import new file mode 100644 index 0000000..7bdec40 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0071.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da4oquywha8li" +path="res://.godot/imported/Image0071.png-648260216496075a1bbf593174ad62d8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0071.png" +dest_files=["res://.godot/imported/Image0071.png-648260216496075a1bbf593174ad62d8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0072.png b/sprites/frames/mm_background_old/Image0072.png new file mode 100644 index 0000000..ab07794 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0072.png differ diff --git a/sprites/frames/mm_background_old/Image0072.png.import b/sprites/frames/mm_background_old/Image0072.png.import new file mode 100644 index 0000000..6c4aa72 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0072.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ft143kq1ok4m" +path="res://.godot/imported/Image0072.png-c64eccbf2e86511f086e74add799c534.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0072.png" +dest_files=["res://.godot/imported/Image0072.png-c64eccbf2e86511f086e74add799c534.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0073.png b/sprites/frames/mm_background_old/Image0073.png new file mode 100644 index 0000000..fcb96f4 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0073.png differ diff --git a/sprites/frames/mm_background_old/Image0073.png.import b/sprites/frames/mm_background_old/Image0073.png.import new file mode 100644 index 0000000..d6d8207 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0073.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3ae808ooi6r1" +path="res://.godot/imported/Image0073.png-fd10cd89f9bfc7a63ca9ada5285f53b1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0073.png" +dest_files=["res://.godot/imported/Image0073.png-fd10cd89f9bfc7a63ca9ada5285f53b1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0074.png b/sprites/frames/mm_background_old/Image0074.png new file mode 100644 index 0000000..6919de1 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0074.png differ diff --git a/sprites/frames/mm_background_old/Image0074.png.import b/sprites/frames/mm_background_old/Image0074.png.import new file mode 100644 index 0000000..d120e9c --- /dev/null +++ b/sprites/frames/mm_background_old/Image0074.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cyo77vqovdkb1" +path="res://.godot/imported/Image0074.png-5dc7cdd3928c0ee309f1a5fe152e1333.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0074.png" +dest_files=["res://.godot/imported/Image0074.png-5dc7cdd3928c0ee309f1a5fe152e1333.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0075.png b/sprites/frames/mm_background_old/Image0075.png new file mode 100644 index 0000000..89074f5 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0075.png differ diff --git a/sprites/frames/mm_background_old/Image0075.png.import b/sprites/frames/mm_background_old/Image0075.png.import new file mode 100644 index 0000000..dfe2b50 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0075.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wivop4bentcw" +path="res://.godot/imported/Image0075.png-285ecbdfb147875d4b66aae4bec04ad3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0075.png" +dest_files=["res://.godot/imported/Image0075.png-285ecbdfb147875d4b66aae4bec04ad3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0076.png b/sprites/frames/mm_background_old/Image0076.png new file mode 100644 index 0000000..de42cb2 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0076.png differ diff --git a/sprites/frames/mm_background_old/Image0076.png.import b/sprites/frames/mm_background_old/Image0076.png.import new file mode 100644 index 0000000..8bda831 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0076.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3ihovss1ctl2" +path="res://.godot/imported/Image0076.png-07e1aa65b713b9a7abb1ffa580ee8e49.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0076.png" +dest_files=["res://.godot/imported/Image0076.png-07e1aa65b713b9a7abb1ffa580ee8e49.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0077.png b/sprites/frames/mm_background_old/Image0077.png new file mode 100644 index 0000000..e3d7cd9 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0077.png differ diff --git a/sprites/frames/mm_background_old/Image0077.png.import b/sprites/frames/mm_background_old/Image0077.png.import new file mode 100644 index 0000000..abec374 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0077.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csu5ott0fj0yo" +path="res://.godot/imported/Image0077.png-04ebe588d1b895af698df60ae7b978ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0077.png" +dest_files=["res://.godot/imported/Image0077.png-04ebe588d1b895af698df60ae7b978ac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0078.png b/sprites/frames/mm_background_old/Image0078.png new file mode 100644 index 0000000..950da09 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0078.png differ diff --git a/sprites/frames/mm_background_old/Image0078.png.import b/sprites/frames/mm_background_old/Image0078.png.import new file mode 100644 index 0000000..bc2e78c --- /dev/null +++ b/sprites/frames/mm_background_old/Image0078.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bw1lbrs0qulmu" +path="res://.godot/imported/Image0078.png-bec6149378bf9fd9cdd89d4198dce8f9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0078.png" +dest_files=["res://.godot/imported/Image0078.png-bec6149378bf9fd9cdd89d4198dce8f9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0079.png b/sprites/frames/mm_background_old/Image0079.png new file mode 100644 index 0000000..f831bad Binary files /dev/null and b/sprites/frames/mm_background_old/Image0079.png differ diff --git a/sprites/frames/mm_background_old/Image0079.png.import b/sprites/frames/mm_background_old/Image0079.png.import new file mode 100644 index 0000000..b661638 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0079.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3b857a4o4xuh" +path="res://.godot/imported/Image0079.png-0e67fb8cf95f45f11c82f6135805f5ac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0079.png" +dest_files=["res://.godot/imported/Image0079.png-0e67fb8cf95f45f11c82f6135805f5ac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0080.png b/sprites/frames/mm_background_old/Image0080.png new file mode 100644 index 0000000..fc1b86a Binary files /dev/null and b/sprites/frames/mm_background_old/Image0080.png differ diff --git a/sprites/frames/mm_background_old/Image0080.png.import b/sprites/frames/mm_background_old/Image0080.png.import new file mode 100644 index 0000000..d1a644b --- /dev/null +++ b/sprites/frames/mm_background_old/Image0080.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpejd6c5v6uwx" +path="res://.godot/imported/Image0080.png-ee1b0f51b9808ccae70d8e7000c509fd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0080.png" +dest_files=["res://.godot/imported/Image0080.png-ee1b0f51b9808ccae70d8e7000c509fd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0081.png b/sprites/frames/mm_background_old/Image0081.png new file mode 100644 index 0000000..fda2337 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0081.png differ diff --git a/sprites/frames/mm_background_old/Image0081.png.import b/sprites/frames/mm_background_old/Image0081.png.import new file mode 100644 index 0000000..0fe4bbb --- /dev/null +++ b/sprites/frames/mm_background_old/Image0081.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cw5fsablrhb6w" +path="res://.godot/imported/Image0081.png-d1db3c200d361ac38bdcc431f38fa55b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0081.png" +dest_files=["res://.godot/imported/Image0081.png-d1db3c200d361ac38bdcc431f38fa55b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0082.png b/sprites/frames/mm_background_old/Image0082.png new file mode 100644 index 0000000..f8470ec Binary files /dev/null and b/sprites/frames/mm_background_old/Image0082.png differ diff --git a/sprites/frames/mm_background_old/Image0082.png.import b/sprites/frames/mm_background_old/Image0082.png.import new file mode 100644 index 0000000..30b41e4 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0082.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ck4triculgf25" +path="res://.godot/imported/Image0082.png-bd6a527e748b823450419d8fbacc8895.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0082.png" +dest_files=["res://.godot/imported/Image0082.png-bd6a527e748b823450419d8fbacc8895.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0083.png b/sprites/frames/mm_background_old/Image0083.png new file mode 100644 index 0000000..93987d1 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0083.png differ diff --git a/sprites/frames/mm_background_old/Image0083.png.import b/sprites/frames/mm_background_old/Image0083.png.import new file mode 100644 index 0000000..78a01dc --- /dev/null +++ b/sprites/frames/mm_background_old/Image0083.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lda258s45tl1" +path="res://.godot/imported/Image0083.png-593c438d0d872184762b4bed09da7189.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0083.png" +dest_files=["res://.godot/imported/Image0083.png-593c438d0d872184762b4bed09da7189.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0084.png b/sprites/frames/mm_background_old/Image0084.png new file mode 100644 index 0000000..8d917d9 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0084.png differ diff --git a/sprites/frames/mm_background_old/Image0084.png.import b/sprites/frames/mm_background_old/Image0084.png.import new file mode 100644 index 0000000..7dd2a10 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0084.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c48jirojsixcn" +path="res://.godot/imported/Image0084.png-4b5ba29c54e5b2e3a197c365b9dd207e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0084.png" +dest_files=["res://.godot/imported/Image0084.png-4b5ba29c54e5b2e3a197c365b9dd207e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0085.png b/sprites/frames/mm_background_old/Image0085.png new file mode 100644 index 0000000..74ca086 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0085.png differ diff --git a/sprites/frames/mm_background_old/Image0085.png.import b/sprites/frames/mm_background_old/Image0085.png.import new file mode 100644 index 0000000..7d3ab3a --- /dev/null +++ b/sprites/frames/mm_background_old/Image0085.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckabfd3dilowg" +path="res://.godot/imported/Image0085.png-b9df6bd04ecab2140672cfa43e05da01.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0085.png" +dest_files=["res://.godot/imported/Image0085.png-b9df6bd04ecab2140672cfa43e05da01.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0086.png b/sprites/frames/mm_background_old/Image0086.png new file mode 100644 index 0000000..c324b9c Binary files /dev/null and b/sprites/frames/mm_background_old/Image0086.png differ diff --git a/sprites/frames/mm_background_old/Image0086.png.import b/sprites/frames/mm_background_old/Image0086.png.import new file mode 100644 index 0000000..75ab848 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0086.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bltfr5dtkb1rv" +path="res://.godot/imported/Image0086.png-0b4b814484a243bfc4a0f23fd7505f51.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0086.png" +dest_files=["res://.godot/imported/Image0086.png-0b4b814484a243bfc4a0f23fd7505f51.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0087.png b/sprites/frames/mm_background_old/Image0087.png new file mode 100644 index 0000000..89da47a Binary files /dev/null and b/sprites/frames/mm_background_old/Image0087.png differ diff --git a/sprites/frames/mm_background_old/Image0087.png.import b/sprites/frames/mm_background_old/Image0087.png.import new file mode 100644 index 0000000..17c1661 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0087.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1l4k3e7xnqf0" +path="res://.godot/imported/Image0087.png-6b735d29e4c0451f7bd8c1e2c6743cd8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0087.png" +dest_files=["res://.godot/imported/Image0087.png-6b735d29e4c0451f7bd8c1e2c6743cd8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0088.png b/sprites/frames/mm_background_old/Image0088.png new file mode 100644 index 0000000..fc2b0ac Binary files /dev/null and b/sprites/frames/mm_background_old/Image0088.png differ diff --git a/sprites/frames/mm_background_old/Image0088.png.import b/sprites/frames/mm_background_old/Image0088.png.import new file mode 100644 index 0000000..b1c81ac --- /dev/null +++ b/sprites/frames/mm_background_old/Image0088.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cceqs8e0rupla" +path="res://.godot/imported/Image0088.png-2257a333d5018fcd030562917411e928.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0088.png" +dest_files=["res://.godot/imported/Image0088.png-2257a333d5018fcd030562917411e928.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0089.png b/sprites/frames/mm_background_old/Image0089.png new file mode 100644 index 0000000..6120404 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0089.png differ diff --git a/sprites/frames/mm_background_old/Image0089.png.import b/sprites/frames/mm_background_old/Image0089.png.import new file mode 100644 index 0000000..2da370e --- /dev/null +++ b/sprites/frames/mm_background_old/Image0089.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bddu17ew4cblc" +path="res://.godot/imported/Image0089.png-e8bcb2033140f736b05afeacdb7777ee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0089.png" +dest_files=["res://.godot/imported/Image0089.png-e8bcb2033140f736b05afeacdb7777ee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0090.png b/sprites/frames/mm_background_old/Image0090.png new file mode 100644 index 0000000..62f65d7 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0090.png differ diff --git a/sprites/frames/mm_background_old/Image0090.png.import b/sprites/frames/mm_background_old/Image0090.png.import new file mode 100644 index 0000000..c16c40e --- /dev/null +++ b/sprites/frames/mm_background_old/Image0090.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ddj27fkrrld53" +path="res://.godot/imported/Image0090.png-1a17001f37956f6d596c06aab7169100.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0090.png" +dest_files=["res://.godot/imported/Image0090.png-1a17001f37956f6d596c06aab7169100.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0091.png b/sprites/frames/mm_background_old/Image0091.png new file mode 100644 index 0000000..1a8dece Binary files /dev/null and b/sprites/frames/mm_background_old/Image0091.png differ diff --git a/sprites/frames/mm_background_old/Image0091.png.import b/sprites/frames/mm_background_old/Image0091.png.import new file mode 100644 index 0000000..3123938 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0091.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3egjbq5185vb" +path="res://.godot/imported/Image0091.png-a1db55aa555f583cb4b175fdbe5d9159.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0091.png" +dest_files=["res://.godot/imported/Image0091.png-a1db55aa555f583cb4b175fdbe5d9159.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0092.png b/sprites/frames/mm_background_old/Image0092.png new file mode 100644 index 0000000..ed94f6c Binary files /dev/null and b/sprites/frames/mm_background_old/Image0092.png differ diff --git a/sprites/frames/mm_background_old/Image0092.png.import b/sprites/frames/mm_background_old/Image0092.png.import new file mode 100644 index 0000000..530c57b --- /dev/null +++ b/sprites/frames/mm_background_old/Image0092.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cot28ckfvuao8" +path="res://.godot/imported/Image0092.png-f1caad630f82c5d0aab87db8603943cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0092.png" +dest_files=["res://.godot/imported/Image0092.png-f1caad630f82c5d0aab87db8603943cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0093.png b/sprites/frames/mm_background_old/Image0093.png new file mode 100644 index 0000000..97cd6c5 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0093.png differ diff --git a/sprites/frames/mm_background_old/Image0093.png.import b/sprites/frames/mm_background_old/Image0093.png.import new file mode 100644 index 0000000..e7e0cee --- /dev/null +++ b/sprites/frames/mm_background_old/Image0093.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c31k5r8l0vfo5" +path="res://.godot/imported/Image0093.png-08c5d09e2d7b1150bfe5a0dfbecd8c45.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0093.png" +dest_files=["res://.godot/imported/Image0093.png-08c5d09e2d7b1150bfe5a0dfbecd8c45.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0094.png b/sprites/frames/mm_background_old/Image0094.png new file mode 100644 index 0000000..7bc5535 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0094.png differ diff --git a/sprites/frames/mm_background_old/Image0094.png.import b/sprites/frames/mm_background_old/Image0094.png.import new file mode 100644 index 0000000..d8c869a --- /dev/null +++ b/sprites/frames/mm_background_old/Image0094.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d3inl6vehvum5" +path="res://.godot/imported/Image0094.png-c2ce775adb0f3b4d20525cbd1976f981.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0094.png" +dest_files=["res://.godot/imported/Image0094.png-c2ce775adb0f3b4d20525cbd1976f981.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0095.png b/sprites/frames/mm_background_old/Image0095.png new file mode 100644 index 0000000..3d97172 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0095.png differ diff --git a/sprites/frames/mm_background_old/Image0095.png.import b/sprites/frames/mm_background_old/Image0095.png.import new file mode 100644 index 0000000..c45dfef --- /dev/null +++ b/sprites/frames/mm_background_old/Image0095.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xhpoidsruber" +path="res://.godot/imported/Image0095.png-810a182b010e29730b1a31a3681e88b6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0095.png" +dest_files=["res://.godot/imported/Image0095.png-810a182b010e29730b1a31a3681e88b6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0096.png b/sprites/frames/mm_background_old/Image0096.png new file mode 100644 index 0000000..3daa247 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0096.png differ diff --git a/sprites/frames/mm_background_old/Image0096.png.import b/sprites/frames/mm_background_old/Image0096.png.import new file mode 100644 index 0000000..64a2b17 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0096.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg5s4qrieqf7v" +path="res://.godot/imported/Image0096.png-f5b3d60a22dce99026134ee2229d83b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0096.png" +dest_files=["res://.godot/imported/Image0096.png-f5b3d60a22dce99026134ee2229d83b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0097.png b/sprites/frames/mm_background_old/Image0097.png new file mode 100644 index 0000000..389b297 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0097.png differ diff --git a/sprites/frames/mm_background_old/Image0097.png.import b/sprites/frames/mm_background_old/Image0097.png.import new file mode 100644 index 0000000..df0f12c --- /dev/null +++ b/sprites/frames/mm_background_old/Image0097.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://tdfqqyq15vnr" +path="res://.godot/imported/Image0097.png-5edc11141659f6a0bdc66a8f292439c5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0097.png" +dest_files=["res://.godot/imported/Image0097.png-5edc11141659f6a0bdc66a8f292439c5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0098.png b/sprites/frames/mm_background_old/Image0098.png new file mode 100644 index 0000000..90effc0 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0098.png differ diff --git a/sprites/frames/mm_background_old/Image0098.png.import b/sprites/frames/mm_background_old/Image0098.png.import new file mode 100644 index 0000000..cf7b850 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0098.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bfmdlm1tt6s7l" +path="res://.godot/imported/Image0098.png-e08f851826dd37e51f1caf467f65ea23.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0098.png" +dest_files=["res://.godot/imported/Image0098.png-e08f851826dd37e51f1caf467f65ea23.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0099.png b/sprites/frames/mm_background_old/Image0099.png new file mode 100644 index 0000000..e83e363 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0099.png differ diff --git a/sprites/frames/mm_background_old/Image0099.png.import b/sprites/frames/mm_background_old/Image0099.png.import new file mode 100644 index 0000000..0915455 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0099.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dirv6r1baihjq" +path="res://.godot/imported/Image0099.png-ed795092e5f13fb7e8a13badba3d1182.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0099.png" +dest_files=["res://.godot/imported/Image0099.png-ed795092e5f13fb7e8a13badba3d1182.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0100.png b/sprites/frames/mm_background_old/Image0100.png new file mode 100644 index 0000000..08b0bda Binary files /dev/null and b/sprites/frames/mm_background_old/Image0100.png differ diff --git a/sprites/frames/mm_background_old/Image0100.png.import b/sprites/frames/mm_background_old/Image0100.png.import new file mode 100644 index 0000000..f30d321 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0100.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqhpwbspxjffe" +path="res://.godot/imported/Image0100.png-b19d1c262902567f74eb87486577f764.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0100.png" +dest_files=["res://.godot/imported/Image0100.png-b19d1c262902567f74eb87486577f764.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0101.png b/sprites/frames/mm_background_old/Image0101.png new file mode 100644 index 0000000..ab5f183 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0101.png differ diff --git a/sprites/frames/mm_background_old/Image0101.png.import b/sprites/frames/mm_background_old/Image0101.png.import new file mode 100644 index 0000000..3359f77 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0101.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dv8a0gqdty83o" +path="res://.godot/imported/Image0101.png-f1fe7397d7d7d34348e410603e736159.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0101.png" +dest_files=["res://.godot/imported/Image0101.png-f1fe7397d7d7d34348e410603e736159.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0102.png b/sprites/frames/mm_background_old/Image0102.png new file mode 100644 index 0000000..7d9b315 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0102.png differ diff --git a/sprites/frames/mm_background_old/Image0102.png.import b/sprites/frames/mm_background_old/Image0102.png.import new file mode 100644 index 0000000..2262c4b --- /dev/null +++ b/sprites/frames/mm_background_old/Image0102.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ofro5yaaed3k" +path="res://.godot/imported/Image0102.png-ce157653af9134b0c31a728ce269215c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0102.png" +dest_files=["res://.godot/imported/Image0102.png-ce157653af9134b0c31a728ce269215c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0103.png b/sprites/frames/mm_background_old/Image0103.png new file mode 100644 index 0000000..1c662f1 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0103.png differ diff --git a/sprites/frames/mm_background_old/Image0103.png.import b/sprites/frames/mm_background_old/Image0103.png.import new file mode 100644 index 0000000..119e482 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0103.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp3dfqv6462jf" +path="res://.godot/imported/Image0103.png-40f299ed457a93ee8eacf232dc791b99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0103.png" +dest_files=["res://.godot/imported/Image0103.png-40f299ed457a93ee8eacf232dc791b99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0104.png b/sprites/frames/mm_background_old/Image0104.png new file mode 100644 index 0000000..fe1ad61 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0104.png differ diff --git a/sprites/frames/mm_background_old/Image0104.png.import b/sprites/frames/mm_background_old/Image0104.png.import new file mode 100644 index 0000000..69c49ed --- /dev/null +++ b/sprites/frames/mm_background_old/Image0104.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dcign4pmk5dax" +path="res://.godot/imported/Image0104.png-d8d2d4bf42ddf9b07ab84e319c1fb91f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0104.png" +dest_files=["res://.godot/imported/Image0104.png-d8d2d4bf42ddf9b07ab84e319c1fb91f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0105.png b/sprites/frames/mm_background_old/Image0105.png new file mode 100644 index 0000000..25bf182 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0105.png differ diff --git a/sprites/frames/mm_background_old/Image0105.png.import b/sprites/frames/mm_background_old/Image0105.png.import new file mode 100644 index 0000000..5315115 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0105.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtsglitr37vi6" +path="res://.godot/imported/Image0105.png-7c870ecf8537d39d63c652d9edb16742.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0105.png" +dest_files=["res://.godot/imported/Image0105.png-7c870ecf8537d39d63c652d9edb16742.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0106.png b/sprites/frames/mm_background_old/Image0106.png new file mode 100644 index 0000000..eb5d2db Binary files /dev/null and b/sprites/frames/mm_background_old/Image0106.png differ diff --git a/sprites/frames/mm_background_old/Image0106.png.import b/sprites/frames/mm_background_old/Image0106.png.import new file mode 100644 index 0000000..60cc757 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0106.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1ppfskxhqqxp" +path="res://.godot/imported/Image0106.png-6c6d5ccc7344c48014cff8ba037ba97a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0106.png" +dest_files=["res://.godot/imported/Image0106.png-6c6d5ccc7344c48014cff8ba037ba97a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0107.png b/sprites/frames/mm_background_old/Image0107.png new file mode 100644 index 0000000..7a7a8f2 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0107.png differ diff --git a/sprites/frames/mm_background_old/Image0107.png.import b/sprites/frames/mm_background_old/Image0107.png.import new file mode 100644 index 0000000..0628340 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0107.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbcjp0562m644" +path="res://.godot/imported/Image0107.png-de8aa5d2a966d413bea452fb0e705b84.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0107.png" +dest_files=["res://.godot/imported/Image0107.png-de8aa5d2a966d413bea452fb0e705b84.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0108.png b/sprites/frames/mm_background_old/Image0108.png new file mode 100644 index 0000000..c5fa81d Binary files /dev/null and b/sprites/frames/mm_background_old/Image0108.png differ diff --git a/sprites/frames/mm_background_old/Image0108.png.import b/sprites/frames/mm_background_old/Image0108.png.import new file mode 100644 index 0000000..1f5bbc1 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0108.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dj4tjybubvca" +path="res://.godot/imported/Image0108.png-515f55e4873fe359257105043b6c6439.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0108.png" +dest_files=["res://.godot/imported/Image0108.png-515f55e4873fe359257105043b6c6439.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0109.png b/sprites/frames/mm_background_old/Image0109.png new file mode 100644 index 0000000..35ccf15 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0109.png differ diff --git a/sprites/frames/mm_background_old/Image0109.png.import b/sprites/frames/mm_background_old/Image0109.png.import new file mode 100644 index 0000000..f76bf54 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0109.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bxurhprb5uru6" +path="res://.godot/imported/Image0109.png-6d289500f8a29a8190de624a4341befc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0109.png" +dest_files=["res://.godot/imported/Image0109.png-6d289500f8a29a8190de624a4341befc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0110.png b/sprites/frames/mm_background_old/Image0110.png new file mode 100644 index 0000000..74cfe14 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0110.png differ diff --git a/sprites/frames/mm_background_old/Image0110.png.import b/sprites/frames/mm_background_old/Image0110.png.import new file mode 100644 index 0000000..1d26ed9 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0110.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nitnmj42s3ev" +path="res://.godot/imported/Image0110.png-3ec0de8d6e4d631d6ecf0ca9693f71b5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0110.png" +dest_files=["res://.godot/imported/Image0110.png-3ec0de8d6e4d631d6ecf0ca9693f71b5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0111.png b/sprites/frames/mm_background_old/Image0111.png new file mode 100644 index 0000000..3c1cc0c Binary files /dev/null and b/sprites/frames/mm_background_old/Image0111.png differ diff --git a/sprites/frames/mm_background_old/Image0111.png.import b/sprites/frames/mm_background_old/Image0111.png.import new file mode 100644 index 0000000..a4320ed --- /dev/null +++ b/sprites/frames/mm_background_old/Image0111.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnge046emiejt" +path="res://.godot/imported/Image0111.png-d24a8926b03f9f1a2641cee0ea093d6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0111.png" +dest_files=["res://.godot/imported/Image0111.png-d24a8926b03f9f1a2641cee0ea093d6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0112.png b/sprites/frames/mm_background_old/Image0112.png new file mode 100644 index 0000000..39a1b48 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0112.png differ diff --git a/sprites/frames/mm_background_old/Image0112.png.import b/sprites/frames/mm_background_old/Image0112.png.import new file mode 100644 index 0000000..9c66b60 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0112.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b26v8a37ei7kj" +path="res://.godot/imported/Image0112.png-9176bc5d370c7d35afd3a54d95a352f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0112.png" +dest_files=["res://.godot/imported/Image0112.png-9176bc5d370c7d35afd3a54d95a352f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0113.png b/sprites/frames/mm_background_old/Image0113.png new file mode 100644 index 0000000..52c158d Binary files /dev/null and b/sprites/frames/mm_background_old/Image0113.png differ diff --git a/sprites/frames/mm_background_old/Image0113.png.import b/sprites/frames/mm_background_old/Image0113.png.import new file mode 100644 index 0000000..f91ea67 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0113.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qm3qu65baimf" +path="res://.godot/imported/Image0113.png-6059275fe6196e1d19bb876f09a8633f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0113.png" +dest_files=["res://.godot/imported/Image0113.png-6059275fe6196e1d19bb876f09a8633f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0114.png b/sprites/frames/mm_background_old/Image0114.png new file mode 100644 index 0000000..e962ff8 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0114.png differ diff --git a/sprites/frames/mm_background_old/Image0114.png.import b/sprites/frames/mm_background_old/Image0114.png.import new file mode 100644 index 0000000..46c259a --- /dev/null +++ b/sprites/frames/mm_background_old/Image0114.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gu1nclgflt7y" +path="res://.godot/imported/Image0114.png-7e2f647dd6704dfe4538059835db74a3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0114.png" +dest_files=["res://.godot/imported/Image0114.png-7e2f647dd6704dfe4538059835db74a3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0115.png b/sprites/frames/mm_background_old/Image0115.png new file mode 100644 index 0000000..4cd812f Binary files /dev/null and b/sprites/frames/mm_background_old/Image0115.png differ diff --git a/sprites/frames/mm_background_old/Image0115.png.import b/sprites/frames/mm_background_old/Image0115.png.import new file mode 100644 index 0000000..2f2b948 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0115.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqn00kd4h4bx2" +path="res://.godot/imported/Image0115.png-a94acdffbf3d1b6ab9df2658ae60266c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0115.png" +dest_files=["res://.godot/imported/Image0115.png-a94acdffbf3d1b6ab9df2658ae60266c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0116.png b/sprites/frames/mm_background_old/Image0116.png new file mode 100644 index 0000000..b915bde Binary files /dev/null and b/sprites/frames/mm_background_old/Image0116.png differ diff --git a/sprites/frames/mm_background_old/Image0116.png.import b/sprites/frames/mm_background_old/Image0116.png.import new file mode 100644 index 0000000..89c3691 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0116.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdq8836rx6gka" +path="res://.godot/imported/Image0116.png-f2c3a0cfc88b2fd0f483386a73f7bf99.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0116.png" +dest_files=["res://.godot/imported/Image0116.png-f2c3a0cfc88b2fd0f483386a73f7bf99.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0117.png b/sprites/frames/mm_background_old/Image0117.png new file mode 100644 index 0000000..4bb694b Binary files /dev/null and b/sprites/frames/mm_background_old/Image0117.png differ diff --git a/sprites/frames/mm_background_old/Image0117.png.import b/sprites/frames/mm_background_old/Image0117.png.import new file mode 100644 index 0000000..879dd1e --- /dev/null +++ b/sprites/frames/mm_background_old/Image0117.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cink42hyeafjj" +path="res://.godot/imported/Image0117.png-6e08e3ef5a8ef98e47668e731bb9ab83.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0117.png" +dest_files=["res://.godot/imported/Image0117.png-6e08e3ef5a8ef98e47668e731bb9ab83.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0118.png b/sprites/frames/mm_background_old/Image0118.png new file mode 100644 index 0000000..726c670 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0118.png differ diff --git a/sprites/frames/mm_background_old/Image0118.png.import b/sprites/frames/mm_background_old/Image0118.png.import new file mode 100644 index 0000000..d440822 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0118.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bby3dn4uw0gu4" +path="res://.godot/imported/Image0118.png-46da240d05ef1b5d8969f10b69f3e8d3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0118.png" +dest_files=["res://.godot/imported/Image0118.png-46da240d05ef1b5d8969f10b69f3e8d3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0119.png b/sprites/frames/mm_background_old/Image0119.png new file mode 100644 index 0000000..1e28e59 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0119.png differ diff --git a/sprites/frames/mm_background_old/Image0119.png.import b/sprites/frames/mm_background_old/Image0119.png.import new file mode 100644 index 0000000..11c27a4 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0119.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbj7ro1en85c6" +path="res://.godot/imported/Image0119.png-b0a375c71cd56e1a511882294123563e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0119.png" +dest_files=["res://.godot/imported/Image0119.png-b0a375c71cd56e1a511882294123563e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0120.png b/sprites/frames/mm_background_old/Image0120.png new file mode 100644 index 0000000..872e095 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0120.png differ diff --git a/sprites/frames/mm_background_old/Image0120.png.import b/sprites/frames/mm_background_old/Image0120.png.import new file mode 100644 index 0000000..34bc3f5 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0120.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b7klhtqo252bc" +path="res://.godot/imported/Image0120.png-339eefff07d661d729e21c5c1f52c9bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0120.png" +dest_files=["res://.godot/imported/Image0120.png-339eefff07d661d729e21c5c1f52c9bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0121.png b/sprites/frames/mm_background_old/Image0121.png new file mode 100644 index 0000000..ec23724 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0121.png differ diff --git a/sprites/frames/mm_background_old/Image0121.png.import b/sprites/frames/mm_background_old/Image0121.png.import new file mode 100644 index 0000000..0fffde5 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0121.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8ojrebh4vfk6" +path="res://.godot/imported/Image0121.png-944e28d93be7b1252900fcd8b1881c68.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0121.png" +dest_files=["res://.godot/imported/Image0121.png-944e28d93be7b1252900fcd8b1881c68.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0122.png b/sprites/frames/mm_background_old/Image0122.png new file mode 100644 index 0000000..7b4aa35 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0122.png differ diff --git a/sprites/frames/mm_background_old/Image0122.png.import b/sprites/frames/mm_background_old/Image0122.png.import new file mode 100644 index 0000000..51f1e51 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0122.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dkdmg4i7nw0ms" +path="res://.godot/imported/Image0122.png-eb29e3a28c6c32a21735b3f8e4fe31bc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0122.png" +dest_files=["res://.godot/imported/Image0122.png-eb29e3a28c6c32a21735b3f8e4fe31bc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0123.png b/sprites/frames/mm_background_old/Image0123.png new file mode 100644 index 0000000..b365dbc Binary files /dev/null and b/sprites/frames/mm_background_old/Image0123.png differ diff --git a/sprites/frames/mm_background_old/Image0123.png.import b/sprites/frames/mm_background_old/Image0123.png.import new file mode 100644 index 0000000..efbcc28 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0123.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cev666e3vsymn" +path="res://.godot/imported/Image0123.png-cff24621ee58c0091f55aaf4af50182e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0123.png" +dest_files=["res://.godot/imported/Image0123.png-cff24621ee58c0091f55aaf4af50182e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0124.png b/sprites/frames/mm_background_old/Image0124.png new file mode 100644 index 0000000..b205c15 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0124.png differ diff --git a/sprites/frames/mm_background_old/Image0124.png.import b/sprites/frames/mm_background_old/Image0124.png.import new file mode 100644 index 0000000..8dc01c4 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0124.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cqv7cmwt152q5" +path="res://.godot/imported/Image0124.png-b8895ba8ae5ac266996783d2fe808e6b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0124.png" +dest_files=["res://.godot/imported/Image0124.png-b8895ba8ae5ac266996783d2fe808e6b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0125.png b/sprites/frames/mm_background_old/Image0125.png new file mode 100644 index 0000000..2dfb89c Binary files /dev/null and b/sprites/frames/mm_background_old/Image0125.png differ diff --git a/sprites/frames/mm_background_old/Image0125.png.import b/sprites/frames/mm_background_old/Image0125.png.import new file mode 100644 index 0000000..83e0f42 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0125.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ybfpdadnm30s" +path="res://.godot/imported/Image0125.png-6abe0c8973e4c9f5242abf504df2479b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0125.png" +dest_files=["res://.godot/imported/Image0125.png-6abe0c8973e4c9f5242abf504df2479b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0126.png b/sprites/frames/mm_background_old/Image0126.png new file mode 100644 index 0000000..b49e5dc Binary files /dev/null and b/sprites/frames/mm_background_old/Image0126.png differ diff --git a/sprites/frames/mm_background_old/Image0126.png.import b/sprites/frames/mm_background_old/Image0126.png.import new file mode 100644 index 0000000..12a6908 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0126.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6olj0250h45i" +path="res://.godot/imported/Image0126.png-6730ba7b15cd795327a3b32640db2004.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0126.png" +dest_files=["res://.godot/imported/Image0126.png-6730ba7b15cd795327a3b32640db2004.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0127.png b/sprites/frames/mm_background_old/Image0127.png new file mode 100644 index 0000000..0518ae1 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0127.png differ diff --git a/sprites/frames/mm_background_old/Image0127.png.import b/sprites/frames/mm_background_old/Image0127.png.import new file mode 100644 index 0000000..e30c3b4 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0127.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnmwx0vdwv5y4" +path="res://.godot/imported/Image0127.png-24634e4197492dfcf005178e0aebf5c4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0127.png" +dest_files=["res://.godot/imported/Image0127.png-24634e4197492dfcf005178e0aebf5c4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0128.png b/sprites/frames/mm_background_old/Image0128.png new file mode 100644 index 0000000..eb7ab87 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0128.png differ diff --git a/sprites/frames/mm_background_old/Image0128.png.import b/sprites/frames/mm_background_old/Image0128.png.import new file mode 100644 index 0000000..ef2ce6a --- /dev/null +++ b/sprites/frames/mm_background_old/Image0128.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4a62hlhefjqt" +path="res://.godot/imported/Image0128.png-e629c987da47a8565ccf81f8835901be.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0128.png" +dest_files=["res://.godot/imported/Image0128.png-e629c987da47a8565ccf81f8835901be.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0129.png b/sprites/frames/mm_background_old/Image0129.png new file mode 100644 index 0000000..1d4c7ee Binary files /dev/null and b/sprites/frames/mm_background_old/Image0129.png differ diff --git a/sprites/frames/mm_background_old/Image0129.png.import b/sprites/frames/mm_background_old/Image0129.png.import new file mode 100644 index 0000000..536ec07 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0129.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://of8i1oxlm4j3" +path="res://.godot/imported/Image0129.png-0b65ac7ed16527180f38ea5f90e662e1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0129.png" +dest_files=["res://.godot/imported/Image0129.png-0b65ac7ed16527180f38ea5f90e662e1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0130.png b/sprites/frames/mm_background_old/Image0130.png new file mode 100644 index 0000000..74c1f95 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0130.png differ diff --git a/sprites/frames/mm_background_old/Image0130.png.import b/sprites/frames/mm_background_old/Image0130.png.import new file mode 100644 index 0000000..096085e --- /dev/null +++ b/sprites/frames/mm_background_old/Image0130.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://w7fmta3rjjph" +path="res://.godot/imported/Image0130.png-019ecc95ed8b22d5af94c45cea81a09a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0130.png" +dest_files=["res://.godot/imported/Image0130.png-019ecc95ed8b22d5af94c45cea81a09a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0131.png b/sprites/frames/mm_background_old/Image0131.png new file mode 100644 index 0000000..857c626 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0131.png differ diff --git a/sprites/frames/mm_background_old/Image0131.png.import b/sprites/frames/mm_background_old/Image0131.png.import new file mode 100644 index 0000000..c70dcc0 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0131.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwuvgku4lt6eh" +path="res://.godot/imported/Image0131.png-030db3bec73abb5ae12c69603931ceee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0131.png" +dest_files=["res://.godot/imported/Image0131.png-030db3bec73abb5ae12c69603931ceee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0132.png b/sprites/frames/mm_background_old/Image0132.png new file mode 100644 index 0000000..2a89ca9 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0132.png differ diff --git a/sprites/frames/mm_background_old/Image0132.png.import b/sprites/frames/mm_background_old/Image0132.png.import new file mode 100644 index 0000000..a3e73fe --- /dev/null +++ b/sprites/frames/mm_background_old/Image0132.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq2pfw1751sot" +path="res://.godot/imported/Image0132.png-042735670de5ff80b04d1e3673039d35.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0132.png" +dest_files=["res://.godot/imported/Image0132.png-042735670de5ff80b04d1e3673039d35.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0133.png b/sprites/frames/mm_background_old/Image0133.png new file mode 100644 index 0000000..7c1be62 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0133.png differ diff --git a/sprites/frames/mm_background_old/Image0133.png.import b/sprites/frames/mm_background_old/Image0133.png.import new file mode 100644 index 0000000..a351612 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0133.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bwoudsih3jxqm" +path="res://.godot/imported/Image0133.png-c230963e668b08b3a8df678566beca69.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0133.png" +dest_files=["res://.godot/imported/Image0133.png-c230963e668b08b3a8df678566beca69.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0134.png b/sprites/frames/mm_background_old/Image0134.png new file mode 100644 index 0000000..6a7eaf6 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0134.png differ diff --git a/sprites/frames/mm_background_old/Image0134.png.import b/sprites/frames/mm_background_old/Image0134.png.import new file mode 100644 index 0000000..c69e6d0 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0134.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://css0qcpx7rdnj" +path="res://.godot/imported/Image0134.png-dee8955a76f07e5c3ead2c4f9c916836.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0134.png" +dest_files=["res://.godot/imported/Image0134.png-dee8955a76f07e5c3ead2c4f9c916836.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0135.png b/sprites/frames/mm_background_old/Image0135.png new file mode 100644 index 0000000..840fbc2 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0135.png differ diff --git a/sprites/frames/mm_background_old/Image0135.png.import b/sprites/frames/mm_background_old/Image0135.png.import new file mode 100644 index 0000000..94d4a27 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0135.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://h3ucbrqx17wc" +path="res://.godot/imported/Image0135.png-4fa2233770fc51d45243cf167ed8bb56.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0135.png" +dest_files=["res://.godot/imported/Image0135.png-4fa2233770fc51d45243cf167ed8bb56.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0136.png b/sprites/frames/mm_background_old/Image0136.png new file mode 100644 index 0000000..3dc7036 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0136.png differ diff --git a/sprites/frames/mm_background_old/Image0136.png.import b/sprites/frames/mm_background_old/Image0136.png.import new file mode 100644 index 0000000..4f7b709 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0136.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3ooe1entiv4t" +path="res://.godot/imported/Image0136.png-8a62675a5b4fb1f6f6cbd08e9db6e0d1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0136.png" +dest_files=["res://.godot/imported/Image0136.png-8a62675a5b4fb1f6f6cbd08e9db6e0d1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0137.png b/sprites/frames/mm_background_old/Image0137.png new file mode 100644 index 0000000..c8d0008 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0137.png differ diff --git a/sprites/frames/mm_background_old/Image0137.png.import b/sprites/frames/mm_background_old/Image0137.png.import new file mode 100644 index 0000000..0f18523 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0137.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnbnfs54fwr8d" +path="res://.godot/imported/Image0137.png-50616ac3e61e4c5cbde6e6f33faf4998.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0137.png" +dest_files=["res://.godot/imported/Image0137.png-50616ac3e61e4c5cbde6e6f33faf4998.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0138.png b/sprites/frames/mm_background_old/Image0138.png new file mode 100644 index 0000000..10a275a Binary files /dev/null and b/sprites/frames/mm_background_old/Image0138.png differ diff --git a/sprites/frames/mm_background_old/Image0138.png.import b/sprites/frames/mm_background_old/Image0138.png.import new file mode 100644 index 0000000..944c086 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0138.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5gdxjd73lrwv" +path="res://.godot/imported/Image0138.png-d82e6a8c1f84a69b3bbe7ce05d89e886.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0138.png" +dest_files=["res://.godot/imported/Image0138.png-d82e6a8c1f84a69b3bbe7ce05d89e886.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0139.png b/sprites/frames/mm_background_old/Image0139.png new file mode 100644 index 0000000..c6e0880 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0139.png differ diff --git a/sprites/frames/mm_background_old/Image0139.png.import b/sprites/frames/mm_background_old/Image0139.png.import new file mode 100644 index 0000000..457f131 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0139.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd26pp5exuk13" +path="res://.godot/imported/Image0139.png-2b6ec8f6c8bcf76625c2b84ad869bc65.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0139.png" +dest_files=["res://.godot/imported/Image0139.png-2b6ec8f6c8bcf76625c2b84ad869bc65.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0140.png b/sprites/frames/mm_background_old/Image0140.png new file mode 100644 index 0000000..152b26b Binary files /dev/null and b/sprites/frames/mm_background_old/Image0140.png differ diff --git a/sprites/frames/mm_background_old/Image0140.png.import b/sprites/frames/mm_background_old/Image0140.png.import new file mode 100644 index 0000000..fea8a06 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0140.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpwj07ixsclyq" +path="res://.godot/imported/Image0140.png-d466f716d0914b0d5403b1c01c3268f8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0140.png" +dest_files=["res://.godot/imported/Image0140.png-d466f716d0914b0d5403b1c01c3268f8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0141.png b/sprites/frames/mm_background_old/Image0141.png new file mode 100644 index 0000000..51b594e Binary files /dev/null and b/sprites/frames/mm_background_old/Image0141.png differ diff --git a/sprites/frames/mm_background_old/Image0141.png.import b/sprites/frames/mm_background_old/Image0141.png.import new file mode 100644 index 0000000..f75e5e7 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0141.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://becou622ai2jh" +path="res://.godot/imported/Image0141.png-ae699fc693ec653b05f8b1c2db861f72.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0141.png" +dest_files=["res://.godot/imported/Image0141.png-ae699fc693ec653b05f8b1c2db861f72.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0142.png b/sprites/frames/mm_background_old/Image0142.png new file mode 100644 index 0000000..6210380 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0142.png differ diff --git a/sprites/frames/mm_background_old/Image0142.png.import b/sprites/frames/mm_background_old/Image0142.png.import new file mode 100644 index 0000000..7a35626 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0142.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnw7bnwj16jgm" +path="res://.godot/imported/Image0142.png-78d7cab7a6a577f66a8e12c9d0cfd945.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0142.png" +dest_files=["res://.godot/imported/Image0142.png-78d7cab7a6a577f66a8e12c9d0cfd945.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0143.png b/sprites/frames/mm_background_old/Image0143.png new file mode 100644 index 0000000..1dbc0ff Binary files /dev/null and b/sprites/frames/mm_background_old/Image0143.png differ diff --git a/sprites/frames/mm_background_old/Image0143.png.import b/sprites/frames/mm_background_old/Image0143.png.import new file mode 100644 index 0000000..dd57d44 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0143.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1pn4icp12quq" +path="res://.godot/imported/Image0143.png-11f46e4ebc9927dbd2720affe7ba8d0e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0143.png" +dest_files=["res://.godot/imported/Image0143.png-11f46e4ebc9927dbd2720affe7ba8d0e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0144.png b/sprites/frames/mm_background_old/Image0144.png new file mode 100644 index 0000000..2955778 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0144.png differ diff --git a/sprites/frames/mm_background_old/Image0144.png.import b/sprites/frames/mm_background_old/Image0144.png.import new file mode 100644 index 0000000..9eb20ee --- /dev/null +++ b/sprites/frames/mm_background_old/Image0144.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bo7e7byn104du" +path="res://.godot/imported/Image0144.png-1fc8e2e6fa87d3d73ef6a28cd059c662.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0144.png" +dest_files=["res://.godot/imported/Image0144.png-1fc8e2e6fa87d3d73ef6a28cd059c662.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0145.png b/sprites/frames/mm_background_old/Image0145.png new file mode 100644 index 0000000..b591494 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0145.png differ diff --git a/sprites/frames/mm_background_old/Image0145.png.import b/sprites/frames/mm_background_old/Image0145.png.import new file mode 100644 index 0000000..5144c15 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0145.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drwisbkbsq0cj" +path="res://.godot/imported/Image0145.png-ef46b67ccf14b7f0e837fa4ebaa8620a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0145.png" +dest_files=["res://.godot/imported/Image0145.png-ef46b67ccf14b7f0e837fa4ebaa8620a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0146.png b/sprites/frames/mm_background_old/Image0146.png new file mode 100644 index 0000000..04edf0e Binary files /dev/null and b/sprites/frames/mm_background_old/Image0146.png differ diff --git a/sprites/frames/mm_background_old/Image0146.png.import b/sprites/frames/mm_background_old/Image0146.png.import new file mode 100644 index 0000000..2b85469 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0146.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cov77qmigq1b5" +path="res://.godot/imported/Image0146.png-826ed57661ac5da9db74ed84056b2214.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0146.png" +dest_files=["res://.godot/imported/Image0146.png-826ed57661ac5da9db74ed84056b2214.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0147.png b/sprites/frames/mm_background_old/Image0147.png new file mode 100644 index 0000000..c845580 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0147.png differ diff --git a/sprites/frames/mm_background_old/Image0147.png.import b/sprites/frames/mm_background_old/Image0147.png.import new file mode 100644 index 0000000..a82c23a --- /dev/null +++ b/sprites/frames/mm_background_old/Image0147.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cant06o56mor7" +path="res://.godot/imported/Image0147.png-2b307cb8e288cdd97770621da3bb09ef.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0147.png" +dest_files=["res://.godot/imported/Image0147.png-2b307cb8e288cdd97770621da3bb09ef.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0148.png b/sprites/frames/mm_background_old/Image0148.png new file mode 100644 index 0000000..99ed867 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0148.png differ diff --git a/sprites/frames/mm_background_old/Image0148.png.import b/sprites/frames/mm_background_old/Image0148.png.import new file mode 100644 index 0000000..941ebff --- /dev/null +++ b/sprites/frames/mm_background_old/Image0148.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://q5ph2v02bax4" +path="res://.godot/imported/Image0148.png-a57ce551cea7a658c457602c1e6227f0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0148.png" +dest_files=["res://.godot/imported/Image0148.png-a57ce551cea7a658c457602c1e6227f0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0149.png b/sprites/frames/mm_background_old/Image0149.png new file mode 100644 index 0000000..ef74d3d Binary files /dev/null and b/sprites/frames/mm_background_old/Image0149.png differ diff --git a/sprites/frames/mm_background_old/Image0149.png.import b/sprites/frames/mm_background_old/Image0149.png.import new file mode 100644 index 0000000..95c742b --- /dev/null +++ b/sprites/frames/mm_background_old/Image0149.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://p4fsyxasjv77" +path="res://.godot/imported/Image0149.png-0b235df824bce5447682beffcc59b309.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0149.png" +dest_files=["res://.godot/imported/Image0149.png-0b235df824bce5447682beffcc59b309.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0150.png b/sprites/frames/mm_background_old/Image0150.png new file mode 100644 index 0000000..f47b1df Binary files /dev/null and b/sprites/frames/mm_background_old/Image0150.png differ diff --git a/sprites/frames/mm_background_old/Image0150.png.import b/sprites/frames/mm_background_old/Image0150.png.import new file mode 100644 index 0000000..7bc57f4 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0150.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dq7ms7s884xel" +path="res://.godot/imported/Image0150.png-77cbdd6ffbe4d91be618e6f8b67ea6bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0150.png" +dest_files=["res://.godot/imported/Image0150.png-77cbdd6ffbe4d91be618e6f8b67ea6bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0151.png b/sprites/frames/mm_background_old/Image0151.png new file mode 100644 index 0000000..fb2b16a Binary files /dev/null and b/sprites/frames/mm_background_old/Image0151.png differ diff --git a/sprites/frames/mm_background_old/Image0151.png.import b/sprites/frames/mm_background_old/Image0151.png.import new file mode 100644 index 0000000..550059f --- /dev/null +++ b/sprites/frames/mm_background_old/Image0151.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by70polg0eg3m" +path="res://.godot/imported/Image0151.png-22496f48b605ed6eae9b45d62928da02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0151.png" +dest_files=["res://.godot/imported/Image0151.png-22496f48b605ed6eae9b45d62928da02.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0152.png b/sprites/frames/mm_background_old/Image0152.png new file mode 100644 index 0000000..4ad25d3 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0152.png differ diff --git a/sprites/frames/mm_background_old/Image0152.png.import b/sprites/frames/mm_background_old/Image0152.png.import new file mode 100644 index 0000000..57bb4a5 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0152.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crkx8w5mmjsxp" +path="res://.godot/imported/Image0152.png-d42e88e1b34e6c1591dc80c3672a78cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0152.png" +dest_files=["res://.godot/imported/Image0152.png-d42e88e1b34e6c1591dc80c3672a78cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0153.png b/sprites/frames/mm_background_old/Image0153.png new file mode 100644 index 0000000..73074d1 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0153.png differ diff --git a/sprites/frames/mm_background_old/Image0153.png.import b/sprites/frames/mm_background_old/Image0153.png.import new file mode 100644 index 0000000..8be226c --- /dev/null +++ b/sprites/frames/mm_background_old/Image0153.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duynuyid2l5pp" +path="res://.godot/imported/Image0153.png-93a92cc9bb0b924ebd120188c220e52c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0153.png" +dest_files=["res://.godot/imported/Image0153.png-93a92cc9bb0b924ebd120188c220e52c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0154.png b/sprites/frames/mm_background_old/Image0154.png new file mode 100644 index 0000000..4c850c3 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0154.png differ diff --git a/sprites/frames/mm_background_old/Image0154.png.import b/sprites/frames/mm_background_old/Image0154.png.import new file mode 100644 index 0000000..b5073cc --- /dev/null +++ b/sprites/frames/mm_background_old/Image0154.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4mh1n63yw65y" +path="res://.godot/imported/Image0154.png-b9fe599c547d81aa4731e599def3f823.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0154.png" +dest_files=["res://.godot/imported/Image0154.png-b9fe599c547d81aa4731e599def3f823.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0155.png b/sprites/frames/mm_background_old/Image0155.png new file mode 100644 index 0000000..1f39aff Binary files /dev/null and b/sprites/frames/mm_background_old/Image0155.png differ diff --git a/sprites/frames/mm_background_old/Image0155.png.import b/sprites/frames/mm_background_old/Image0155.png.import new file mode 100644 index 0000000..915f2d7 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0155.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnpqknriui44r" +path="res://.godot/imported/Image0155.png-a79b81e579eea912dcd66b4c76586fdc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0155.png" +dest_files=["res://.godot/imported/Image0155.png-a79b81e579eea912dcd66b4c76586fdc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0156.png b/sprites/frames/mm_background_old/Image0156.png new file mode 100644 index 0000000..8d0272a Binary files /dev/null and b/sprites/frames/mm_background_old/Image0156.png differ diff --git a/sprites/frames/mm_background_old/Image0156.png.import b/sprites/frames/mm_background_old/Image0156.png.import new file mode 100644 index 0000000..5ca7ef5 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0156.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://una801ay44qt" +path="res://.godot/imported/Image0156.png-d4f5c1ec0993f023c2a290a461c9f219.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0156.png" +dest_files=["res://.godot/imported/Image0156.png-d4f5c1ec0993f023c2a290a461c9f219.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0157.png b/sprites/frames/mm_background_old/Image0157.png new file mode 100644 index 0000000..48d6ce7 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0157.png differ diff --git a/sprites/frames/mm_background_old/Image0157.png.import b/sprites/frames/mm_background_old/Image0157.png.import new file mode 100644 index 0000000..83d9749 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0157.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c7y1nbjss044s" +path="res://.godot/imported/Image0157.png-5863b9f1f968a4f77a9e5172a5709c16.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0157.png" +dest_files=["res://.godot/imported/Image0157.png-5863b9f1f968a4f77a9e5172a5709c16.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0158.png b/sprites/frames/mm_background_old/Image0158.png new file mode 100644 index 0000000..1e0a50f Binary files /dev/null and b/sprites/frames/mm_background_old/Image0158.png differ diff --git a/sprites/frames/mm_background_old/Image0158.png.import b/sprites/frames/mm_background_old/Image0158.png.import new file mode 100644 index 0000000..7a7efdc --- /dev/null +++ b/sprites/frames/mm_background_old/Image0158.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://40o60mkl6jcm" +path="res://.godot/imported/Image0158.png-238867c113674f3ac4f6072f4c74fea9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0158.png" +dest_files=["res://.godot/imported/Image0158.png-238867c113674f3ac4f6072f4c74fea9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0159.png b/sprites/frames/mm_background_old/Image0159.png new file mode 100644 index 0000000..953ffae Binary files /dev/null and b/sprites/frames/mm_background_old/Image0159.png differ diff --git a/sprites/frames/mm_background_old/Image0159.png.import b/sprites/frames/mm_background_old/Image0159.png.import new file mode 100644 index 0000000..6129dbb --- /dev/null +++ b/sprites/frames/mm_background_old/Image0159.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bd00ohm6iyqol" +path="res://.godot/imported/Image0159.png-a3bc6a4f6cbd1da7e1cfbd2edffca482.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0159.png" +dest_files=["res://.godot/imported/Image0159.png-a3bc6a4f6cbd1da7e1cfbd2edffca482.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0160.png b/sprites/frames/mm_background_old/Image0160.png new file mode 100644 index 0000000..f7c5c38 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0160.png differ diff --git a/sprites/frames/mm_background_old/Image0160.png.import b/sprites/frames/mm_background_old/Image0160.png.import new file mode 100644 index 0000000..840190e --- /dev/null +++ b/sprites/frames/mm_background_old/Image0160.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://chshd87oaijws" +path="res://.godot/imported/Image0160.png-894db6d59969ac563a318ea4fe88ce90.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0160.png" +dest_files=["res://.godot/imported/Image0160.png-894db6d59969ac563a318ea4fe88ce90.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0161.png b/sprites/frames/mm_background_old/Image0161.png new file mode 100644 index 0000000..df6a9c4 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0161.png differ diff --git a/sprites/frames/mm_background_old/Image0161.png.import b/sprites/frames/mm_background_old/Image0161.png.import new file mode 100644 index 0000000..e8482f4 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0161.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmbi6d2m5q62q" +path="res://.godot/imported/Image0161.png-818cfb1d985e8d57799c3a3081f60914.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0161.png" +dest_files=["res://.godot/imported/Image0161.png-818cfb1d985e8d57799c3a3081f60914.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0162.png b/sprites/frames/mm_background_old/Image0162.png new file mode 100644 index 0000000..7ca524c Binary files /dev/null and b/sprites/frames/mm_background_old/Image0162.png differ diff --git a/sprites/frames/mm_background_old/Image0162.png.import b/sprites/frames/mm_background_old/Image0162.png.import new file mode 100644 index 0000000..b333e1a --- /dev/null +++ b/sprites/frames/mm_background_old/Image0162.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://27luxb85cyqt" +path="res://.godot/imported/Image0162.png-3bb336b971dcc20999d553382b44b20d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0162.png" +dest_files=["res://.godot/imported/Image0162.png-3bb336b971dcc20999d553382b44b20d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0163.png b/sprites/frames/mm_background_old/Image0163.png new file mode 100644 index 0000000..366ded9 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0163.png differ diff --git a/sprites/frames/mm_background_old/Image0163.png.import b/sprites/frames/mm_background_old/Image0163.png.import new file mode 100644 index 0000000..a5a3ec0 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0163.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8yhiroqi84so" +path="res://.godot/imported/Image0163.png-508653d30dfb613b69b3c8f0dde5fc9f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0163.png" +dest_files=["res://.godot/imported/Image0163.png-508653d30dfb613b69b3c8f0dde5fc9f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0164.png b/sprites/frames/mm_background_old/Image0164.png new file mode 100644 index 0000000..2803780 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0164.png differ diff --git a/sprites/frames/mm_background_old/Image0164.png.import b/sprites/frames/mm_background_old/Image0164.png.import new file mode 100644 index 0000000..fa342d4 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0164.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dn07kn4x83n7y" +path="res://.godot/imported/Image0164.png-8c66f74b3c285f2f98f4b088fc1c7add.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0164.png" +dest_files=["res://.godot/imported/Image0164.png-8c66f74b3c285f2f98f4b088fc1c7add.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0165.png b/sprites/frames/mm_background_old/Image0165.png new file mode 100644 index 0000000..fce1ac8 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0165.png differ diff --git a/sprites/frames/mm_background_old/Image0165.png.import b/sprites/frames/mm_background_old/Image0165.png.import new file mode 100644 index 0000000..6b1da59 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0165.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cj2l53qtd0kwu" +path="res://.godot/imported/Image0165.png-bbd63004e9ce33b19cb53487bde424c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0165.png" +dest_files=["res://.godot/imported/Image0165.png-bbd63004e9ce33b19cb53487bde424c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0166.png b/sprites/frames/mm_background_old/Image0166.png new file mode 100644 index 0000000..eca2ef3 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0166.png differ diff --git a/sprites/frames/mm_background_old/Image0166.png.import b/sprites/frames/mm_background_old/Image0166.png.import new file mode 100644 index 0000000..5c16517 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0166.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://31jf15llmodw" +path="res://.godot/imported/Image0166.png-23f39519bef7e2a175cf59e4b111781c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0166.png" +dest_files=["res://.godot/imported/Image0166.png-23f39519bef7e2a175cf59e4b111781c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0167.png b/sprites/frames/mm_background_old/Image0167.png new file mode 100644 index 0000000..a32b16b Binary files /dev/null and b/sprites/frames/mm_background_old/Image0167.png differ diff --git a/sprites/frames/mm_background_old/Image0167.png.import b/sprites/frames/mm_background_old/Image0167.png.import new file mode 100644 index 0000000..7a72b08 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0167.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://brcu36ugq1adi" +path="res://.godot/imported/Image0167.png-2456e6e44d876e209435c7386c05f554.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0167.png" +dest_files=["res://.godot/imported/Image0167.png-2456e6e44d876e209435c7386c05f554.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0168.png b/sprites/frames/mm_background_old/Image0168.png new file mode 100644 index 0000000..556e49e Binary files /dev/null and b/sprites/frames/mm_background_old/Image0168.png differ diff --git a/sprites/frames/mm_background_old/Image0168.png.import b/sprites/frames/mm_background_old/Image0168.png.import new file mode 100644 index 0000000..71272a4 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0168.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://x6djmlx7vu20" +path="res://.godot/imported/Image0168.png-a5289c7db9aa2b26373fdb42f459dc85.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0168.png" +dest_files=["res://.godot/imported/Image0168.png-a5289c7db9aa2b26373fdb42f459dc85.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0169.png b/sprites/frames/mm_background_old/Image0169.png new file mode 100644 index 0000000..cfd3f87 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0169.png differ diff --git a/sprites/frames/mm_background_old/Image0169.png.import b/sprites/frames/mm_background_old/Image0169.png.import new file mode 100644 index 0000000..3006843 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0169.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp1jx2rswp51u" +path="res://.godot/imported/Image0169.png-c5a4d8786834205f12ab310d4f9c3f95.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0169.png" +dest_files=["res://.godot/imported/Image0169.png-c5a4d8786834205f12ab310d4f9c3f95.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0170.png b/sprites/frames/mm_background_old/Image0170.png new file mode 100644 index 0000000..64dabe6 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0170.png differ diff --git a/sprites/frames/mm_background_old/Image0170.png.import b/sprites/frames/mm_background_old/Image0170.png.import new file mode 100644 index 0000000..21659ee --- /dev/null +++ b/sprites/frames/mm_background_old/Image0170.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dmyb2myte8bnh" +path="res://.godot/imported/Image0170.png-61d8723abd2f7dfd1765aeb089b16129.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0170.png" +dest_files=["res://.godot/imported/Image0170.png-61d8723abd2f7dfd1765aeb089b16129.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0171.png b/sprites/frames/mm_background_old/Image0171.png new file mode 100644 index 0000000..608ec61 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0171.png differ diff --git a/sprites/frames/mm_background_old/Image0171.png.import b/sprites/frames/mm_background_old/Image0171.png.import new file mode 100644 index 0000000..5bff36d --- /dev/null +++ b/sprites/frames/mm_background_old/Image0171.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://hhclfp3wx02j" +path="res://.godot/imported/Image0171.png-0eefc227d4423ed8703ac361f86ebff9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0171.png" +dest_files=["res://.godot/imported/Image0171.png-0eefc227d4423ed8703ac361f86ebff9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0172.png b/sprites/frames/mm_background_old/Image0172.png new file mode 100644 index 0000000..5164e2b Binary files /dev/null and b/sprites/frames/mm_background_old/Image0172.png differ diff --git a/sprites/frames/mm_background_old/Image0172.png.import b/sprites/frames/mm_background_old/Image0172.png.import new file mode 100644 index 0000000..55a55d8 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0172.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxcd714ktqij4" +path="res://.godot/imported/Image0172.png-04811a9a245a710965da1f89c49fe578.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0172.png" +dest_files=["res://.godot/imported/Image0172.png-04811a9a245a710965da1f89c49fe578.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0173.png b/sprites/frames/mm_background_old/Image0173.png new file mode 100644 index 0000000..daf9bfd Binary files /dev/null and b/sprites/frames/mm_background_old/Image0173.png differ diff --git a/sprites/frames/mm_background_old/Image0173.png.import b/sprites/frames/mm_background_old/Image0173.png.import new file mode 100644 index 0000000..97fc5a8 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0173.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://df3yieig773dy" +path="res://.godot/imported/Image0173.png-e2ed8a92bf46b4fba03b177bdceab2a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0173.png" +dest_files=["res://.godot/imported/Image0173.png-e2ed8a92bf46b4fba03b177bdceab2a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0174.png b/sprites/frames/mm_background_old/Image0174.png new file mode 100644 index 0000000..e796bfe Binary files /dev/null and b/sprites/frames/mm_background_old/Image0174.png differ diff --git a/sprites/frames/mm_background_old/Image0174.png.import b/sprites/frames/mm_background_old/Image0174.png.import new file mode 100644 index 0000000..c95f472 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0174.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bid2of2aincav" +path="res://.godot/imported/Image0174.png-e53aebf5b5680f06697ae779f1c4946b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0174.png" +dest_files=["res://.godot/imported/Image0174.png-e53aebf5b5680f06697ae779f1c4946b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0175.png b/sprites/frames/mm_background_old/Image0175.png new file mode 100644 index 0000000..a7c70a5 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0175.png differ diff --git a/sprites/frames/mm_background_old/Image0175.png.import b/sprites/frames/mm_background_old/Image0175.png.import new file mode 100644 index 0000000..414a71d --- /dev/null +++ b/sprites/frames/mm_background_old/Image0175.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dg0rh40ruywjs" +path="res://.godot/imported/Image0175.png-9383406a46e578623a1d5728a92193b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0175.png" +dest_files=["res://.godot/imported/Image0175.png-9383406a46e578623a1d5728a92193b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0176.png b/sprites/frames/mm_background_old/Image0176.png new file mode 100644 index 0000000..374382c Binary files /dev/null and b/sprites/frames/mm_background_old/Image0176.png differ diff --git a/sprites/frames/mm_background_old/Image0176.png.import b/sprites/frames/mm_background_old/Image0176.png.import new file mode 100644 index 0000000..5fe5d46 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0176.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbvv1a3tblwxs" +path="res://.godot/imported/Image0176.png-105aa28c735d3f3589dcd96820e2a35c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0176.png" +dest_files=["res://.godot/imported/Image0176.png-105aa28c735d3f3589dcd96820e2a35c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0177.png b/sprites/frames/mm_background_old/Image0177.png new file mode 100644 index 0000000..e087360 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0177.png differ diff --git a/sprites/frames/mm_background_old/Image0177.png.import b/sprites/frames/mm_background_old/Image0177.png.import new file mode 100644 index 0000000..def18b2 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0177.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://or7ovegu6nge" +path="res://.godot/imported/Image0177.png-e22f1e5ff2a44a11c613345b39f7e9ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0177.png" +dest_files=["res://.godot/imported/Image0177.png-e22f1e5ff2a44a11c613345b39f7e9ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0178.png b/sprites/frames/mm_background_old/Image0178.png new file mode 100644 index 0000000..f1c52a1 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0178.png differ diff --git a/sprites/frames/mm_background_old/Image0178.png.import b/sprites/frames/mm_background_old/Image0178.png.import new file mode 100644 index 0000000..d1e8f56 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0178.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqvgvmnaqig1i" +path="res://.godot/imported/Image0178.png-efb77ab3ce8a8e217375155681052fa6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0178.png" +dest_files=["res://.godot/imported/Image0178.png-efb77ab3ce8a8e217375155681052fa6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0179.png b/sprites/frames/mm_background_old/Image0179.png new file mode 100644 index 0000000..e274710 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0179.png differ diff --git a/sprites/frames/mm_background_old/Image0179.png.import b/sprites/frames/mm_background_old/Image0179.png.import new file mode 100644 index 0000000..b41a485 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0179.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckes5sq2pxa0q" +path="res://.godot/imported/Image0179.png-1ece1101f600e6b8fa3a6833435d7da8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0179.png" +dest_files=["res://.godot/imported/Image0179.png-1ece1101f600e6b8fa3a6833435d7da8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0180.png b/sprites/frames/mm_background_old/Image0180.png new file mode 100644 index 0000000..db2756b Binary files /dev/null and b/sprites/frames/mm_background_old/Image0180.png differ diff --git a/sprites/frames/mm_background_old/Image0180.png.import b/sprites/frames/mm_background_old/Image0180.png.import new file mode 100644 index 0000000..244a1db --- /dev/null +++ b/sprites/frames/mm_background_old/Image0180.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ojibbx1u6n63" +path="res://.godot/imported/Image0180.png-8bf9fd5005dfbbda2285e1e334107258.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0180.png" +dest_files=["res://.godot/imported/Image0180.png-8bf9fd5005dfbbda2285e1e334107258.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0181.png b/sprites/frames/mm_background_old/Image0181.png new file mode 100644 index 0000000..70b9375 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0181.png differ diff --git a/sprites/frames/mm_background_old/Image0181.png.import b/sprites/frames/mm_background_old/Image0181.png.import new file mode 100644 index 0000000..231790b --- /dev/null +++ b/sprites/frames/mm_background_old/Image0181.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bdtyp33n3lv8k" +path="res://.godot/imported/Image0181.png-6e35dac0b54ad1e412a4b787fd8ca42b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0181.png" +dest_files=["res://.godot/imported/Image0181.png-6e35dac0b54ad1e412a4b787fd8ca42b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0182.png b/sprites/frames/mm_background_old/Image0182.png new file mode 100644 index 0000000..6f0e445 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0182.png differ diff --git a/sprites/frames/mm_background_old/Image0182.png.import b/sprites/frames/mm_background_old/Image0182.png.import new file mode 100644 index 0000000..d7563ee --- /dev/null +++ b/sprites/frames/mm_background_old/Image0182.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk2ybhlr75jqs" +path="res://.godot/imported/Image0182.png-e68bde19deb23be6234372372ff4d18c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0182.png" +dest_files=["res://.godot/imported/Image0182.png-e68bde19deb23be6234372372ff4d18c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0183.png b/sprites/frames/mm_background_old/Image0183.png new file mode 100644 index 0000000..b2537b4 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0183.png differ diff --git a/sprites/frames/mm_background_old/Image0183.png.import b/sprites/frames/mm_background_old/Image0183.png.import new file mode 100644 index 0000000..2bced40 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0183.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://wyvwg7muwdeu" +path="res://.godot/imported/Image0183.png-c10b8e02f31a958ec4196dfe45b65250.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0183.png" +dest_files=["res://.godot/imported/Image0183.png-c10b8e02f31a958ec4196dfe45b65250.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0184.png b/sprites/frames/mm_background_old/Image0184.png new file mode 100644 index 0000000..5a7d3a6 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0184.png differ diff --git a/sprites/frames/mm_background_old/Image0184.png.import b/sprites/frames/mm_background_old/Image0184.png.import new file mode 100644 index 0000000..f4e3d78 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0184.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2vkotb1rg4h2" +path="res://.godot/imported/Image0184.png-0d698b47c91181628bab82c8ac0815ce.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0184.png" +dest_files=["res://.godot/imported/Image0184.png-0d698b47c91181628bab82c8ac0815ce.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0185.png b/sprites/frames/mm_background_old/Image0185.png new file mode 100644 index 0000000..8cf234c Binary files /dev/null and b/sprites/frames/mm_background_old/Image0185.png differ diff --git a/sprites/frames/mm_background_old/Image0185.png.import b/sprites/frames/mm_background_old/Image0185.png.import new file mode 100644 index 0000000..29aec93 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0185.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3xaq5yl51kbi" +path="res://.godot/imported/Image0185.png-be08c0390ba66850808ea5e7fe66885f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0185.png" +dest_files=["res://.godot/imported/Image0185.png-be08c0390ba66850808ea5e7fe66885f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0186.png b/sprites/frames/mm_background_old/Image0186.png new file mode 100644 index 0000000..134ecc7 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0186.png differ diff --git a/sprites/frames/mm_background_old/Image0186.png.import b/sprites/frames/mm_background_old/Image0186.png.import new file mode 100644 index 0000000..de7ee23 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0186.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmlwsbgpubf07" +path="res://.godot/imported/Image0186.png-4dbc4f25ce9a5336a8e150f16393a57b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0186.png" +dest_files=["res://.godot/imported/Image0186.png-4dbc4f25ce9a5336a8e150f16393a57b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0187.png b/sprites/frames/mm_background_old/Image0187.png new file mode 100644 index 0000000..3978724 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0187.png differ diff --git a/sprites/frames/mm_background_old/Image0187.png.import b/sprites/frames/mm_background_old/Image0187.png.import new file mode 100644 index 0000000..dc13424 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0187.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvlu15a5l2at2" +path="res://.godot/imported/Image0187.png-293a55b9f166c32ab537d1a13eed441b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0187.png" +dest_files=["res://.godot/imported/Image0187.png-293a55b9f166c32ab537d1a13eed441b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0188.png b/sprites/frames/mm_background_old/Image0188.png new file mode 100644 index 0000000..c1e4a6b Binary files /dev/null and b/sprites/frames/mm_background_old/Image0188.png differ diff --git a/sprites/frames/mm_background_old/Image0188.png.import b/sprites/frames/mm_background_old/Image0188.png.import new file mode 100644 index 0000000..0340b64 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0188.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://gtnxdgl0vuwn" +path="res://.godot/imported/Image0188.png-f402875159051ae4f0693435e084405a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0188.png" +dest_files=["res://.godot/imported/Image0188.png-f402875159051ae4f0693435e084405a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0189.png b/sprites/frames/mm_background_old/Image0189.png new file mode 100644 index 0000000..088df02 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0189.png differ diff --git a/sprites/frames/mm_background_old/Image0189.png.import b/sprites/frames/mm_background_old/Image0189.png.import new file mode 100644 index 0000000..8bcc694 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0189.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br2io6ppq0sv5" +path="res://.godot/imported/Image0189.png-326213ee4dbbe47d817c3cd9ec92f4cf.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0189.png" +dest_files=["res://.godot/imported/Image0189.png-326213ee4dbbe47d817c3cd9ec92f4cf.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0190.png b/sprites/frames/mm_background_old/Image0190.png new file mode 100644 index 0000000..f7148d6 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0190.png differ diff --git a/sprites/frames/mm_background_old/Image0190.png.import b/sprites/frames/mm_background_old/Image0190.png.import new file mode 100644 index 0000000..5310fc6 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0190.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://1sfh4bh2ug1m" +path="res://.godot/imported/Image0190.png-9d07c272f689c17fbd4127a58a0b0d7f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0190.png" +dest_files=["res://.godot/imported/Image0190.png-9d07c272f689c17fbd4127a58a0b0d7f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0191.png b/sprites/frames/mm_background_old/Image0191.png new file mode 100644 index 0000000..b967a27 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0191.png differ diff --git a/sprites/frames/mm_background_old/Image0191.png.import b/sprites/frames/mm_background_old/Image0191.png.import new file mode 100644 index 0000000..9c87032 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0191.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c64b3bupoqfvj" +path="res://.godot/imported/Image0191.png-8e5a975589e0f647dd4f6db305f0d684.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0191.png" +dest_files=["res://.godot/imported/Image0191.png-8e5a975589e0f647dd4f6db305f0d684.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0192.png b/sprites/frames/mm_background_old/Image0192.png new file mode 100644 index 0000000..f954e91 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0192.png differ diff --git a/sprites/frames/mm_background_old/Image0192.png.import b/sprites/frames/mm_background_old/Image0192.png.import new file mode 100644 index 0000000..d20b030 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0192.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jt30r88vkx4v" +path="res://.godot/imported/Image0192.png-16b424d0761c307d2ddcc4874f3de3e9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0192.png" +dest_files=["res://.godot/imported/Image0192.png-16b424d0761c307d2ddcc4874f3de3e9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0193.png b/sprites/frames/mm_background_old/Image0193.png new file mode 100644 index 0000000..e5e6677 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0193.png differ diff --git a/sprites/frames/mm_background_old/Image0193.png.import b/sprites/frames/mm_background_old/Image0193.png.import new file mode 100644 index 0000000..d81fb6a --- /dev/null +++ b/sprites/frames/mm_background_old/Image0193.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cismrkkvvgi3t" +path="res://.godot/imported/Image0193.png-1df100d56901777698884aa8f2db78a2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0193.png" +dest_files=["res://.godot/imported/Image0193.png-1df100d56901777698884aa8f2db78a2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0194.png b/sprites/frames/mm_background_old/Image0194.png new file mode 100644 index 0000000..7fbf728 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0194.png differ diff --git a/sprites/frames/mm_background_old/Image0194.png.import b/sprites/frames/mm_background_old/Image0194.png.import new file mode 100644 index 0000000..14960ca --- /dev/null +++ b/sprites/frames/mm_background_old/Image0194.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dix86dnllxs3b" +path="res://.godot/imported/Image0194.png-93474650a643f0e2b6427ace365e9369.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0194.png" +dest_files=["res://.godot/imported/Image0194.png-93474650a643f0e2b6427ace365e9369.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0195.png b/sprites/frames/mm_background_old/Image0195.png new file mode 100644 index 0000000..5f262fc Binary files /dev/null and b/sprites/frames/mm_background_old/Image0195.png differ diff --git a/sprites/frames/mm_background_old/Image0195.png.import b/sprites/frames/mm_background_old/Image0195.png.import new file mode 100644 index 0000000..9407029 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0195.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cro61u8yu4d38" +path="res://.godot/imported/Image0195.png-396054514a626ebdc33fe622d20f8b9b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0195.png" +dest_files=["res://.godot/imported/Image0195.png-396054514a626ebdc33fe622d20f8b9b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0196.png b/sprites/frames/mm_background_old/Image0196.png new file mode 100644 index 0000000..18eabe7 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0196.png differ diff --git a/sprites/frames/mm_background_old/Image0196.png.import b/sprites/frames/mm_background_old/Image0196.png.import new file mode 100644 index 0000000..9c42e31 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0196.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dnaecf55lc7ri" +path="res://.godot/imported/Image0196.png-2eb6a46964235ec7588a1b5946e79e06.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0196.png" +dest_files=["res://.godot/imported/Image0196.png-2eb6a46964235ec7588a1b5946e79e06.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0197.png b/sprites/frames/mm_background_old/Image0197.png new file mode 100644 index 0000000..50eeb42 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0197.png differ diff --git a/sprites/frames/mm_background_old/Image0197.png.import b/sprites/frames/mm_background_old/Image0197.png.import new file mode 100644 index 0000000..6625071 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0197.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c547mepc882sy" +path="res://.godot/imported/Image0197.png-9813b75ed404b304f8fbce3231c5f647.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0197.png" +dest_files=["res://.godot/imported/Image0197.png-9813b75ed404b304f8fbce3231c5f647.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0198.png b/sprites/frames/mm_background_old/Image0198.png new file mode 100644 index 0000000..6cdb9ee Binary files /dev/null and b/sprites/frames/mm_background_old/Image0198.png differ diff --git a/sprites/frames/mm_background_old/Image0198.png.import b/sprites/frames/mm_background_old/Image0198.png.import new file mode 100644 index 0000000..0341677 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0198.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://v8atvn0ccao1" +path="res://.godot/imported/Image0198.png-63993b264b2a6120afd9d110dad0d64e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0198.png" +dest_files=["res://.godot/imported/Image0198.png-63993b264b2a6120afd9d110dad0d64e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0199.png b/sprites/frames/mm_background_old/Image0199.png new file mode 100644 index 0000000..8adc84a Binary files /dev/null and b/sprites/frames/mm_background_old/Image0199.png differ diff --git a/sprites/frames/mm_background_old/Image0199.png.import b/sprites/frames/mm_background_old/Image0199.png.import new file mode 100644 index 0000000..b587971 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0199.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cd8u43vl06s71" +path="res://.godot/imported/Image0199.png-58be0ae8fc6ab8bc89dbbf02ad0f30cc.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0199.png" +dest_files=["res://.godot/imported/Image0199.png-58be0ae8fc6ab8bc89dbbf02ad0f30cc.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0200.png b/sprites/frames/mm_background_old/Image0200.png new file mode 100644 index 0000000..00605d6 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0200.png differ diff --git a/sprites/frames/mm_background_old/Image0200.png.import b/sprites/frames/mm_background_old/Image0200.png.import new file mode 100644 index 0000000..ae4d6e7 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0200.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0vuljurcmgsd" +path="res://.godot/imported/Image0200.png-be2c64706723302bed5f6bbd3a69f057.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0200.png" +dest_files=["res://.godot/imported/Image0200.png-be2c64706723302bed5f6bbd3a69f057.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0201.png b/sprites/frames/mm_background_old/Image0201.png new file mode 100644 index 0000000..2e4b357 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0201.png differ diff --git a/sprites/frames/mm_background_old/Image0201.png.import b/sprites/frames/mm_background_old/Image0201.png.import new file mode 100644 index 0000000..9469a6e --- /dev/null +++ b/sprites/frames/mm_background_old/Image0201.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dp6nby3sermqy" +path="res://.godot/imported/Image0201.png-7faa22b063ea7f0516d8cf26fc33bfde.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0201.png" +dest_files=["res://.godot/imported/Image0201.png-7faa22b063ea7f0516d8cf26fc33bfde.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0202.png b/sprites/frames/mm_background_old/Image0202.png new file mode 100644 index 0000000..d61b3b0 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0202.png differ diff --git a/sprites/frames/mm_background_old/Image0202.png.import b/sprites/frames/mm_background_old/Image0202.png.import new file mode 100644 index 0000000..1c7a7c0 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0202.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://blg2vy55fpsbe" +path="res://.godot/imported/Image0202.png-6907a7dd6f395be05e5d9159153ed92c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0202.png" +dest_files=["res://.godot/imported/Image0202.png-6907a7dd6f395be05e5d9159153ed92c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0203.png b/sprites/frames/mm_background_old/Image0203.png new file mode 100644 index 0000000..53c5a8a Binary files /dev/null and b/sprites/frames/mm_background_old/Image0203.png differ diff --git a/sprites/frames/mm_background_old/Image0203.png.import b/sprites/frames/mm_background_old/Image0203.png.import new file mode 100644 index 0000000..dc07b0b --- /dev/null +++ b/sprites/frames/mm_background_old/Image0203.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c4wl2mfog53oi" +path="res://.godot/imported/Image0203.png-18faa04f55d931976d467ba5c4dff0b8.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0203.png" +dest_files=["res://.godot/imported/Image0203.png-18faa04f55d931976d467ba5c4dff0b8.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0204.png b/sprites/frames/mm_background_old/Image0204.png new file mode 100644 index 0000000..52d6354 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0204.png differ diff --git a/sprites/frames/mm_background_old/Image0204.png.import b/sprites/frames/mm_background_old/Image0204.png.import new file mode 100644 index 0000000..47e056d --- /dev/null +++ b/sprites/frames/mm_background_old/Image0204.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8s2kdcusutxv" +path="res://.godot/imported/Image0204.png-fb308218e92c84afdbd97f06c2918eac.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0204.png" +dest_files=["res://.godot/imported/Image0204.png-fb308218e92c84afdbd97f06c2918eac.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0205.png b/sprites/frames/mm_background_old/Image0205.png new file mode 100644 index 0000000..817c651 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0205.png differ diff --git a/sprites/frames/mm_background_old/Image0205.png.import b/sprites/frames/mm_background_old/Image0205.png.import new file mode 100644 index 0000000..25b1459 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0205.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3a5mbopkt8op" +path="res://.godot/imported/Image0205.png-3ca6dd5cdb27a4d4ff8a7e2113d9ad1b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0205.png" +dest_files=["res://.godot/imported/Image0205.png-3ca6dd5cdb27a4d4ff8a7e2113d9ad1b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0206.png b/sprites/frames/mm_background_old/Image0206.png new file mode 100644 index 0000000..34e5082 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0206.png differ diff --git a/sprites/frames/mm_background_old/Image0206.png.import b/sprites/frames/mm_background_old/Image0206.png.import new file mode 100644 index 0000000..337ff41 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0206.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://boo74pajkfwrl" +path="res://.godot/imported/Image0206.png-923b4f9679247fe3d15606309ed6fa02.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0206.png" +dest_files=["res://.godot/imported/Image0206.png-923b4f9679247fe3d15606309ed6fa02.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0207.png b/sprites/frames/mm_background_old/Image0207.png new file mode 100644 index 0000000..c4192c7 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0207.png differ diff --git a/sprites/frames/mm_background_old/Image0207.png.import b/sprites/frames/mm_background_old/Image0207.png.import new file mode 100644 index 0000000..d5b3873 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0207.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bynnj7pw7g22u" +path="res://.godot/imported/Image0207.png-1b5e12aefb5014ff48710e722d381f0f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0207.png" +dest_files=["res://.godot/imported/Image0207.png-1b5e12aefb5014ff48710e722d381f0f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0208.png b/sprites/frames/mm_background_old/Image0208.png new file mode 100644 index 0000000..196d218 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0208.png differ diff --git a/sprites/frames/mm_background_old/Image0208.png.import b/sprites/frames/mm_background_old/Image0208.png.import new file mode 100644 index 0000000..a61a019 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0208.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://baajihvatoe8e" +path="res://.godot/imported/Image0208.png-586d9a820c9d6f02a0e0554ff2592c22.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0208.png" +dest_files=["res://.godot/imported/Image0208.png-586d9a820c9d6f02a0e0554ff2592c22.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0209.png b/sprites/frames/mm_background_old/Image0209.png new file mode 100644 index 0000000..6883f07 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0209.png differ diff --git a/sprites/frames/mm_background_old/Image0209.png.import b/sprites/frames/mm_background_old/Image0209.png.import new file mode 100644 index 0000000..62cce09 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0209.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdokbqaok2hb3" +path="res://.godot/imported/Image0209.png-49d414b25c03a97617d33b83cd17e397.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0209.png" +dest_files=["res://.godot/imported/Image0209.png-49d414b25c03a97617d33b83cd17e397.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0210.png b/sprites/frames/mm_background_old/Image0210.png new file mode 100644 index 0000000..67fda69 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0210.png differ diff --git a/sprites/frames/mm_background_old/Image0210.png.import b/sprites/frames/mm_background_old/Image0210.png.import new file mode 100644 index 0000000..565e67e --- /dev/null +++ b/sprites/frames/mm_background_old/Image0210.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drt8a8jtwgqa8" +path="res://.godot/imported/Image0210.png-b12847a7b7c6b4a6803a6f869d26b7c0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0210.png" +dest_files=["res://.godot/imported/Image0210.png-b12847a7b7c6b4a6803a6f869d26b7c0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0211.png b/sprites/frames/mm_background_old/Image0211.png new file mode 100644 index 0000000..daf4e63 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0211.png differ diff --git a/sprites/frames/mm_background_old/Image0211.png.import b/sprites/frames/mm_background_old/Image0211.png.import new file mode 100644 index 0000000..8635d1c --- /dev/null +++ b/sprites/frames/mm_background_old/Image0211.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://door3s885iv66" +path="res://.godot/imported/Image0211.png-8af58c2bd9987be6fa0658a9d2ec6cd0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0211.png" +dest_files=["res://.godot/imported/Image0211.png-8af58c2bd9987be6fa0658a9d2ec6cd0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0212.png b/sprites/frames/mm_background_old/Image0212.png new file mode 100644 index 0000000..5d51ded Binary files /dev/null and b/sprites/frames/mm_background_old/Image0212.png differ diff --git a/sprites/frames/mm_background_old/Image0212.png.import b/sprites/frames/mm_background_old/Image0212.png.import new file mode 100644 index 0000000..f9183fd --- /dev/null +++ b/sprites/frames/mm_background_old/Image0212.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://whbtgw7e7x4x" +path="res://.godot/imported/Image0212.png-58812789a733f16c7da7fa3548898914.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0212.png" +dest_files=["res://.godot/imported/Image0212.png-58812789a733f16c7da7fa3548898914.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0213.png b/sprites/frames/mm_background_old/Image0213.png new file mode 100644 index 0000000..a0df2af Binary files /dev/null and b/sprites/frames/mm_background_old/Image0213.png differ diff --git a/sprites/frames/mm_background_old/Image0213.png.import b/sprites/frames/mm_background_old/Image0213.png.import new file mode 100644 index 0000000..2af09be --- /dev/null +++ b/sprites/frames/mm_background_old/Image0213.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://8jq7k2n1l534" +path="res://.godot/imported/Image0213.png-28466a79b06aee99db0ae8c00dcd7610.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0213.png" +dest_files=["res://.godot/imported/Image0213.png-28466a79b06aee99db0ae8c00dcd7610.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0214.png b/sprites/frames/mm_background_old/Image0214.png new file mode 100644 index 0000000..3bfe48b Binary files /dev/null and b/sprites/frames/mm_background_old/Image0214.png differ diff --git a/sprites/frames/mm_background_old/Image0214.png.import b/sprites/frames/mm_background_old/Image0214.png.import new file mode 100644 index 0000000..da32c83 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0214.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cykx4gjxjndfr" +path="res://.godot/imported/Image0214.png-64125dd00f60b1d24d7c969e91820a25.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0214.png" +dest_files=["res://.godot/imported/Image0214.png-64125dd00f60b1d24d7c969e91820a25.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0215.png b/sprites/frames/mm_background_old/Image0215.png new file mode 100644 index 0000000..0102a4b Binary files /dev/null and b/sprites/frames/mm_background_old/Image0215.png differ diff --git a/sprites/frames/mm_background_old/Image0215.png.import b/sprites/frames/mm_background_old/Image0215.png.import new file mode 100644 index 0000000..dac1174 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0215.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bsjgfrp1rsh0m" +path="res://.godot/imported/Image0215.png-5fa3250bcc32969cbe0acae6bf115c12.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0215.png" +dest_files=["res://.godot/imported/Image0215.png-5fa3250bcc32969cbe0acae6bf115c12.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0216.png b/sprites/frames/mm_background_old/Image0216.png new file mode 100644 index 0000000..3b857f1 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0216.png differ diff --git a/sprites/frames/mm_background_old/Image0216.png.import b/sprites/frames/mm_background_old/Image0216.png.import new file mode 100644 index 0000000..ccaa048 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0216.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://by7l6qdn2r2vk" +path="res://.godot/imported/Image0216.png-2698c2df28066677e03c09e0e1d4ceca.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0216.png" +dest_files=["res://.godot/imported/Image0216.png-2698c2df28066677e03c09e0e1d4ceca.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0217.png b/sprites/frames/mm_background_old/Image0217.png new file mode 100644 index 0000000..3c882d7 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0217.png differ diff --git a/sprites/frames/mm_background_old/Image0217.png.import b/sprites/frames/mm_background_old/Image0217.png.import new file mode 100644 index 0000000..606d4f3 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0217.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dxh5iqso0c5lh" +path="res://.godot/imported/Image0217.png-83df16cfb1085178350ce1e7a2518f42.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0217.png" +dest_files=["res://.godot/imported/Image0217.png-83df16cfb1085178350ce1e7a2518f42.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0218.png b/sprites/frames/mm_background_old/Image0218.png new file mode 100644 index 0000000..c0df755 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0218.png differ diff --git a/sprites/frames/mm_background_old/Image0218.png.import b/sprites/frames/mm_background_old/Image0218.png.import new file mode 100644 index 0000000..00b9dc1 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0218.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://coqk28x0lh667" +path="res://.godot/imported/Image0218.png-16e6195c77fdf7d6d4ddeaf8d6c5ef28.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0218.png" +dest_files=["res://.godot/imported/Image0218.png-16e6195c77fdf7d6d4ddeaf8d6c5ef28.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0219.png b/sprites/frames/mm_background_old/Image0219.png new file mode 100644 index 0000000..a79ff85 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0219.png differ diff --git a/sprites/frames/mm_background_old/Image0219.png.import b/sprites/frames/mm_background_old/Image0219.png.import new file mode 100644 index 0000000..35fc439 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0219.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dqq8ytka20o44" +path="res://.godot/imported/Image0219.png-33faa439784fecf9f8e743460880cd62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0219.png" +dest_files=["res://.godot/imported/Image0219.png-33faa439784fecf9f8e743460880cd62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0220.png b/sprites/frames/mm_background_old/Image0220.png new file mode 100644 index 0000000..536fb83 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0220.png differ diff --git a/sprites/frames/mm_background_old/Image0220.png.import b/sprites/frames/mm_background_old/Image0220.png.import new file mode 100644 index 0000000..c0377cd --- /dev/null +++ b/sprites/frames/mm_background_old/Image0220.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://622b323ybpkr" +path="res://.godot/imported/Image0220.png-811db0a6e6f9f4244f03620fcaf81186.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0220.png" +dest_files=["res://.godot/imported/Image0220.png-811db0a6e6f9f4244f03620fcaf81186.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0221.png b/sprites/frames/mm_background_old/Image0221.png new file mode 100644 index 0000000..a282bc7 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0221.png differ diff --git a/sprites/frames/mm_background_old/Image0221.png.import b/sprites/frames/mm_background_old/Image0221.png.import new file mode 100644 index 0000000..975fd4e --- /dev/null +++ b/sprites/frames/mm_background_old/Image0221.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bq2fgwflpr4im" +path="res://.godot/imported/Image0221.png-3f65242c569f6b533f4ffd3b81c03387.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0221.png" +dest_files=["res://.godot/imported/Image0221.png-3f65242c569f6b533f4ffd3b81c03387.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0222.png b/sprites/frames/mm_background_old/Image0222.png new file mode 100644 index 0000000..398f0a3 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0222.png differ diff --git a/sprites/frames/mm_background_old/Image0222.png.import b/sprites/frames/mm_background_old/Image0222.png.import new file mode 100644 index 0000000..df1d559 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0222.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://rmn65ctebny7" +path="res://.godot/imported/Image0222.png-e8c31193287e08dd4e4f8e909e704b2c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0222.png" +dest_files=["res://.godot/imported/Image0222.png-e8c31193287e08dd4e4f8e909e704b2c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0223.png b/sprites/frames/mm_background_old/Image0223.png new file mode 100644 index 0000000..c539dee Binary files /dev/null and b/sprites/frames/mm_background_old/Image0223.png differ diff --git a/sprites/frames/mm_background_old/Image0223.png.import b/sprites/frames/mm_background_old/Image0223.png.import new file mode 100644 index 0000000..d9a236d --- /dev/null +++ b/sprites/frames/mm_background_old/Image0223.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://x8kh761vk1k8" +path="res://.godot/imported/Image0223.png-e262795c9872e561b78a08742ad2384e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0223.png" +dest_files=["res://.godot/imported/Image0223.png-e262795c9872e561b78a08742ad2384e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0224.png b/sprites/frames/mm_background_old/Image0224.png new file mode 100644 index 0000000..97bd791 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0224.png differ diff --git a/sprites/frames/mm_background_old/Image0224.png.import b/sprites/frames/mm_background_old/Image0224.png.import new file mode 100644 index 0000000..92ea03c --- /dev/null +++ b/sprites/frames/mm_background_old/Image0224.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bvavk6qs0uvjv" +path="res://.godot/imported/Image0224.png-c5d6401c5710d7ffc87b501da139523f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0224.png" +dest_files=["res://.godot/imported/Image0224.png-c5d6401c5710d7ffc87b501da139523f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0225.png b/sprites/frames/mm_background_old/Image0225.png new file mode 100644 index 0000000..2c58057 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0225.png differ diff --git a/sprites/frames/mm_background_old/Image0225.png.import b/sprites/frames/mm_background_old/Image0225.png.import new file mode 100644 index 0000000..2b07cb6 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0225.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdi0ookvrydkh" +path="res://.godot/imported/Image0225.png-f8bb79abcd066f93380e007942ceb23d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0225.png" +dest_files=["res://.godot/imported/Image0225.png-f8bb79abcd066f93380e007942ceb23d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0226.png b/sprites/frames/mm_background_old/Image0226.png new file mode 100644 index 0000000..1b23f6d Binary files /dev/null and b/sprites/frames/mm_background_old/Image0226.png differ diff --git a/sprites/frames/mm_background_old/Image0226.png.import b/sprites/frames/mm_background_old/Image0226.png.import new file mode 100644 index 0000000..3b69320 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0226.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bi63botax505s" +path="res://.godot/imported/Image0226.png-af7f8cee4b832737394f26b15bb65319.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0226.png" +dest_files=["res://.godot/imported/Image0226.png-af7f8cee4b832737394f26b15bb65319.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0227.png b/sprites/frames/mm_background_old/Image0227.png new file mode 100644 index 0000000..d270962 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0227.png differ diff --git a/sprites/frames/mm_background_old/Image0227.png.import b/sprites/frames/mm_background_old/Image0227.png.import new file mode 100644 index 0000000..76eb885 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0227.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://da3irvfqwdh80" +path="res://.godot/imported/Image0227.png-d648f8645c83670ecc0785c4aedf8237.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0227.png" +dest_files=["res://.godot/imported/Image0227.png-d648f8645c83670ecc0785c4aedf8237.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0228.png b/sprites/frames/mm_background_old/Image0228.png new file mode 100644 index 0000000..61a5814 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0228.png differ diff --git a/sprites/frames/mm_background_old/Image0228.png.import b/sprites/frames/mm_background_old/Image0228.png.import new file mode 100644 index 0000000..26c47fd --- /dev/null +++ b/sprites/frames/mm_background_old/Image0228.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qvv6cqedgt5q" +path="res://.godot/imported/Image0228.png-70269db07a5acfe42c630f416134762b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0228.png" +dest_files=["res://.godot/imported/Image0228.png-70269db07a5acfe42c630f416134762b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0229.png b/sprites/frames/mm_background_old/Image0229.png new file mode 100644 index 0000000..2d16d77 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0229.png differ diff --git a/sprites/frames/mm_background_old/Image0229.png.import b/sprites/frames/mm_background_old/Image0229.png.import new file mode 100644 index 0000000..ab39809 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0229.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://plra8slilg5y" +path="res://.godot/imported/Image0229.png-0f9675917e4c4868c0de2cbac7dd8f5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0229.png" +dest_files=["res://.godot/imported/Image0229.png-0f9675917e4c4868c0de2cbac7dd8f5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0230.png b/sprites/frames/mm_background_old/Image0230.png new file mode 100644 index 0000000..03ef676 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0230.png differ diff --git a/sprites/frames/mm_background_old/Image0230.png.import b/sprites/frames/mm_background_old/Image0230.png.import new file mode 100644 index 0000000..d0799c4 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0230.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://nxush7ep1ouv" +path="res://.godot/imported/Image0230.png-a148f03b90df76a43b46e1a48d047d78.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0230.png" +dest_files=["res://.godot/imported/Image0230.png-a148f03b90df76a43b46e1a48d047d78.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0231.png b/sprites/frames/mm_background_old/Image0231.png new file mode 100644 index 0000000..057c0f0 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0231.png differ diff --git a/sprites/frames/mm_background_old/Image0231.png.import b/sprites/frames/mm_background_old/Image0231.png.import new file mode 100644 index 0000000..f387d33 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0231.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3ryg1ls8uj8f" +path="res://.godot/imported/Image0231.png-c7971e4a5d24c98ffa788965c5d6fe77.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0231.png" +dest_files=["res://.godot/imported/Image0231.png-c7971e4a5d24c98ffa788965c5d6fe77.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0232.png b/sprites/frames/mm_background_old/Image0232.png new file mode 100644 index 0000000..4c67192 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0232.png differ diff --git a/sprites/frames/mm_background_old/Image0232.png.import b/sprites/frames/mm_background_old/Image0232.png.import new file mode 100644 index 0000000..304732f --- /dev/null +++ b/sprites/frames/mm_background_old/Image0232.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbtc5r2g48hy0" +path="res://.godot/imported/Image0232.png-f6113c8386086ed676cc46bb243657df.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0232.png" +dest_files=["res://.godot/imported/Image0232.png-f6113c8386086ed676cc46bb243657df.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0233.png b/sprites/frames/mm_background_old/Image0233.png new file mode 100644 index 0000000..c770002 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0233.png differ diff --git a/sprites/frames/mm_background_old/Image0233.png.import b/sprites/frames/mm_background_old/Image0233.png.import new file mode 100644 index 0000000..de0b3c5 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0233.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ba84w8m6ap5qb" +path="res://.godot/imported/Image0233.png-67b459d412d47a806643aae5c17e62f3.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0233.png" +dest_files=["res://.godot/imported/Image0233.png-67b459d412d47a806643aae5c17e62f3.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0234.png b/sprites/frames/mm_background_old/Image0234.png new file mode 100644 index 0000000..6e5dd00 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0234.png differ diff --git a/sprites/frames/mm_background_old/Image0234.png.import b/sprites/frames/mm_background_old/Image0234.png.import new file mode 100644 index 0000000..aadf21d --- /dev/null +++ b/sprites/frames/mm_background_old/Image0234.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3deycu2k7sc3" +path="res://.godot/imported/Image0234.png-decc9bc7fafb2a0446d7a9cd910a0221.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0234.png" +dest_files=["res://.godot/imported/Image0234.png-decc9bc7fafb2a0446d7a9cd910a0221.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0235.png b/sprites/frames/mm_background_old/Image0235.png new file mode 100644 index 0000000..5428de7 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0235.png differ diff --git a/sprites/frames/mm_background_old/Image0235.png.import b/sprites/frames/mm_background_old/Image0235.png.import new file mode 100644 index 0000000..49aca51 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0235.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bjx83wskrjeod" +path="res://.godot/imported/Image0235.png-df0cebe7e13374fe5d889c8dcab5af25.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0235.png" +dest_files=["res://.godot/imported/Image0235.png-df0cebe7e13374fe5d889c8dcab5af25.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0236.png b/sprites/frames/mm_background_old/Image0236.png new file mode 100644 index 0000000..ba00de6 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0236.png differ diff --git a/sprites/frames/mm_background_old/Image0236.png.import b/sprites/frames/mm_background_old/Image0236.png.import new file mode 100644 index 0000000..1bcb391 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0236.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c6qry0o7k1cb6" +path="res://.godot/imported/Image0236.png-2bec216bab59ebc6987487b35d7a6178.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0236.png" +dest_files=["res://.godot/imported/Image0236.png-2bec216bab59ebc6987487b35d7a6178.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0237.png b/sprites/frames/mm_background_old/Image0237.png new file mode 100644 index 0000000..d9c4772 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0237.png differ diff --git a/sprites/frames/mm_background_old/Image0237.png.import b/sprites/frames/mm_background_old/Image0237.png.import new file mode 100644 index 0000000..f1a45c8 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0237.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://3dg6b2bgv3rk" +path="res://.godot/imported/Image0237.png-de5f36fda8ee029b71b1d6b76f52354c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0237.png" +dest_files=["res://.godot/imported/Image0237.png-de5f36fda8ee029b71b1d6b76f52354c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0238.png b/sprites/frames/mm_background_old/Image0238.png new file mode 100644 index 0000000..fbf253b Binary files /dev/null and b/sprites/frames/mm_background_old/Image0238.png differ diff --git a/sprites/frames/mm_background_old/Image0238.png.import b/sprites/frames/mm_background_old/Image0238.png.import new file mode 100644 index 0000000..44ae008 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0238.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cxqe8n6ncpdhk" +path="res://.godot/imported/Image0238.png-2c512c0f34accea828b31b6ec46d3c62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0238.png" +dest_files=["res://.godot/imported/Image0238.png-2c512c0f34accea828b31b6ec46d3c62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0239.png b/sprites/frames/mm_background_old/Image0239.png new file mode 100644 index 0000000..05a39b7 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0239.png differ diff --git a/sprites/frames/mm_background_old/Image0239.png.import b/sprites/frames/mm_background_old/Image0239.png.import new file mode 100644 index 0000000..1b30070 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0239.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bh8kqwhpmnurl" +path="res://.godot/imported/Image0239.png-78a3c379a0564b3c17c98fdfb756f3c2.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0239.png" +dest_files=["res://.godot/imported/Image0239.png-78a3c379a0564b3c17c98fdfb756f3c2.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0240.png b/sprites/frames/mm_background_old/Image0240.png new file mode 100644 index 0000000..2496389 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0240.png differ diff --git a/sprites/frames/mm_background_old/Image0240.png.import b/sprites/frames/mm_background_old/Image0240.png.import new file mode 100644 index 0000000..ca40bcf --- /dev/null +++ b/sprites/frames/mm_background_old/Image0240.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d1dmcyuhpoifv" +path="res://.godot/imported/Image0240.png-866dfd770af98100deade1a70c2b211b.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0240.png" +dest_files=["res://.godot/imported/Image0240.png-866dfd770af98100deade1a70c2b211b.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0241.png b/sprites/frames/mm_background_old/Image0241.png new file mode 100644 index 0000000..c29a02c Binary files /dev/null and b/sprites/frames/mm_background_old/Image0241.png differ diff --git a/sprites/frames/mm_background_old/Image0241.png.import b/sprites/frames/mm_background_old/Image0241.png.import new file mode 100644 index 0000000..6cfd331 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0241.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://br6iw3j7txaaq" +path="res://.godot/imported/Image0241.png-ebe2662f1a35927be2c3dc2245b2a646.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0241.png" +dest_files=["res://.godot/imported/Image0241.png-ebe2662f1a35927be2c3dc2245b2a646.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0242.png b/sprites/frames/mm_background_old/Image0242.png new file mode 100644 index 0000000..242dc3e Binary files /dev/null and b/sprites/frames/mm_background_old/Image0242.png differ diff --git a/sprites/frames/mm_background_old/Image0242.png.import b/sprites/frames/mm_background_old/Image0242.png.import new file mode 100644 index 0000000..a40e8f5 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0242.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://duscgludi6eji" +path="res://.godot/imported/Image0242.png-eef8dafbe94b7fb2fc7698f8cfc8ec62.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0242.png" +dest_files=["res://.godot/imported/Image0242.png-eef8dafbe94b7fb2fc7698f8cfc8ec62.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0243.png b/sprites/frames/mm_background_old/Image0243.png new file mode 100644 index 0000000..c151de6 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0243.png differ diff --git a/sprites/frames/mm_background_old/Image0243.png.import b/sprites/frames/mm_background_old/Image0243.png.import new file mode 100644 index 0000000..f1f3b2d --- /dev/null +++ b/sprites/frames/mm_background_old/Image0243.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6kt6jx5unh3x" +path="res://.godot/imported/Image0243.png-7c7c1a135948656af400068a8fd6ee1c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0243.png" +dest_files=["res://.godot/imported/Image0243.png-7c7c1a135948656af400068a8fd6ee1c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0244.png b/sprites/frames/mm_background_old/Image0244.png new file mode 100644 index 0000000..4a5b8af Binary files /dev/null and b/sprites/frames/mm_background_old/Image0244.png differ diff --git a/sprites/frames/mm_background_old/Image0244.png.import b/sprites/frames/mm_background_old/Image0244.png.import new file mode 100644 index 0000000..78e526a --- /dev/null +++ b/sprites/frames/mm_background_old/Image0244.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cl7cua6npdvyr" +path="res://.godot/imported/Image0244.png-d2412557e591896807bb2051e3805a58.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0244.png" +dest_files=["res://.godot/imported/Image0244.png-d2412557e591896807bb2051e3805a58.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0245.png b/sprites/frames/mm_background_old/Image0245.png new file mode 100644 index 0000000..0245a13 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0245.png differ diff --git a/sprites/frames/mm_background_old/Image0245.png.import b/sprites/frames/mm_background_old/Image0245.png.import new file mode 100644 index 0000000..486191b --- /dev/null +++ b/sprites/frames/mm_background_old/Image0245.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c3pl8j5fa8u4b" +path="res://.godot/imported/Image0245.png-f32737ee677d54f9c8eb28ddfae4bec0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0245.png" +dest_files=["res://.godot/imported/Image0245.png-f32737ee677d54f9c8eb28ddfae4bec0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0246.png b/sprites/frames/mm_background_old/Image0246.png new file mode 100644 index 0000000..3cafde8 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0246.png differ diff --git a/sprites/frames/mm_background_old/Image0246.png.import b/sprites/frames/mm_background_old/Image0246.png.import new file mode 100644 index 0000000..3e40c20 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0246.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://drryfrgnmreyn" +path="res://.godot/imported/Image0246.png-d51c1bff3a83eb42a40efb89e7b03690.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0246.png" +dest_files=["res://.godot/imported/Image0246.png-d51c1bff3a83eb42a40efb89e7b03690.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0247.png b/sprites/frames/mm_background_old/Image0247.png new file mode 100644 index 0000000..e9039f0 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0247.png differ diff --git a/sprites/frames/mm_background_old/Image0247.png.import b/sprites/frames/mm_background_old/Image0247.png.import new file mode 100644 index 0000000..dc361c6 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0247.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://eocgamixidn5" +path="res://.godot/imported/Image0247.png-f0a170b605dd0846a169306b27edff55.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0247.png" +dest_files=["res://.godot/imported/Image0247.png-f0a170b605dd0846a169306b27edff55.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0248.png b/sprites/frames/mm_background_old/Image0248.png new file mode 100644 index 0000000..f897554 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0248.png differ diff --git a/sprites/frames/mm_background_old/Image0248.png.import b/sprites/frames/mm_background_old/Image0248.png.import new file mode 100644 index 0000000..c78d8a6 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0248.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cg4aqh2tbpb7a" +path="res://.godot/imported/Image0248.png-d483fd453a6ecd6270ef4b5d4c361091.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0248.png" +dest_files=["res://.godot/imported/Image0248.png-d483fd453a6ecd6270ef4b5d4c361091.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0249.png b/sprites/frames/mm_background_old/Image0249.png new file mode 100644 index 0000000..e2a25b2 Binary files /dev/null and b/sprites/frames/mm_background_old/Image0249.png differ diff --git a/sprites/frames/mm_background_old/Image0249.png.import b/sprites/frames/mm_background_old/Image0249.png.import new file mode 100644 index 0000000..9ecb9f5 --- /dev/null +++ b/sprites/frames/mm_background_old/Image0249.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://do1jieonoobm8" +path="res://.godot/imported/Image0249.png-d70b44452f3adec3d0fa051f52dc8ab1.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0249.png" +dest_files=["res://.godot/imported/Image0249.png-d70b44452f3adec3d0fa051f52dc8ab1.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/mm_background_old/Image0250.png b/sprites/frames/mm_background_old/Image0250.png new file mode 100644 index 0000000..a58fcbd Binary files /dev/null and b/sprites/frames/mm_background_old/Image0250.png differ diff --git a/sprites/frames/mm_background_old/Image0250.png.import b/sprites/frames/mm_background_old/Image0250.png.import new file mode 100644 index 0000000..ef4870f --- /dev/null +++ b/sprites/frames/mm_background_old/Image0250.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d0xup0f3bqter" +path="res://.godot/imported/Image0250.png-1c159a25e5a1a70857d022486b3cbb11.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/mm_background_old/Image0250.png" +dest_files=["res://.godot/imported/Image0250.png-1c159a25e5a1a70857d022486b3cbb11.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/combined/combined.0000.rdat b/sprites/frames/walk/1/combined/combined.0000.rdat new file mode 100644 index 0000000..32c7b05 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0000.rdat @@ -0,0 +1 @@ +{"index":"0","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/diffuse\\model.diffuse0010.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/normal\\model.normal0010.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/specular\\model.specular0010.png"} \ No newline at end of file diff --git a/sprites/frames/walk/1/combined/combined.0000.rdat.import b/sprites/frames/walk/1/combined/combined.0000.rdat.import new file mode 100644 index 0000000..98a9fc5 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0000.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://dpedtkd6nb0ck" +path="res://.godot/imported/combined.0000.rdat-cf68c5343102d20f2c34d207c1198f8c.tres" + +[deps] + +source_file="res://sprites/frames/walk/1/combined/combined.0000.rdat" +dest_files=["res://.godot/imported/combined.0000.rdat-cf68c5343102d20f2c34d207c1198f8c.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/walk/1/combined/combined.0001.rdat b/sprites/frames/walk/1/combined/combined.0001.rdat new file mode 100644 index 0000000..d7fde15 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0001.rdat @@ -0,0 +1 @@ +{"index":"1","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/diffuse\\model.diffuse0012.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/normal\\model.normal0012.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/specular\\model.specular0012.png"} \ No newline at end of file diff --git a/sprites/frames/walk/1/combined/combined.0001.rdat.import b/sprites/frames/walk/1/combined/combined.0001.rdat.import new file mode 100644 index 0000000..b744138 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0001.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://bdadl8437n06i" +path="res://.godot/imported/combined.0001.rdat-29b47b07c33cac8ab0f1d63fefa0e62a.tres" + +[deps] + +source_file="res://sprites/frames/walk/1/combined/combined.0001.rdat" +dest_files=["res://.godot/imported/combined.0001.rdat-29b47b07c33cac8ab0f1d63fefa0e62a.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/walk/1/combined/combined.0002.rdat b/sprites/frames/walk/1/combined/combined.0002.rdat new file mode 100644 index 0000000..e25a2c0 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0002.rdat @@ -0,0 +1 @@ +{"index":"2","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/diffuse\\model.diffuse0014.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/normal\\model.normal0014.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/specular\\model.specular0014.png"} \ No newline at end of file diff --git a/sprites/frames/walk/1/combined/combined.0002.rdat.import b/sprites/frames/walk/1/combined/combined.0002.rdat.import new file mode 100644 index 0000000..ccb2847 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0002.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://bqqmkp4bjbofp" +path="res://.godot/imported/combined.0002.rdat-d4ed77a656f9327b8fcb468efb04aa3a.tres" + +[deps] + +source_file="res://sprites/frames/walk/1/combined/combined.0002.rdat" +dest_files=["res://.godot/imported/combined.0002.rdat-d4ed77a656f9327b8fcb468efb04aa3a.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/walk/1/combined/combined.0003.rdat b/sprites/frames/walk/1/combined/combined.0003.rdat new file mode 100644 index 0000000..2f722cb --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0003.rdat @@ -0,0 +1 @@ +{"index":"3","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/diffuse\\model.diffuse0016.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/normal\\model.normal0016.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/specular\\model.specular0016.png"} \ No newline at end of file diff --git a/sprites/frames/walk/1/combined/combined.0003.rdat.import b/sprites/frames/walk/1/combined/combined.0003.rdat.import new file mode 100644 index 0000000..e5e8ee0 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0003.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://cbqoeh1b1ctdc" +path="res://.godot/imported/combined.0003.rdat-99111d5bd5f53a00a893e51f8dcfdbb8.tres" + +[deps] + +source_file="res://sprites/frames/walk/1/combined/combined.0003.rdat" +dest_files=["res://.godot/imported/combined.0003.rdat-99111d5bd5f53a00a893e51f8dcfdbb8.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/walk/1/combined/combined.0004.rdat b/sprites/frames/walk/1/combined/combined.0004.rdat new file mode 100644 index 0000000..d109822 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0004.rdat @@ -0,0 +1 @@ +{"index":"4","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/diffuse\\model.diffuse0018.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/normal\\model.normal0018.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/specular\\model.specular0018.png"} \ No newline at end of file diff --git a/sprites/frames/walk/1/combined/combined.0004.rdat.import b/sprites/frames/walk/1/combined/combined.0004.rdat.import new file mode 100644 index 0000000..2cdef58 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0004.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://vgdftsh47j0c" +path="res://.godot/imported/combined.0004.rdat-4f7186928fbce5174be7e4e147adbf3c.tres" + +[deps] + +source_file="res://sprites/frames/walk/1/combined/combined.0004.rdat" +dest_files=["res://.godot/imported/combined.0004.rdat-4f7186928fbce5174be7e4e147adbf3c.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/walk/1/combined/combined.0005.rdat b/sprites/frames/walk/1/combined/combined.0005.rdat new file mode 100644 index 0000000..cfc7397 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0005.rdat @@ -0,0 +1 @@ +{"index":"5","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/diffuse\\model.diffuse0020.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/normal\\model.normal0020.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/specular\\model.specular0020.png"} \ No newline at end of file diff --git a/sprites/frames/walk/1/combined/combined.0005.rdat.import b/sprites/frames/walk/1/combined/combined.0005.rdat.import new file mode 100644 index 0000000..6ab8025 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0005.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://cengbto5vgicb" +path="res://.godot/imported/combined.0005.rdat-d95e845193a6beab963b703fa5e3813a.tres" + +[deps] + +source_file="res://sprites/frames/walk/1/combined/combined.0005.rdat" +dest_files=["res://.godot/imported/combined.0005.rdat-d95e845193a6beab963b703fa5e3813a.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/walk/1/combined/combined.0006.rdat b/sprites/frames/walk/1/combined/combined.0006.rdat new file mode 100644 index 0000000..95c3f85 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0006.rdat @@ -0,0 +1 @@ +{"index":"6","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/diffuse\\model.diffuse0022.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/normal\\model.normal0022.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/specular\\model.specular0022.png"} \ No newline at end of file diff --git a/sprites/frames/walk/1/combined/combined.0006.rdat.import b/sprites/frames/walk/1/combined/combined.0006.rdat.import new file mode 100644 index 0000000..645ca75 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0006.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://ghhdu4frwm20" +path="res://.godot/imported/combined.0006.rdat-ee04d4b4e7eab63c7e68a2d1ac715ede.tres" + +[deps] + +source_file="res://sprites/frames/walk/1/combined/combined.0006.rdat" +dest_files=["res://.godot/imported/combined.0006.rdat-ee04d4b4e7eab63c7e68a2d1ac715ede.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/walk/1/combined/combined.0007.rdat b/sprites/frames/walk/1/combined/combined.0007.rdat new file mode 100644 index 0000000..7564084 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0007.rdat @@ -0,0 +1 @@ +{"index":"7","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/diffuse\\model.diffuse0024.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/normal\\model.normal0024.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/specular\\model.specular0024.png"} \ No newline at end of file diff --git a/sprites/frames/walk/1/combined/combined.0007.rdat.import b/sprites/frames/walk/1/combined/combined.0007.rdat.import new file mode 100644 index 0000000..4909178 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0007.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://hejfu7xwdhtv" +path="res://.godot/imported/combined.0007.rdat-92671ed3024e51fe61ac9066104e3d33.tres" + +[deps] + +source_file="res://sprites/frames/walk/1/combined/combined.0007.rdat" +dest_files=["res://.godot/imported/combined.0007.rdat-92671ed3024e51fe61ac9066104e3d33.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/walk/1/combined/combined.0008.rdat b/sprites/frames/walk/1/combined/combined.0008.rdat new file mode 100644 index 0000000..a4b1acc --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0008.rdat @@ -0,0 +1 @@ +{"index":"8","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/diffuse\\model.diffuse0026.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/normal\\model.normal0026.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/specular\\model.specular0026.png"} \ No newline at end of file diff --git a/sprites/frames/walk/1/combined/combined.0008.rdat.import b/sprites/frames/walk/1/combined/combined.0008.rdat.import new file mode 100644 index 0000000..694e49c --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0008.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://bxaff3jlgn5u6" +path="res://.godot/imported/combined.0008.rdat-70f3c50b36ae48c599e07dde49afb7c2.tres" + +[deps] + +source_file="res://sprites/frames/walk/1/combined/combined.0008.rdat" +dest_files=["res://.godot/imported/combined.0008.rdat-70f3c50b36ae48c599e07dde49afb7c2.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/walk/1/combined/combined.0009.rdat b/sprites/frames/walk/1/combined/combined.0009.rdat new file mode 100644 index 0000000..92933d3 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0009.rdat @@ -0,0 +1 @@ +{"index":"9","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/diffuse\\model.diffuse0028.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/normal\\model.normal0028.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/specular\\model.specular0028.png"} \ No newline at end of file diff --git a/sprites/frames/walk/1/combined/combined.0009.rdat.import b/sprites/frames/walk/1/combined/combined.0009.rdat.import new file mode 100644 index 0000000..a4d7a48 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0009.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://1t6dcimgaoql" +path="res://.godot/imported/combined.0009.rdat-6d5228f60ccfe0f20b2ba7c8db476106.tres" + +[deps] + +source_file="res://sprites/frames/walk/1/combined/combined.0009.rdat" +dest_files=["res://.godot/imported/combined.0009.rdat-6d5228f60ccfe0f20b2ba7c8db476106.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/walk/1/combined/combined.0010.rdat b/sprites/frames/walk/1/combined/combined.0010.rdat new file mode 100644 index 0000000..51dbe52 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0010.rdat @@ -0,0 +1 @@ +{"index":"10","diffuse":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/diffuse\\model.diffuse0030.png","normal":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/normal\\model.normal0030.png","specular":"C:/Users/qwsdc/source/wrplat/wrplat-godot/sprites/frames/walk/1/specular\\model.specular0030.png"} \ No newline at end of file diff --git a/sprites/frames/walk/1/combined/combined.0010.rdat.import b/sprites/frames/walk/1/combined/combined.0010.rdat.import new file mode 100644 index 0000000..0828e31 --- /dev/null +++ b/sprites/frames/walk/1/combined/combined.0010.rdat.import @@ -0,0 +1,17 @@ +[remap] + +importer="aeqw89.rdatImporter" +type="CanvasTexture" +uid="uid://fawl10c41eya" +path="res://.godot/imported/combined.0010.rdat-eeb819d17f785ee8de6878b016566296.tres" + +[deps] + +source_file="res://sprites/frames/walk/1/combined/combined.0010.rdat" +dest_files=["res://.godot/imported/combined.0010.rdat-eeb819d17f785ee8de6878b016566296.tres"] + +[params] + +normal="normal" +diffuse="diffuse" +specular="specular" diff --git a/sprites/frames/walk/1/diffuse/model.diffuse.png b/sprites/frames/walk/1/diffuse/model.diffuse.png new file mode 100644 index 0000000..3a108c6 Binary files /dev/null and b/sprites/frames/walk/1/diffuse/model.diffuse.png differ diff --git a/sprites/frames/walk/1/diffuse/model.diffuse.png.import b/sprites/frames/walk/1/diffuse/model.diffuse.png.import new file mode 100644 index 0000000..e81bd34 --- /dev/null +++ b/sprites/frames/walk/1/diffuse/model.diffuse.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cbvpri2ckbxgj" +path="res://.godot/imported/model.diffuse.png-969f93c1dc6c5489c89878e7ab64e166.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/diffuse/model.diffuse.png" +dest_files=["res://.godot/imported/model.diffuse.png-969f93c1dc6c5489c89878e7ab64e166.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0010.png b/sprites/frames/walk/1/diffuse/model.diffuse0010.png new file mode 100644 index 0000000..e8f3a6e Binary files /dev/null and b/sprites/frames/walk/1/diffuse/model.diffuse0010.png differ diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0010.png.import b/sprites/frames/walk/1/diffuse/model.diffuse0010.png.import new file mode 100644 index 0000000..654fb01 --- /dev/null +++ b/sprites/frames/walk/1/diffuse/model.diffuse0010.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://n40mmf4lj467" +path="res://.godot/imported/model.diffuse0010.png-9da4ecd1e3e337998cf75c6c195ff74e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/diffuse/model.diffuse0010.png" +dest_files=["res://.godot/imported/model.diffuse0010.png-9da4ecd1e3e337998cf75c6c195ff74e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0012.png b/sprites/frames/walk/1/diffuse/model.diffuse0012.png new file mode 100644 index 0000000..c843c06 Binary files /dev/null and b/sprites/frames/walk/1/diffuse/model.diffuse0012.png differ diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0012.png.import b/sprites/frames/walk/1/diffuse/model.diffuse0012.png.import new file mode 100644 index 0000000..797f937 --- /dev/null +++ b/sprites/frames/walk/1/diffuse/model.diffuse0012.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cmd2kch4tuwwe" +path="res://.godot/imported/model.diffuse0012.png-c60cb62d16cf56eb573515f589fd8ffd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/diffuse/model.diffuse0012.png" +dest_files=["res://.godot/imported/model.diffuse0012.png-c60cb62d16cf56eb573515f589fd8ffd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0014.png b/sprites/frames/walk/1/diffuse/model.diffuse0014.png new file mode 100644 index 0000000..0d1e647 Binary files /dev/null and b/sprites/frames/walk/1/diffuse/model.diffuse0014.png differ diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0014.png.import b/sprites/frames/walk/1/diffuse/model.diffuse0014.png.import new file mode 100644 index 0000000..c1d4df7 --- /dev/null +++ b/sprites/frames/walk/1/diffuse/model.diffuse0014.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c8bs7sj8qf1qv" +path="res://.godot/imported/model.diffuse0014.png-ab0c1d57f423d7d89cb01eb1cb33fcee.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/diffuse/model.diffuse0014.png" +dest_files=["res://.godot/imported/model.diffuse0014.png-ab0c1d57f423d7d89cb01eb1cb33fcee.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0016.png b/sprites/frames/walk/1/diffuse/model.diffuse0016.png new file mode 100644 index 0000000..afca90a Binary files /dev/null and b/sprites/frames/walk/1/diffuse/model.diffuse0016.png differ diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0016.png.import b/sprites/frames/walk/1/diffuse/model.diffuse0016.png.import new file mode 100644 index 0000000..8a9fcf8 --- /dev/null +++ b/sprites/frames/walk/1/diffuse/model.diffuse0016.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfi1vxb105r6x" +path="res://.godot/imported/model.diffuse0016.png-12757012cb572561cc923093fa25c7ad.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/diffuse/model.diffuse0016.png" +dest_files=["res://.godot/imported/model.diffuse0016.png-12757012cb572561cc923093fa25c7ad.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0018.png b/sprites/frames/walk/1/diffuse/model.diffuse0018.png new file mode 100644 index 0000000..700413a Binary files /dev/null and b/sprites/frames/walk/1/diffuse/model.diffuse0018.png differ diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0018.png.import b/sprites/frames/walk/1/diffuse/model.diffuse0018.png.import new file mode 100644 index 0000000..78f2df1 --- /dev/null +++ b/sprites/frames/walk/1/diffuse/model.diffuse0018.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://deqhww8cy2n1n" +path="res://.godot/imported/model.diffuse0018.png-e98977f27c82dc336eec5b721741efb5.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/diffuse/model.diffuse0018.png" +dest_files=["res://.godot/imported/model.diffuse0018.png-e98977f27c82dc336eec5b721741efb5.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0020.png b/sprites/frames/walk/1/diffuse/model.diffuse0020.png new file mode 100644 index 0000000..d106d7a Binary files /dev/null and b/sprites/frames/walk/1/diffuse/model.diffuse0020.png differ diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0020.png.import b/sprites/frames/walk/1/diffuse/model.diffuse0020.png.import new file mode 100644 index 0000000..0fa47ed --- /dev/null +++ b/sprites/frames/walk/1/diffuse/model.diffuse0020.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4vpykld0ib22" +path="res://.godot/imported/model.diffuse0020.png-a002ee661db26dca8e9e4bceeb1df4b9.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/diffuse/model.diffuse0020.png" +dest_files=["res://.godot/imported/model.diffuse0020.png-a002ee661db26dca8e9e4bceeb1df4b9.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0022.png b/sprites/frames/walk/1/diffuse/model.diffuse0022.png new file mode 100644 index 0000000..f697b40 Binary files /dev/null and b/sprites/frames/walk/1/diffuse/model.diffuse0022.png differ diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0022.png.import b/sprites/frames/walk/1/diffuse/model.diffuse0022.png.import new file mode 100644 index 0000000..1a993b2 --- /dev/null +++ b/sprites/frames/walk/1/diffuse/model.diffuse0022.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cylfln0d07pnt" +path="res://.godot/imported/model.diffuse0022.png-c0d35d5f6884b1a07e1a38ab6828a6b0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/diffuse/model.diffuse0022.png" +dest_files=["res://.godot/imported/model.diffuse0022.png-c0d35d5f6884b1a07e1a38ab6828a6b0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0024.png b/sprites/frames/walk/1/diffuse/model.diffuse0024.png new file mode 100644 index 0000000..857c170 Binary files /dev/null and b/sprites/frames/walk/1/diffuse/model.diffuse0024.png differ diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0024.png.import b/sprites/frames/walk/1/diffuse/model.diffuse0024.png.import new file mode 100644 index 0000000..d26b5a9 --- /dev/null +++ b/sprites/frames/walk/1/diffuse/model.diffuse0024.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://jb8pxht1pvv" +path="res://.godot/imported/model.diffuse0024.png-fd967c30e53c1e49b9add6ed68381170.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/diffuse/model.diffuse0024.png" +dest_files=["res://.godot/imported/model.diffuse0024.png-fd967c30e53c1e49b9add6ed68381170.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0026.png b/sprites/frames/walk/1/diffuse/model.diffuse0026.png new file mode 100644 index 0000000..9c66a9b Binary files /dev/null and b/sprites/frames/walk/1/diffuse/model.diffuse0026.png differ diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0026.png.import b/sprites/frames/walk/1/diffuse/model.diffuse0026.png.import new file mode 100644 index 0000000..976ce79 --- /dev/null +++ b/sprites/frames/walk/1/diffuse/model.diffuse0026.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://crl2h6b4p4yov" +path="res://.godot/imported/model.diffuse0026.png-7f685cc59f678cfd05b5f92f0ebc8b1d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/diffuse/model.diffuse0026.png" +dest_files=["res://.godot/imported/model.diffuse0026.png-7f685cc59f678cfd05b5f92f0ebc8b1d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0028.png b/sprites/frames/walk/1/diffuse/model.diffuse0028.png new file mode 100644 index 0000000..1725667 Binary files /dev/null and b/sprites/frames/walk/1/diffuse/model.diffuse0028.png differ diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0028.png.import b/sprites/frames/walk/1/diffuse/model.diffuse0028.png.import new file mode 100644 index 0000000..1bd6269 --- /dev/null +++ b/sprites/frames/walk/1/diffuse/model.diffuse0028.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c03k8ditdxv4i" +path="res://.godot/imported/model.diffuse0028.png-fc00476299c9b156a13122d4f8082907.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/diffuse/model.diffuse0028.png" +dest_files=["res://.godot/imported/model.diffuse0028.png-fc00476299c9b156a13122d4f8082907.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0030.png b/sprites/frames/walk/1/diffuse/model.diffuse0030.png new file mode 100644 index 0000000..32513ad Binary files /dev/null and b/sprites/frames/walk/1/diffuse/model.diffuse0030.png differ diff --git a/sprites/frames/walk/1/diffuse/model.diffuse0030.png.import b/sprites/frames/walk/1/diffuse/model.diffuse0030.png.import new file mode 100644 index 0000000..1f0a7e4 --- /dev/null +++ b/sprites/frames/walk/1/diffuse/model.diffuse0030.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b6aw68basdb81" +path="res://.godot/imported/model.diffuse0030.png-c70de9d6471660f32196f2a9c6c7db8f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/diffuse/model.diffuse0030.png" +dest_files=["res://.godot/imported/model.diffuse0030.png-c70de9d6471660f32196f2a9c6c7db8f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/normal/model.normal.png b/sprites/frames/walk/1/normal/model.normal.png new file mode 100644 index 0000000..0c1f1fe Binary files /dev/null and b/sprites/frames/walk/1/normal/model.normal.png differ diff --git a/sprites/frames/walk/1/normal/model.normal.png.import b/sprites/frames/walk/1/normal/model.normal.png.import new file mode 100644 index 0000000..eeda81a --- /dev/null +++ b/sprites/frames/walk/1/normal/model.normal.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://lwif2pchr4fy" +path="res://.godot/imported/model.normal.png-9fbd1a14869fa23af88a66481642e38e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/normal/model.normal.png" +dest_files=["res://.godot/imported/model.normal.png-9fbd1a14869fa23af88a66481642e38e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/normal/model.normal0010.png b/sprites/frames/walk/1/normal/model.normal0010.png new file mode 100644 index 0000000..e5de5a1 Binary files /dev/null and b/sprites/frames/walk/1/normal/model.normal0010.png differ diff --git a/sprites/frames/walk/1/normal/model.normal0010.png.import b/sprites/frames/walk/1/normal/model.normal0010.png.import new file mode 100644 index 0000000..c38d6ce --- /dev/null +++ b/sprites/frames/walk/1/normal/model.normal0010.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ckx8k445a0v7k" +path="res://.godot/imported/model.normal0010.png-ba479da3ea71f17b9dd7cc5a703d0e4e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/normal/model.normal0010.png" +dest_files=["res://.godot/imported/model.normal0010.png-ba479da3ea71f17b9dd7cc5a703d0e4e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/normal/model.normal0012.png b/sprites/frames/walk/1/normal/model.normal0012.png new file mode 100644 index 0000000..5b9dd27 Binary files /dev/null and b/sprites/frames/walk/1/normal/model.normal0012.png differ diff --git a/sprites/frames/walk/1/normal/model.normal0012.png.import b/sprites/frames/walk/1/normal/model.normal0012.png.import new file mode 100644 index 0000000..906004a --- /dev/null +++ b/sprites/frames/walk/1/normal/model.normal0012.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b3qrxw43am7qe" +path="res://.godot/imported/model.normal0012.png-7122a9ba71ff4a40607e10786295f835.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/normal/model.normal0012.png" +dest_files=["res://.godot/imported/model.normal0012.png-7122a9ba71ff4a40607e10786295f835.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/normal/model.normal0014.png b/sprites/frames/walk/1/normal/model.normal0014.png new file mode 100644 index 0000000..21eda4b Binary files /dev/null and b/sprites/frames/walk/1/normal/model.normal0014.png differ diff --git a/sprites/frames/walk/1/normal/model.normal0014.png.import b/sprites/frames/walk/1/normal/model.normal0014.png.import new file mode 100644 index 0000000..7530770 --- /dev/null +++ b/sprites/frames/walk/1/normal/model.normal0014.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dtajrxrk2la33" +path="res://.godot/imported/model.normal0014.png-8a76b848d94d1fb11eda1c417a0b0992.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/normal/model.normal0014.png" +dest_files=["res://.godot/imported/model.normal0014.png-8a76b848d94d1fb11eda1c417a0b0992.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/normal/model.normal0016.png b/sprites/frames/walk/1/normal/model.normal0016.png new file mode 100644 index 0000000..e439a8e Binary files /dev/null and b/sprites/frames/walk/1/normal/model.normal0016.png differ diff --git a/sprites/frames/walk/1/normal/model.normal0016.png.import b/sprites/frames/walk/1/normal/model.normal0016.png.import new file mode 100644 index 0000000..6109d43 --- /dev/null +++ b/sprites/frames/walk/1/normal/model.normal0016.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cp37wdhi130jr" +path="res://.godot/imported/model.normal0016.png-d97bcf9a94dfeb6dc688ced7b943fb97.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/normal/model.normal0016.png" +dest_files=["res://.godot/imported/model.normal0016.png-d97bcf9a94dfeb6dc688ced7b943fb97.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/normal/model.normal0018.png b/sprites/frames/walk/1/normal/model.normal0018.png new file mode 100644 index 0000000..0712234 Binary files /dev/null and b/sprites/frames/walk/1/normal/model.normal0018.png differ diff --git a/sprites/frames/walk/1/normal/model.normal0018.png.import b/sprites/frames/walk/1/normal/model.normal0018.png.import new file mode 100644 index 0000000..3e6ac35 --- /dev/null +++ b/sprites/frames/walk/1/normal/model.normal0018.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dvupvysk2lmx4" +path="res://.godot/imported/model.normal0018.png-43ceecf094e2f6edc1cf4584477c833c.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/normal/model.normal0018.png" +dest_files=["res://.godot/imported/model.normal0018.png-43ceecf094e2f6edc1cf4584477c833c.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/normal/model.normal0020.png b/sprites/frames/walk/1/normal/model.normal0020.png new file mode 100644 index 0000000..d4db8d7 Binary files /dev/null and b/sprites/frames/walk/1/normal/model.normal0020.png differ diff --git a/sprites/frames/walk/1/normal/model.normal0020.png.import b/sprites/frames/walk/1/normal/model.normal0020.png.import new file mode 100644 index 0000000..df8d88b --- /dev/null +++ b/sprites/frames/walk/1/normal/model.normal0020.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://b1nl6x25rv7s" +path="res://.godot/imported/model.normal0020.png-872d0313cb03319a8b6c0b8a6eae3aa0.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/normal/model.normal0020.png" +dest_files=["res://.godot/imported/model.normal0020.png-872d0313cb03319a8b6c0b8a6eae3aa0.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/normal/model.normal0022.png b/sprites/frames/walk/1/normal/model.normal0022.png new file mode 100644 index 0000000..59cf9e8 Binary files /dev/null and b/sprites/frames/walk/1/normal/model.normal0022.png differ diff --git a/sprites/frames/walk/1/normal/model.normal0022.png.import b/sprites/frames/walk/1/normal/model.normal0022.png.import new file mode 100644 index 0000000..76c0940 --- /dev/null +++ b/sprites/frames/walk/1/normal/model.normal0022.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bbr2svw58ooxo" +path="res://.godot/imported/model.normal0022.png-2faf3f6f7cadca8a01fca5a33b8ee315.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/normal/model.normal0022.png" +dest_files=["res://.godot/imported/model.normal0022.png-2faf3f6f7cadca8a01fca5a33b8ee315.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/normal/model.normal0024.png b/sprites/frames/walk/1/normal/model.normal0024.png new file mode 100644 index 0000000..b8f6557 Binary files /dev/null and b/sprites/frames/walk/1/normal/model.normal0024.png differ diff --git a/sprites/frames/walk/1/normal/model.normal0024.png.import b/sprites/frames/walk/1/normal/model.normal0024.png.import new file mode 100644 index 0000000..465d3fb --- /dev/null +++ b/sprites/frames/walk/1/normal/model.normal0024.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dfuc0tq7rbred" +path="res://.godot/imported/model.normal0024.png-c25351f26c8859381fd407adb80bfd5d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/normal/model.normal0024.png" +dest_files=["res://.godot/imported/model.normal0024.png-c25351f26c8859381fd407adb80bfd5d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/normal/model.normal0026.png b/sprites/frames/walk/1/normal/model.normal0026.png new file mode 100644 index 0000000..431b240 Binary files /dev/null and b/sprites/frames/walk/1/normal/model.normal0026.png differ diff --git a/sprites/frames/walk/1/normal/model.normal0026.png.import b/sprites/frames/walk/1/normal/model.normal0026.png.import new file mode 100644 index 0000000..1802da1 --- /dev/null +++ b/sprites/frames/walk/1/normal/model.normal0026.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://5idwvqd1nvln" +path="res://.godot/imported/model.normal0026.png-d7dd21301e0cda68e477001215902115.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/normal/model.normal0026.png" +dest_files=["res://.godot/imported/model.normal0026.png-d7dd21301e0cda68e477001215902115.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/normal/model.normal0028.png b/sprites/frames/walk/1/normal/model.normal0028.png new file mode 100644 index 0000000..f3f3f76 Binary files /dev/null and b/sprites/frames/walk/1/normal/model.normal0028.png differ diff --git a/sprites/frames/walk/1/normal/model.normal0028.png.import b/sprites/frames/walk/1/normal/model.normal0028.png.import new file mode 100644 index 0000000..bf7e102 --- /dev/null +++ b/sprites/frames/walk/1/normal/model.normal0028.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cf78hq4hjpkhk" +path="res://.godot/imported/model.normal0028.png-ad135abb10f0c7b7c1dd9a1d1b508159.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/normal/model.normal0028.png" +dest_files=["res://.godot/imported/model.normal0028.png-ad135abb10f0c7b7c1dd9a1d1b508159.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/normal/model.normal0030.png b/sprites/frames/walk/1/normal/model.normal0030.png new file mode 100644 index 0000000..f0d39e7 Binary files /dev/null and b/sprites/frames/walk/1/normal/model.normal0030.png differ diff --git a/sprites/frames/walk/1/normal/model.normal0030.png.import b/sprites/frames/walk/1/normal/model.normal0030.png.import new file mode 100644 index 0000000..1340609 --- /dev/null +++ b/sprites/frames/walk/1/normal/model.normal0030.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://4lvvs658kh8x" +path="res://.godot/imported/model.normal0030.png-5115866971e34fcfb0f5795519fc336a.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/normal/model.normal0030.png" +dest_files=["res://.godot/imported/model.normal0030.png-5115866971e34fcfb0f5795519fc336a.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/specular/model.specular.png b/sprites/frames/walk/1/specular/model.specular.png new file mode 100644 index 0000000..5a91ede Binary files /dev/null and b/sprites/frames/walk/1/specular/model.specular.png differ diff --git a/sprites/frames/walk/1/specular/model.specular.png.import b/sprites/frames/walk/1/specular/model.specular.png.import new file mode 100644 index 0000000..544ef69 --- /dev/null +++ b/sprites/frames/walk/1/specular/model.specular.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://dk088hxppb43m" +path="res://.godot/imported/model.specular.png-98bae4b5fdd98dd8ff8c5398f854098f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/specular/model.specular.png" +dest_files=["res://.godot/imported/model.specular.png-98bae4b5fdd98dd8ff8c5398f854098f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/specular/model.specular0010.png b/sprites/frames/walk/1/specular/model.specular0010.png new file mode 100644 index 0000000..ec95f25 Binary files /dev/null and b/sprites/frames/walk/1/specular/model.specular0010.png differ diff --git a/sprites/frames/walk/1/specular/model.specular0010.png.import b/sprites/frames/walk/1/specular/model.specular0010.png.import new file mode 100644 index 0000000..bffcafd --- /dev/null +++ b/sprites/frames/walk/1/specular/model.specular0010.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://d211pd6qjfqcn" +path="res://.godot/imported/model.specular0010.png-4bcfd5c6a491ae9fb93b005ac0c755f6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/specular/model.specular0010.png" +dest_files=["res://.godot/imported/model.specular0010.png-4bcfd5c6a491ae9fb93b005ac0c755f6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/specular/model.specular0012.png b/sprites/frames/walk/1/specular/model.specular0012.png new file mode 100644 index 0000000..baedca1 Binary files /dev/null and b/sprites/frames/walk/1/specular/model.specular0012.png differ diff --git a/sprites/frames/walk/1/specular/model.specular0012.png.import b/sprites/frames/walk/1/specular/model.specular0012.png.import new file mode 100644 index 0000000..9f64aff --- /dev/null +++ b/sprites/frames/walk/1/specular/model.specular0012.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cdb517h0gct8w" +path="res://.godot/imported/model.specular0012.png-1856c38fc761764091f745a5df214d12.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/specular/model.specular0012.png" +dest_files=["res://.godot/imported/model.specular0012.png-1856c38fc761764091f745a5df214d12.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/specular/model.specular0014.png b/sprites/frames/walk/1/specular/model.specular0014.png new file mode 100644 index 0000000..ea57dac Binary files /dev/null and b/sprites/frames/walk/1/specular/model.specular0014.png differ diff --git a/sprites/frames/walk/1/specular/model.specular0014.png.import b/sprites/frames/walk/1/specular/model.specular0014.png.import new file mode 100644 index 0000000..f4efa23 --- /dev/null +++ b/sprites/frames/walk/1/specular/model.specular0014.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m7qqupxsyc3l" +path="res://.godot/imported/model.specular0014.png-72f1702da906a683b65526e8086bfbec.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/specular/model.specular0014.png" +dest_files=["res://.godot/imported/model.specular0014.png-72f1702da906a683b65526e8086bfbec.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/specular/model.specular0016.png b/sprites/frames/walk/1/specular/model.specular0016.png new file mode 100644 index 0000000..df70492 Binary files /dev/null and b/sprites/frames/walk/1/specular/model.specular0016.png differ diff --git a/sprites/frames/walk/1/specular/model.specular0016.png.import b/sprites/frames/walk/1/specular/model.specular0016.png.import new file mode 100644 index 0000000..547891c --- /dev/null +++ b/sprites/frames/walk/1/specular/model.specular0016.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://c2brwfvjw4kkb" +path="res://.godot/imported/model.specular0016.png-d1d942d3feeb2644b2cf8c54e0e0a825.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/specular/model.specular0016.png" +dest_files=["res://.godot/imported/model.specular0016.png-d1d942d3feeb2644b2cf8c54e0e0a825.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/specular/model.specular0018.png b/sprites/frames/walk/1/specular/model.specular0018.png new file mode 100644 index 0000000..ad66562 Binary files /dev/null and b/sprites/frames/walk/1/specular/model.specular0018.png differ diff --git a/sprites/frames/walk/1/specular/model.specular0018.png.import b/sprites/frames/walk/1/specular/model.specular0018.png.import new file mode 100644 index 0000000..bf7508e --- /dev/null +++ b/sprites/frames/walk/1/specular/model.specular0018.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://m1i5t05mnwjf" +path="res://.godot/imported/model.specular0018.png-efc0818567c61b8e8e176bba6ed89deb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/specular/model.specular0018.png" +dest_files=["res://.godot/imported/model.specular0018.png-efc0818567c61b8e8e176bba6ed89deb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/specular/model.specular0020.png b/sprites/frames/walk/1/specular/model.specular0020.png new file mode 100644 index 0000000..19d84ad Binary files /dev/null and b/sprites/frames/walk/1/specular/model.specular0020.png differ diff --git a/sprites/frames/walk/1/specular/model.specular0020.png.import b/sprites/frames/walk/1/specular/model.specular0020.png.import new file mode 100644 index 0000000..053f8b2 --- /dev/null +++ b/sprites/frames/walk/1/specular/model.specular0020.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cou2so32eixxt" +path="res://.godot/imported/model.specular0020.png-6af4fd23a2995c91fd36a7188245edd6.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/specular/model.specular0020.png" +dest_files=["res://.godot/imported/model.specular0020.png-6af4fd23a2995c91fd36a7188245edd6.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/specular/model.specular0022.png b/sprites/frames/walk/1/specular/model.specular0022.png new file mode 100644 index 0000000..c7bb52d Binary files /dev/null and b/sprites/frames/walk/1/specular/model.specular0022.png differ diff --git a/sprites/frames/walk/1/specular/model.specular0022.png.import b/sprites/frames/walk/1/specular/model.specular0022.png.import new file mode 100644 index 0000000..2705654 --- /dev/null +++ b/sprites/frames/walk/1/specular/model.specular0022.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bnnoi8ymasp3k" +path="res://.godot/imported/model.specular0022.png-449c4de6d255f0e44a3140649332fe9e.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/specular/model.specular0022.png" +dest_files=["res://.godot/imported/model.specular0022.png-449c4de6d255f0e44a3140649332fe9e.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/specular/model.specular0024.png b/sprites/frames/walk/1/specular/model.specular0024.png new file mode 100644 index 0000000..e159aed Binary files /dev/null and b/sprites/frames/walk/1/specular/model.specular0024.png differ diff --git a/sprites/frames/walk/1/specular/model.specular0024.png.import b/sprites/frames/walk/1/specular/model.specular0024.png.import new file mode 100644 index 0000000..68da76a --- /dev/null +++ b/sprites/frames/walk/1/specular/model.specular0024.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://csbpnyt1sxc3r" +path="res://.godot/imported/model.specular0024.png-a97861eb3482111ab4ef574c4c6d3e6f.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/specular/model.specular0024.png" +dest_files=["res://.godot/imported/model.specular0024.png-a97861eb3482111ab4ef574c4c6d3e6f.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/specular/model.specular0026.png b/sprites/frames/walk/1/specular/model.specular0026.png new file mode 100644 index 0000000..7e6fc6d Binary files /dev/null and b/sprites/frames/walk/1/specular/model.specular0026.png differ diff --git a/sprites/frames/walk/1/specular/model.specular0026.png.import b/sprites/frames/walk/1/specular/model.specular0026.png.import new file mode 100644 index 0000000..e0f5897 --- /dev/null +++ b/sprites/frames/walk/1/specular/model.specular0026.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://qxb4a3txyj32" +path="res://.godot/imported/model.specular0026.png-4ccff4f603e64fb02fcaa723db8cdd47.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/specular/model.specular0026.png" +dest_files=["res://.godot/imported/model.specular0026.png-4ccff4f603e64fb02fcaa723db8cdd47.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/specular/model.specular0028.png b/sprites/frames/walk/1/specular/model.specular0028.png new file mode 100644 index 0000000..8f0243c Binary files /dev/null and b/sprites/frames/walk/1/specular/model.specular0028.png differ diff --git a/sprites/frames/walk/1/specular/model.specular0028.png.import b/sprites/frames/walk/1/specular/model.specular0028.png.import new file mode 100644 index 0000000..c770f52 --- /dev/null +++ b/sprites/frames/walk/1/specular/model.specular0028.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bk0x0x7kyyhos" +path="res://.godot/imported/model.specular0028.png-4557d3221d0ad79e3516589d8bf470e4.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/specular/model.specular0028.png" +dest_files=["res://.godot/imported/model.specular0028.png-4557d3221d0ad79e3516589d8bf470e4.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/1/specular/model.specular0030.png b/sprites/frames/walk/1/specular/model.specular0030.png new file mode 100644 index 0000000..6495cd8 Binary files /dev/null and b/sprites/frames/walk/1/specular/model.specular0030.png differ diff --git a/sprites/frames/walk/1/specular/model.specular0030.png.import b/sprites/frames/walk/1/specular/model.specular0030.png.import new file mode 100644 index 0000000..2569762 --- /dev/null +++ b/sprites/frames/walk/1/specular/model.specular0030.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://bybxso1bw1i8r" +path="res://.godot/imported/model.specular0030.png-5c1c62e857bcd5f4e1a508e67da48318.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/frames/walk/1/specular/model.specular0030.png" +dest_files=["res://.godot/imported/model.specular0030.png-5c1c62e857bcd5f4e1a508e67da48318.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/frames/walk/TextureCombiner.tres b/sprites/frames/walk/TextureCombiner.tres new file mode 100644 index 0000000..3f3db1e --- /dev/null +++ b/sprites/frames/walk/TextureCombiner.tres @@ -0,0 +1,7 @@ +[gd_resource type="Resource" script_class="TextureCombiner" format=3 uid="uid://dbilbhwg8m1vw"] + +[ext_resource type="Script" path="res://src/components/editor/TextureCombiner.cs" id="1_yxsu2"] + +[resource] +script = ExtResource("1_yxsu2") +Resources = "res://sprites/frames/walk" diff --git a/sprites/g142.png b/sprites/g142.png new file mode 100644 index 0000000..8e502fb Binary files /dev/null and b/sprites/g142.png differ diff --git a/sprites/g142.png.import b/sprites/g142.png.import new file mode 100644 index 0000000..68bf2e7 --- /dev/null +++ b/sprites/g142.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://cpp40cu8wffvm" +path="res://.godot/imported/g142.png-6f220b69dac7c4a2f7111a3e136d854d.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/g142.png" +dest_files=["res://.godot/imported/g142.png-6f220b69dac7c4a2f7111a3e136d854d.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/g59-4.png b/sprites/g59-4.png new file mode 100644 index 0000000..2cf46de Binary files /dev/null and b/sprites/g59-4.png differ diff --git a/sprites/g59-4.png.import b/sprites/g59-4.png.import new file mode 100644 index 0000000..7f8f0fe --- /dev/null +++ b/sprites/g59-4.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://xva31ryeo5gq" +path="res://.godot/imported/g59-4.png-82427f9b8b32433c59481dee648dc9bd.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/g59-4.png" +dest_files=["res://.godot/imported/g59-4.png-82427f9b8b32433c59481dee648dc9bd.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/g59.png b/sprites/g59.png new file mode 100644 index 0000000..a22b391 Binary files /dev/null and b/sprites/g59.png differ diff --git a/sprites/g59.png.import b/sprites/g59.png.import new file mode 100644 index 0000000..1e588a7 --- /dev/null +++ b/sprites/g59.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://boa1sjcyh8p18" +path="res://.godot/imported/g59.png-6235559df71446f0a69464ce1ef035bb.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/g59.png" +dest_files=["res://.godot/imported/g59.png-6235559df71446f0a69464ce1ef035bb.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/sprites/path143.png b/sprites/path143.png new file mode 100644 index 0000000..6473a36 Binary files /dev/null and b/sprites/path143.png differ diff --git a/sprites/path143.png.import b/sprites/path143.png.import new file mode 100644 index 0000000..776d4ba --- /dev/null +++ b/sprites/path143.png.import @@ -0,0 +1,40 @@ +[remap] + +importer="texture" +type="CompressedTexture2D" +uid="uid://ro8hgo0culpb" +path="res://.godot/imported/path143.png-3691a6b4eec4c1972f4b0d50ca23f7da.ctex" +metadata={ +"vram_texture": false +} + +[deps] + +source_file="res://sprites/path143.png" +dest_files=["res://.godot/imported/path143.png-3691a6b4eec4c1972f4b0d50ca23f7da.ctex"] + +[params] + +compress/mode=0 +compress/high_quality=false +compress/lossy_quality=0.7 +compress/uastc_level=0 +compress/rdo_quality_loss=0.0 +compress/hdr_compression=1 +compress/normal_map=0 +compress/channel_pack=0 +mipmaps/generate=false +mipmaps/limit=-1 +roughness/mode=0 +roughness/src_normal="" +process/channel_remap/red=0 +process/channel_remap/green=1 +process/channel_remap/blue=2 +process/channel_remap/alpha=3 +process/fix_alpha_border=true +process/premult_alpha=false +process/normal_map_invert_y=false +process/hdr_as_srgb=false +process/hdr_clamp_exposure=false +process/size_limit=0 +detect_3d/compress_to=1 diff --git a/src/components/game/SfxPlayer.gd b/src/components/SfxPlayer.gd similarity index 100% rename from src/components/game/SfxPlayer.gd rename to src/components/SfxPlayer.gd diff --git a/src/components/game/SfxPlayer.gd.uid b/src/components/SfxPlayer.gd.uid similarity index 100% rename from src/components/game/SfxPlayer.gd.uid rename to src/components/SfxPlayer.gd.uid diff --git a/src/components/game/MusicCycler.gd b/src/components/common/MusicCycler.gd similarity index 90% rename from src/components/game/MusicCycler.gd rename to src/components/common/MusicCycler.gd index 249ae22..c67cd42 100644 --- a/src/components/game/MusicCycler.gd +++ b/src/components/common/MusicCycler.gd @@ -8,6 +8,7 @@ func skip_music(): play() func _ready() -> void: + connect("finished", _on_finished); skip_music() func _on_finished() -> void: diff --git a/src/components/game/MusicCycler.gd.uid b/src/components/common/MusicCycler.gd.uid similarity index 100% rename from src/components/game/MusicCycler.gd.uid rename to src/components/common/MusicCycler.gd.uid diff --git a/src/components/game/ComboTracker.cs b/src/components/game/ComboTracker.cs new file mode 100644 index 0000000..b1f5c48 --- /dev/null +++ b/src/components/game/ComboTracker.cs @@ -0,0 +1,22 @@ +// using Godot; +// using System; + +// public partial class ComboTracker : Label { + + + +// public override void _Ready() { +// Connect(PlayerPhysicsController.SignalName.OnJump, ) +// base._Ready(); +// } + + +// public override void _Process(double delta) { +// base._Process(delta); +// } + +// private void OnJumpEventHandler(JumpKind kind, bool isOnGround, bool isOnWall) { + +// } + +// } diff --git a/src/components/game/ComboTracker.cs.uid b/src/components/game/ComboTracker.cs.uid new file mode 100644 index 0000000..db65050 --- /dev/null +++ b/src/components/game/ComboTracker.cs.uid @@ -0,0 +1 @@ +uid://0newiynd2p3n diff --git a/src/components/game/PauseMenu.cs b/src/components/game/PauseMenu.cs new file mode 100644 index 0000000..898263c --- /dev/null +++ b/src/components/game/PauseMenu.cs @@ -0,0 +1,31 @@ +using Godot; +using System; +using System.Linq; + +public partial class PauseMenu : Control { + + public bool IsPaused { get; private set; } = false; + + public override void _Ready() { + base._Ready(); + ProcessMode = ProcessModeEnum.Always; + SetPaused(false); + } + + + public void SetPaused(bool isPaused = true) { + foreach(var layer in this.GetChildren().OfType()) + layer.Visible = isPaused; + GetTree().Paused = isPaused; + IsPaused = isPaused; + } + + public override void _Input(InputEvent @event) { + if (Input.IsActionJustReleased("pause")) { + SetPaused(!IsPaused); + } + + base._Input(@event); + } + +} diff --git a/src/components/game/PauseMenu.cs.uid b/src/components/game/PauseMenu.cs.uid new file mode 100644 index 0000000..67c4a5a --- /dev/null +++ b/src/components/game/PauseMenu.cs.uid @@ -0,0 +1 @@ +uid://bjhyi4c7csb5s diff --git a/src/components/game/PlayerPhysicsController.cs b/src/components/game/PlayerPhysicsController.cs index 5e2c637..0327ba3 100644 --- a/src/components/game/PlayerPhysicsController.cs +++ b/src/components/game/PlayerPhysicsController.cs @@ -34,8 +34,12 @@ public partial class PlayerPhysicsController : CharacterBody2D { [Export] public float AirAcceleration { get; set; } = 0.5f; + [Export] public float JumpHeight { get; set; } = 5.5f; + [ExportCategory("Acceleration Curves")] + [Export] + public Curve AccelerationStrengthCurve { get; set; } [ExportCategory("Max Speeds")] [Export] @@ -101,15 +105,16 @@ public partial class PlayerPhysicsController : CharacterBody2D { var grounded = this.IsOnFloor(); var absvel = new Vector2(Mathf.Abs(Velocity.X), Mathf.Abs(Velocity.Y)); var xAxis = Input.GetAxis("move_left", "move_right"); - Sprite.FlipH = xAxis < 0; + if (!Mathf.IsZeroApprox(xAxis)) + Sprite.FlipH = xAxis < 0; if (grounded && absvel.X > 0.1) { Sprite.Animation = "walk"; - Sprite.SpeedScale = absvel.X switch { - < 10 => 1, - < 150 => 2, - < 600 => 4, - _ => 4 - }; + // Sprite.SpeedScale = absvel.X switch { + // < 10 => 1, + // < 150 => 2, + // < 600 => 4, + // _ => 4 + // }; if (!Sprite.IsPlaying()) Sprite.Play(); } else { @@ -159,7 +164,7 @@ public partial class PlayerPhysicsController : CharacterBody2D { vely *= 1/4f; } - var accel = WalkAcceleration; + var accel = WalkAcceleration * AccelerationStrengthCurve.Sample(Sprite.Frame); if (xAxis * Velocity.X < 0) accel = StoppingDeceleration; velx += xAxis * accel * (float)delta; } else { diff --git a/src/components/global/Backstage.cs b/src/components/global/Backstage.cs new file mode 100644 index 0000000..539c5ed --- /dev/null +++ b/src/components/global/Backstage.cs @@ -0,0 +1,280 @@ +using Godot; +using System; +using System.Collections; +using System.Collections.Generic; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; + +#nullable enable + +/// +/// This class is in charge of preparing scenes and doing background or loading work. +/// +public partial class Backstage : Node { +#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable. + private static Backstage Instance { get; set; } +#pragma warning restore CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable. + + public record TaskResult(bool IsDone, bool IsCanceled); + public delegate TaskResult BackstageTask(IProgress progressReporter, CancellationToken cancellationToken); + public record ProgressUpdate(string Status, int Completed, int Remaining) { public double Percent => 100.0 * Completed / ((double)Remaining + Completed); } + public record TaskContext(string Name, TaskStatus Status, TaskType Type, bool IsBlocking, string[] After, string[] Before, BackstageTask Action); + private record InternalTaskContext(TaskContext TaskContext, CancellationTokenSource CancellationTokenSource) : TaskContext(TaskContext); + + public enum TaskStatus { + Waiting, + Scheduled, + Executing, + Done, + Canceled, + Errored + } + + public enum TaskType { + Background, // does not show loading screen + Foreground // shows loading screen + } + + + public IReadOnlyList Tasks => _tasks; + private readonly List _tasks = []; + + private readonly HashSet _completed = []; + private readonly Dictionary> _beforesMap = []; + private List _executingGroup = []; + private readonly Queue> _idxSchedule = []; + + + private bool _isAllComplete = true; + private bool _shouldRebuildSchedule = true; + + public override void _Ready() { + base._Ready(); + Instance = this; + + // int work = 0; + // int totalwork = 300; + // AddTask("testTask", TaskType.Background, false, [], [], (rpt, ct) => { + // if (ct.IsCancellationRequested) return new TaskResult(work == totalwork, true); + // rpt.Report(new ProgressUpdate("testwork", work++, totalwork - work)); + // return new(work == totalwork, false); + // }); + } + + public static void AddTask(string name, TaskType type, bool isBlocking, string[] after, string[] before, BackstageTask task) { + foreach(var _task in Instance._tasks) { + if (_task.Name == name) + throw new Exception($"Name collision with scheduled task, '{name}'"); + } + + if (Instance._completed.Contains(name)) + throw new Exception($"Name collision with completed task, '{name}'"); + + Instance._tasks.Add(new InternalTaskContext( + new(name, TaskStatus.Waiting, type, isBlocking, after, before, task), + new CancellationTokenSource() + )); + + if (before.Length > 0) { + foreach(var virtualDep in before) { + var enteries = Instance._beforesMap[virtualDep] ??= []; + enteries.Add(Instance._tasks.Count - 1); + } + } + + Instance._isAllComplete = false; + Instance._shouldRebuildSchedule = true; + } + + public static Task WaitFor(string name) { + int idx = GetTaskIdx(name); + return Task.Run(async () => { + while (true) { + if (Instance._tasks[idx].Status == TaskStatus.Done) return; + else await Task.Delay(200); + } + }); + } + + public static int GetTaskIdx(string name) { + var taskIdx = Instance._tasks.FindIndex(x => x.Name == name); + if (taskIdx == -1) throw new Exception("No task with that name exists"); + return taskIdx; + } + + public static void CancelTask(int index) { + var task = Instance._tasks[index]; + task.CancellationTokenSource.Cancel(); + Instance._tasks[index] = Instance._tasks[index] with { + Status = TaskStatus.Canceled + }; + // Instance._tasks.Remove(task); + } + + private void BuildSchedule(bool setScheduled = true) { + HashSet scheduled = []; + InternalTaskContext[] tasks = [..Instance._tasks]; + + List group = []; + + foreach(var taskIdx in _executingGroup) + scheduled.Add(_tasks[taskIdx].Name); + _idxSchedule.Clear(); + for(int i = 0; i < _tasks.Count; i++) { + if (scheduled.Contains(_tasks[i].Name)) continue; // skip _executingGroup + if (_tasks[i].Status == TaskStatus.Scheduled) + _tasks[i] = _tasks[i] with { Status = TaskStatus.Waiting }; + } + + // GD.Print($"tasks count: {tasks.Length}"); + List _willBeScheduled = []; + do { + _willBeScheduled.Clear(); + for (int i = 0; i < tasks.Length; i++) { + var task = tasks[i]; + if (task.Status == TaskStatus.Canceled || task.Status == TaskStatus.Errored) continue; + if (scheduled.Contains(task.Name) || task.Status == TaskStatus.Done || _completed.Contains(task.Name)) continue; // skip if already processed (names are guarunteed unique) + if (task.After.Any((x) => !scheduled.Contains(x) && !_completed.Contains(x))) continue; // skip if any deps are incomplete (_completed represents all completed) + if (_beforesMap.TryGetValue(task.Name, out var deps) && deps.Any(x => !_completed.Contains(tasks[x].Name) && !scheduled.Contains(tasks[x].Name))) continue; // skip if any other actions should be executed first + // if (task.IsBlocking && _executingIdx.Count != 0) continue; // skip if cannot be parallelized + // can execute + _willBeScheduled.Add(i); + } + + foreach(var taskIdx in _willBeScheduled) { + var task = tasks[taskIdx]; + if (setScheduled) + _tasks[taskIdx] = _tasks[taskIdx] with { + Status = TaskStatus.Scheduled + }; + + scheduled.Add(task.Name); + if (task.IsBlocking && group.Count > 0) { + _idxSchedule.Enqueue(group); + _idxSchedule.Enqueue([taskIdx]); + group = []; + } else if (task.IsBlocking && group.Count == 0) { + group.Add(taskIdx); + _idxSchedule.Enqueue(group); + group = []; + } else if (!task.IsBlocking) { + group.Add(taskIdx); + } + } + } while (_willBeScheduled.Count > 0); + + if (group.Count > 0) _idxSchedule.Enqueue(group); + } + + int _delay = 0; + int _staleCounter = 0; + public override void _Process(double delta) { + base._Process(delta); + + + if (_isAllComplete) return; + + if (_shouldRebuildSchedule) + BuildSchedule(); + + _shouldRebuildSchedule = false; + + if (_executingGroup.Count == 0) { + if (!_idxSchedule.TryDequeue(out var group) || group is null) { + if (_tasks.Any(x => x.Status != TaskStatus.Done)) throw new Exception(); + else _isAllComplete = true; + + return; + } + _executingGroup = group; + // _staleCounter = 0; + } + + _delay++; + if (_delay <= 20) + return; + _delay = 0; + + InternalTaskContext get(int i ) => _tasks[_executingGroup[i]]; + void update(int i, TaskStatus status) => _tasks[_executingGroup[i]] = _tasks[_executingGroup[i]] with { + Status = status + }; + + GD.Print($"executing group size: {_executingGroup.Count} ({_executingGroup.Select(x => _tasks[x].Name).Aggregate((x,y) => $"{x}, {y}")})"); + for (int i = 0; i < _executingGroup.Count; i++) { + InternalTaskContext task = get(i); + GD.Print($"doing task {task.Name} with status {task.Status}"); + if (task.Status != TaskStatus.Scheduled) continue; + update(i, TaskStatus.Executing); + + TaskResult result; + try { + result = task.Action(new Progress((u) => OnProgresUpdate(task, u)), task.CancellationTokenSource.Token); + } catch (Exception e) { + result = new TaskResult(true, true); + GD.PrintErr($"Task '{task.Name}' has errored: {e}"); + } + + if (result.IsCanceled && result.IsDone) { + GD.PrintErr($"errored task '{task.Name}'"); + update(i, TaskStatus.Errored); + _executingGroup.RemoveAt(i--); + continue; + } + + if (result.IsCanceled) { + GD.PushWarning($"canceled task '{task.Name}'"); + update(i, TaskStatus.Canceled); + _executingGroup.RemoveAt(i--); + continue; + } + + if (result.IsDone) { + _completed.Add(task.Name); + GD.Print($"completed task '{task.Name}'"); + update(i, TaskStatus.Done); + _executingGroup.RemoveAt(i--); + } else { + update(i, TaskStatus.Scheduled); + } + } + } + + private void OnProgresUpdate(InternalTaskContext task, ProgressUpdate update) { + GD.Print($"Task[{task.Status}] '{task.Name}' at {update.Percent:f2}%"); + } + + private void PrintStatus() { + int waiting = 0; + int completed = 0; + int scheduled = 0; + int executing = 0; + foreach(var task in _tasks) { + switch (task.Status) { + case TaskStatus.Waiting: + waiting++; + break; + case TaskStatus.Executing: + executing++; + break; + case TaskStatus.Scheduled: + scheduled++; + break; + case TaskStatus.Done: + completed++; + break; + } + } + + GD.Print($"(waiting, scheduled, executing, completed) = ({waiting}, {scheduled}, {executing}, {completed}); flags: (iac:{_isAllComplete},srs:{_shouldRebuildSchedule}); caches: (s:{_idxSchedule.Count},t:{_tasks.Count})"); + } + + private void ThrowStaleError() { + PrintStatus(); + GD.Print(System.Text.Json.JsonSerializer.Serialize(new { + Tasks = _tasks, + })); + GetTree().Quit(1); + } +} diff --git a/src/components/global/Backstage.cs.uid b/src/components/global/Backstage.cs.uid new file mode 100644 index 0000000..668ee51 --- /dev/null +++ b/src/components/global/Backstage.cs.uid @@ -0,0 +1 @@ +uid://gjrbl1apdy85 diff --git a/src/components/global/GameThread.cs b/src/components/global/GameThread.cs new file mode 100644 index 0000000..d517dc3 --- /dev/null +++ b/src/components/global/GameThread.cs @@ -0,0 +1,58 @@ +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Godot; + +public partial class GameThread : Node { + private static GameThread Instance { get; set; } + + + public delegate void RunFunction(double delta); + + private record RunFunctionContext(RunFunction RunFunction, TaskCompletionSource TaskCompletionSource); + + + public static Task Run(RunFunction runFunction) { + var tcs = new TaskCompletionSource(); + Instance._runFunctions.Enqueue(new(runFunction, tcs)); + return tcs.Task; + } + + public static Task WaitForNextFrame() + => Run(static (_) => {}); + + private Queue _runFunctions = []; + + public override void _Ready() { + base._Ready(); + + Instance = this; + } + + private int _delay = 0; + public override void _Process(double delta) { + base._Process(delta); + + _delay++; + if (_delay <= 20) + return; + _delay = 0; + + lock (_runFunctions) { + while(_runFunctions.TryDequeue(out var ctx)) { + try { + GD.Print("Running function..."); + ctx.RunFunction(delta); + } catch (Exception e) { + GD.PrintErr(e); + ctx.TaskCompletionSource.SetException(e); + return; + } + + ctx.TaskCompletionSource.SetResult(); + return; + } + } + } + +} \ No newline at end of file diff --git a/src/components/global/GameThread.cs.uid b/src/components/global/GameThread.cs.uid new file mode 100644 index 0000000..3559de9 --- /dev/null +++ b/src/components/global/GameThread.cs.uid @@ -0,0 +1 @@ +uid://3rsbyo3o4jpf diff --git a/src/components/global/LabelRendererGlobal.cs b/src/components/global/LabelRendererGlobal.cs new file mode 100644 index 0000000..0ab28b9 --- /dev/null +++ b/src/components/global/LabelRendererGlobal.cs @@ -0,0 +1,98 @@ +using Godot; +using System; +using System.Collections; +using System.Collections.Generic; +using System.IO; +using System.Threading.Tasks; + +[GlobalClass] +public partial class LabelRendererGlobal : Control { + private const string PIXELATOR_VIEWPORT_PACKED_SCENE = "uid://co30wf16rtf2u"; + private const string META_RENDER_MODE_NAME = "render_mode"; + private const int META_RENDER_MODE_WAITING = 0; + private const int META_RENDER_MODE_DONE = 1; + private const int META_RENDER_MODE_SKIP = 2; + + + public PixelatorViewport PixelatorViewport { get; private set; } + + [Export] + public Vector2 PixellizationFactor { get; set; } + public PixelatorViewport.RenderSettings RenderSettings => new PixelatorViewport.RenderSettings(PixellizationFactor, new()); + + [Export] + public TextureRect DebugRect { get; set; } + + [Export] + public Label DebugLabel { get; set; } + + private Callable _onNodeAddedCallable; + + public override void _Ready() { + var uid = ResourceUid.TextToId(PIXELATOR_VIEWPORT_PACKED_SCENE); + var scene = ResourceLoader.Load(ResourceUid.GetIdPath(uid)).Instantiate(); + PixelatorViewport = (PixelatorViewport)scene; + AddChild(scene); + + // this.SetPosition(new(-10000, 10000)); + + _onNodeAddedCallable = Callable.From((Node n) => OnNodeAdded(n)); + GetTree().Connect(SceneTree.SignalName.NodeAdded, _onNodeAddedCallable); + // GD.Print("Rerenderer Global is Ready"); + + Queue nodes = []; + nodes.Enqueue(GetTree().Root); + while(nodes.Count > 0) { + var item = nodes.Dequeue(); + OnNodeAdded(item); + foreach(var child in item.GetChildren()) nodes.Enqueue(child); + } + } + + private async void OnNodeAdded(Node node) { + if (!GodotObject.IsInstanceValid(node)) + return; + if (node.HasMeta(META_RENDER_MODE_NAME) && node.GetMeta(META_RENDER_MODE_NAME, @default: META_RENDER_MODE_WAITING).AsInt32() != META_RENDER_MODE_WAITING) + return; + if (PixelatorViewport.IsAncestorOf(node)) + return; + if (node is Label label) { + // GD.Print($"Re-rendering {label.Name} : \"{label.Text}\""); + var texture = await PixelatorViewport.Render(label, RenderSettings); + var imgRect = new TextureRect() { Texture = texture, Scale = RenderSettings.Pixellation, MouseFilter = MouseFilterEnum.Ignore }; + label.AddChild(imgRect); + imgRect.Owner = GetTree().Root; + // GD.Print("Finished with no errors"); + label.SelfModulate = label.SelfModulate with { A = 0f }; + label.SetMeta(META_RENDER_MODE_NAME, META_RENDER_MODE_DONE); + if (label.GetParent() is CanvasItem parent && parent.Visible) { + parent.Visible = false; + parent.CallDeferred("set_visible", true); + } + } + } + + public override void _ExitTree() { + GetTree().Disconnect(SceneTree.SignalName.NodeAdded, _onNodeAddedCallable); + base._ExitTree(); + } + + private uint _seed = GD.Randi(); + public override async void _Process(double delta) { + base._Process(delta); + + + // var texture = await PixelatorViewport.Render(DebugLabel, RenderSettings); + // // try { + // // var path = ProjectSettings.GlobalizePath($"user://temp/{_seed}/"); + // // var image =texture.GetImage(); + // // Directory.CreateDirectory(path); + // // File.WriteAllBytes(Path.Combine(path, $"debug.{image.GetFormat()}.png"), image.SavePngToBuffer()); + // // GD.Print(path); + // // } catch(Exception e) { GD.PrintErr(e); } + // DebugRect.Texture = texture; + // DebugRect.Scale = Vector2.One.Dot(DebugLabel.Size / DebugRect.Size) * Vector2.One; + } + + +} diff --git a/src/components/global/LabelRendererGlobal.cs.uid b/src/components/global/LabelRendererGlobal.cs.uid new file mode 100644 index 0000000..a4ce149 --- /dev/null +++ b/src/components/global/LabelRendererGlobal.cs.uid @@ -0,0 +1 @@ +uid://bifrcnsmydepv diff --git a/src/components/main_menu/ForceSceneQuit.cs b/src/components/main_menu/ForceSceneQuit.cs new file mode 100644 index 0000000..a9ec081 --- /dev/null +++ b/src/components/main_menu/ForceSceneQuit.cs @@ -0,0 +1,31 @@ +using Godot; +using System; + +public partial class ForceSceneQuit : Button { + [Export] + public GradientScriptedAnimation QuitAnimation { get; set; } + + [Export] + public AudioStreamPlayer MusicPlayer { get; set; } + + public override void _Ready() { + Connect(Button.SignalName.ButtonUp, Callable.From(() => { + GD.Print("Pressed button!"); + QuitAnimation.OnAnimationFinish += () => { + CreateTween().TweenInterval(0.2f).Finished += () => GetTree().Quit(); + }; + float from = 1f; + float to = 0f; + float speed = 0.5f; + QuitAnimation.StartAnimation(from, to, speed); + float principalVolume = MusicPlayer.VolumeLinear; + CreateTween().TweenMethod(Callable.From((float k) => { + MusicPlayer.VolumeLinear = k * principalVolume; + }), from, to, 1f / speed); + })); + base._Ready(); + } + + + +} diff --git a/src/components/main_menu/ForceSceneQuit.cs.uid b/src/components/main_menu/ForceSceneQuit.cs.uid new file mode 100644 index 0000000..ff76080 --- /dev/null +++ b/src/components/main_menu/ForceSceneQuit.cs.uid @@ -0,0 +1 @@ +uid://ucrfnouruw62 diff --git a/src/components/main_menu/GradientScriptedAnimation.cs b/src/components/main_menu/GradientScriptedAnimation.cs new file mode 100644 index 0000000..2d9d3b6 --- /dev/null +++ b/src/components/main_menu/GradientScriptedAnimation.cs @@ -0,0 +1,51 @@ +using Godot; +using System; + +public partial class GradientScriptedAnimation : TextureRect { + + [Export] + public GradientTexture2D GradientedTexture { get; set; } + + [Signal] + public delegate void OnAnimationFinishEventHandler(); + [Signal] + public delegate void OnAnimationStartEventHandler(); + + public void StartAnimation(float from = 0.2f, float to = 1f, float speed = 1.0f) { + GradientedTexture.Gradient.SetOffset(1, 0f); + var tween = CreateTween().TweenMethod(Callable.From((float k) => { + GradientedTexture.Gradient.SetOffset(1, k); + Modulate = Modulate with { A = 1f - k }; + }), from, to, 1f / speed); + this.EmitSignal(SignalName.OnAnimationStart); + void finished() { + this.EmitSignal(SignalName.OnAnimationFinish); + tween.Finished -= finished; + }; + + tween.Finished += finished; + } + + public void Reset() { + this.Texture = GradientedTexture; + GradientedTexture.Gradient.SetOffset(1, 1f); + Modulate = Modulate with { A = 0f }; + } + + private float _timer = 0; + + public override void _Process(double delta) { + if (this.Texture != GradientedTexture) { + Reset(); + // StartAnimation(); + } + + // if (Input.IsActionJustPressed("jump")) { + // if (Modulate.A > 0.5f) StartAnimation(0.0f, 1.0f, 1.0f); + // else StartAnimation(1.0f, 0.0f, 1.0f); + // } + + base._Process(delta); + } + +} diff --git a/src/components/main_menu/GradientScriptedAnimation.cs.uid b/src/components/main_menu/GradientScriptedAnimation.cs.uid new file mode 100644 index 0000000..62735ea --- /dev/null +++ b/src/components/main_menu/GradientScriptedAnimation.cs.uid @@ -0,0 +1 @@ +uid://ch221ydrywbrk diff --git a/src/components/main_menu/MenuButton.cs b/src/components/main_menu/MenuButton.cs new file mode 100644 index 0000000..875631d --- /dev/null +++ b/src/components/main_menu/MenuButton.cs @@ -0,0 +1,14 @@ +using Godot; +using System; + +public partial class MenuButton : Button { + public override void _Ready() { + Connect(Button.SignalName.ButtonUp, Callable.From(OnButtonPressed)); + base._Ready(); + } + + private void OnButtonPressed() { + + } + +} diff --git a/src/components/main_menu/MenuButton.cs.uid b/src/components/main_menu/MenuButton.cs.uid new file mode 100644 index 0000000..fe55928 --- /dev/null +++ b/src/components/main_menu/MenuButton.cs.uid @@ -0,0 +1 @@ +uid://dosbp1ohaa7yj diff --git a/src/components/main_menu/MenuTransition.cs b/src/components/main_menu/MenuTransition.cs new file mode 100644 index 0000000..5a9a252 --- /dev/null +++ b/src/components/main_menu/MenuTransition.cs @@ -0,0 +1,35 @@ +using Godot; +using System; + +[GlobalClass] +public partial class MenuTransition : Resource { + public enum DimMode { + Always, + Normally, + Never + } + + public enum FunctionMode { + MenuTransition, + Quit, + SceneTransition + } + + [Export] + public NodePath Menu { get; set; } + [Export] + public string TransitionName { get; set; } + [Export] + public DimMode BackgroundDimming { get; set; } = DimMode.Never; + [Export] + public DimMode ForegroundDimming {get;set;} = DimMode.Always; + [Export] + public NodePath TransitionButton { get; set; } + + [Export] + public FunctionMode Mode { get; set; } + + [Export] + public PackedScene Scene { get; set; } +} + diff --git a/src/components/main_menu/MenuTransition.cs.uid b/src/components/main_menu/MenuTransition.cs.uid new file mode 100644 index 0000000..c564ddc --- /dev/null +++ b/src/components/main_menu/MenuTransition.cs.uid @@ -0,0 +1 @@ +uid://cf3040sd1mjrk diff --git a/src/components/main_menu/MenuTransitionController.cs b/src/components/main_menu/MenuTransitionController.cs new file mode 100644 index 0000000..f0aadf7 --- /dev/null +++ b/src/components/main_menu/MenuTransitionController.cs @@ -0,0 +1,147 @@ +using Godot; +using System; +using System.Collections.Generic; +using System.Threading.Tasks; + +public partial class MenuTransitionController : Control { + [Export] + public MenuTransition[] Transitions { get; set; } + + [Export] + public MenuTransition IntroTransition { get; set; } + + [Export] + public GradientScriptedAnimation Background { get; set; } + [Export] + public UiScriptedAnimation Foreground { get; set; } + + [Export] + public Control Cursor { get; set; } + private Tween CursorTween { get; set; } + private bool LockCursorHover { get; set; } = false; + + public Control HoveringOver { get; set; } + + [Signal] + public delegate void OnHoveringOverChangedEventHandler(Control hovering); + + private record Connection(Control control, string signal, Callable callable) { + public void Disconnect() => control.Disconnect(signal, callable); + public void Connect() => control.Connect(signal, callable); + } + + private List Connections = []; + + private Vector2 CalculateCursorPositioning(Control nextTo) { + const int Gap = 16; + var finalPos = nextTo.GlobalPosition; + finalPos.X -= Cursor.Size.X + Gap; + return finalPos; + } + + public override void _Ready() { + foreach (var transition in Transitions) { + GD.Print($"Getting {transition.TransitionButton}"); + var button = GetNode(transition.TransitionButton) as Control; + Connections.Add(new(button, Button.SignalName.ButtonUp, Callable.From(() => { + PerformTransition(transition); + }))); + + Connections.Add(new(button, Button.SignalName.ButtonDown, Callable.From(() => { + LockCursorHover = true; + CursorTween?.Kill(); + Cursor.Position = CalculateCursorPositioning(button); + CursorTween = Cursor.CreateTween(); + CursorTween.TweenProperty(Cursor, "position", Vector2.Right * 12f, 0.05f).AsRelative(); + CursorTween.TweenProperty(Cursor, "position", Vector2.Left * 12f, 0.05f).AsRelative(); + CursorTween.Finished += () => LockCursorHover = false; + }))); + + Connections.Add(new(button, Button.SignalName.MouseEntered, Callable.From(() => { + HoveringOver = button as Control; + EmitSignalOnHoveringOverChanged(button as Control); + }))); + GD.Print($"Set up {button.GetParent().Name} ({transition.TransitionButton})"); + } + + Connections.Add(new(this, SignalName.OnHoveringOverChanged, Callable.From((Control hovering) => { + if (LockCursorHover) return; + GD.Print($"Hovering over {hovering.GetParent().Name} now"); + if (CursorTween is not null) CursorTween.Kill(); + if (Cursor.Visible == false) { + CursorTween?.Kill(); + Cursor.Position = hovering.GlobalPosition; + Cursor.Visible = true; + } + + CursorTween = Cursor.CreateTween(); + CursorTween.SetEase(Tween.EaseType.InOut); + CursorTween.TweenProperty(Cursor, "position", CalculateCursorPositioning(hovering), 0.1f); + }))); + + Reconnect(); + + base._Ready(); + } + + private void Disconnect() { + foreach (var connection in Connections) { + connection.Disconnect(); + } + } + + private void Reconnect() { + foreach (var connection in Connections) { + connection.Connect(); + } + } + + private async void PerformIntroTransition() { + Visible = true; + await HandleDimming(IntroTransition.BackgroundDimming, IntroTransition.ForegroundDimming, 0f, 1f, 1f); + Reconnect(); + } + + private async void PerformTransition(MenuTransition transition) { + Disconnect(); + + Action function = transition.Mode switch { + MenuTransition.FunctionMode.Quit => static (self, _) => self.GetTree().Quit(), + MenuTransition.FunctionMode.MenuTransition => static (self, transition) => { + self.Visible = false; + var node = self.GetNode(transition.Menu); + if (node is not MenuTransitionController controller) { throw new Exception("Cannot transition to null/not a control menu."); } + controller.PerformIntroTransition(); + }, + MenuTransition.FunctionMode.SceneTransition => static (self, transition) => { + self.GetTree().ChangeSceneToPacked(transition.Scene); + }, + _ => throw new Exception("You must select a correct value (Quit, MenuTransition, SceneTransition) for this enum.") + }; + + await HandleDimming(transition.BackgroundDimming, transition.ForegroundDimming, 1f, 0f, 1f); + function(this, transition); + } + + // Forward is 0 -> 1, which means background starts opaque and ui starts transparent. + // Backward is 1 -> 0, which means backgruond starts transparent, and ui starts opaque. + private Task HandleDimming(MenuTransition.DimMode bg, MenuTransition.DimMode fg, float from, float to, float speed) { + switch(bg) { + case MenuTransition.DimMode.Always or MenuTransition.DimMode.Normally: + Background.StartAnimation(from, to, speed); + break; + default: + break; + } + + switch (fg) { + // Ui transitions + } + + return Task.Delay(Mathf.CeilToInt((1f / speed) * 1000)); + } + + public void ActivateTransition(int id) { + PerformTransition(Transitions[id]); + } +} diff --git a/src/components/main_menu/MenuTransitionController.cs.uid b/src/components/main_menu/MenuTransitionController.cs.uid new file mode 100644 index 0000000..357f345 --- /dev/null +++ b/src/components/main_menu/MenuTransitionController.cs.uid @@ -0,0 +1 @@ +uid://bkryv1c57lq60 diff --git a/src/components/main_menu/UiScriptedAnimation.cs b/src/components/main_menu/UiScriptedAnimation.cs new file mode 100644 index 0000000..8ad0769 --- /dev/null +++ b/src/components/main_menu/UiScriptedAnimation.cs @@ -0,0 +1,12 @@ +using Godot; +using Heartescent.Abstract; +using System; +using System.Collections.Generic; + +public partial class UiScriptedAnimation : Node2D, IScriptedAnimation { + + + public void StartAnimation(float from, float to, float speed) { + + } +} \ No newline at end of file diff --git a/src/components/main_menu/UiScriptedAnimation.cs.uid b/src/components/main_menu/UiScriptedAnimation.cs.uid new file mode 100644 index 0000000..38cf83e --- /dev/null +++ b/src/components/main_menu/UiScriptedAnimation.cs.uid @@ -0,0 +1 @@ +uid://spa2qu7jmy4m diff --git a/src/components/utility/Holder.cs b/src/components/utility/Holder.cs new file mode 100644 index 0000000..557aa84 --- /dev/null +++ b/src/components/utility/Holder.cs @@ -0,0 +1,14 @@ +public record class Holder(T Value); +public class WriteOnce { + public T? Value { get => _value; set { + if (_hasBeenSet) throw new System.Exception("WriteOnce does not accept overwrites"); + _value = value; + _hasBeenSet = true; + } + } + + public bool IsValueSet => _hasBeenSet; + + private T? _value = default; + private bool _hasBeenSet = false; +} \ No newline at end of file diff --git a/src/components/utility/Holder.cs.uid b/src/components/utility/Holder.cs.uid new file mode 100644 index 0000000..84a44a7 --- /dev/null +++ b/src/components/utility/Holder.cs.uid @@ -0,0 +1 @@ +uid://pa72i1fvlcqv diff --git a/src/components/utility/PixelatorViewport.cs b/src/components/utility/PixelatorViewport.cs new file mode 100644 index 0000000..dbcf9b4 --- /dev/null +++ b/src/components/utility/PixelatorViewport.cs @@ -0,0 +1,114 @@ +using Godot; +using GodotPlugins.Game; +using System; +using System.IO; +using System.Threading; +using System.Threading.Tasks; + +public partial class PixelatorViewport : SubViewport { + public record RenderSettings(Vector2 Pixellation, BasicRenderSettings BasicSettings); + + public record BasicRenderSettings( + Vector2I ExtendSize = default, + Vector2 Offset = default, + CanvasItem.TextureFilterEnum TextureFilter = CanvasItem.TextureFilterEnum.Nearest, + CanvasItem.TextureRepeatEnum TextureRepeat = CanvasItem.TextureRepeatEnum.Disabled); + + private void ApplyRenderSettings(Control item, BasicRenderSettings settings) { + item.TextureFilter = settings.TextureFilter; + item.TextureRepeat = settings.TextureRepeat; + Size = (Vector2I)(item.Size * item.Scale).Ceil() + settings.ExtendSize; + item.Position = settings.Offset; + item.Rotation = 0; + item.Visible = true; + } + + + private int _count = 0; + private uint _seed = GD.Randi(); + private readonly SemaphoreSlim _renderLock = new(1, 1); + private async Task _Render(Control item, BasicRenderSettings settings = default) { + settings ??= new(); + var cloned = (Control)item.Duplicate(); + cloned.SetScript(default); + CallDeferred("add_child", cloned); + await ToSignal(cloned, Node.SignalName.Ready); + cloned.Owner = GetTree().Root; + ApplyRenderSettings(cloned, settings); + await ToSignal(RenderingServer.Singleton, RenderingServer.SignalName.FramePostDraw); + await ToSignal(RenderingServer.Singleton, RenderingServer.SignalName.FramePostDraw); + var image = GetTexture().GetImage(); + + + + var texture = ImageTexture.CreateFromImage(image); + + var child = cloned; + child.Visible = false; + RemoveChild(child); + child.QueueFree(); + await ToSignal(GetTree(), SceneTree.SignalName.ProcessFrame); + + // if (!skipQueueFree && GetChildCount() > 0) throw new Exception($"Child count is: {GetChildCount()} != 0"); + + return texture; + } + + private async Task _RenderToRect(Control item, RenderSettings settings = default) { + settings ??= new RenderSettings(Vector2.One, new BasicRenderSettings()); + var texture = await _Render(item, settings.BasicSettings); // first pass to get the base texture + var imgRect = new TextureRect(); + imgRect.Name = $"ir_{item.Name}"; + imgRect.Texture = texture; + imgRect.ExpandMode = TextureRect.ExpandModeEnum.IgnoreSize; + imgRect.StretchMode = TextureRect.StretchModeEnum.Scale; + imgRect.TextureFilter = CanvasItem.TextureFilterEnum.Nearest; + imgRect.Size = texture.GetSize(); + imgRect.Scale /= settings.Pixellation; + // AddChild(imgRect); + // imgRect.Owner = GetTree().Root; + return imgRect; + } + + public async Task Render(Control item, BasicRenderSettings settings = default) { + await _renderLock.WaitAsync(); + try { return await _Render(item, settings); } + finally { _renderLock.Release(); } + } + + public async Task RenderToRect(Control item, RenderSettings settings = default) { + await _renderLock.WaitAsync(); + try { return await _RenderToRect(item, settings); } + finally { _renderLock.Release(); } + } + + public async Task Render(Control item, RenderSettings renderSettings) { + var rect = await RenderToRect(item, renderSettings); + var texture = await Render(rect, new BasicRenderSettings(TextureFilter: CanvasItem.TextureFilterEnum.Nearest)); + rect.QueueFree(); + await ToSignal(GetTree(), SceneTree.SignalName.ProcessFrame); + return texture; + } + + // public record InViewport(PixelatorViewport Viewport, T ItemInViewport) where T: Control; + + // public InViewport Capture(T item) where T: Control { + // var cloned = (PixelatorViewport)this.Duplicate((int)DuplicateFlags.InternalState); + // cloned.Reparent(item.GetParent()); + // item.Reparent(cloned); + // var ivp = new InViewport(cloned, item); + // UpdateTexture(ivp, default(BasicRenderSettings)); + // return ivp; + // } + + // public void UpdateTexture(InViewport viewport, BasicRenderSettings settings) where T: Control { + // ApplyRenderSettings(viewport.ItemInViewport, settings); + // } + + // public void UpdateTexture(InViewport viewport, RenderSettings settings) where T: Control { + // viewport.ItemInViewport.Visible = true; + // var rect = RenderToRect(viewport.ItemInViewport, settings, parentTo: this); + // ApplyRenderSettings(rect, new(TextureFilter: CanvasItem.TextureFilterEnum.Nearest)); + // viewport.ItemInViewport.Visible = false; + // } +} diff --git a/src/components/utility/PixelatorViewport.cs.uid b/src/components/utility/PixelatorViewport.cs.uid new file mode 100644 index 0000000..5d00ce6 --- /dev/null +++ b/src/components/utility/PixelatorViewport.cs.uid @@ -0,0 +1 @@ +uid://b6asub1vte20c diff --git a/src/library/abstract/IScriptedAnimation.cs b/src/library/abstract/IScriptedAnimation.cs new file mode 100644 index 0000000..65a36f9 --- /dev/null +++ b/src/library/abstract/IScriptedAnimation.cs @@ -0,0 +1,7 @@ +using Godot; + +namespace Heartescent.Abstract; + +public interface IScriptedAnimation<[MustBeVariant] T> { + public void StartAnimation(T from, T to, float speed); +} \ No newline at end of file diff --git a/src/library/abstract/IScriptedAnimation.cs.uid b/src/library/abstract/IScriptedAnimation.cs.uid new file mode 100644 index 0000000..c0c6b4f --- /dev/null +++ b/src/library/abstract/IScriptedAnimation.cs.uid @@ -0,0 +1 @@ +uid://brfnhvkhs1mb8 diff --git a/src/shaders/blur.tres b/src/shaders/blur.tres new file mode 100644 index 0000000..963d42f --- /dev/null +++ b/src/shaders/blur.tres @@ -0,0 +1,27 @@ +[gd_resource type="Shader" format=3 uid="uid://djsytmh3ngsow"] + +[resource] +code = "shader_type canvas_item; +//render_mode blend_mix; + +uniform vec2 size; +uniform ivec2 samples; +uniform vec4 modulate : source_color = vec4(1.,1.,1.,1.); +uniform sampler2D screen_texture : hint_screen_texture, repeat_disable, filter_nearest; + +void fragment() { + vec2 uv = SCREEN_UV; + vec2 start = uv - size/2.; + vec2 istep = size / vec2(samples); + vec4 sum = vec4(0.); + + for (int x = 0; x < samples.x; x++) { + for (int y = 0; y < samples.y; y++) { + vec2 value = vec2(start.x + istep.x * float(x), start.y + istep.y * float(y)); + sum += texture(screen_texture, value); + } + } + + COLOR = modulate * sum / float(samples.x * samples.y); +} +" diff --git a/src/shaders/pixelating_shader.gdshader b/src/shaders/pixelating_shader.gdshader new file mode 100644 index 0000000..b612143 --- /dev/null +++ b/src/shaders/pixelating_shader.gdshader @@ -0,0 +1,21 @@ +shader_type canvas_item; + +void vertex() { + // Called for every vertex the material is visible on. +} + +uniform float Factor = 4.0; + +void fragment() { + // Called for every pixel the material is visible on. + vec2 uv = UV; + uv *= Factor; + uv = round(uv); + uv /= Factor; + COLOR = texture(TEXTURE, uv); +} + +//void light() { +// // Called for every pixel for every light affecting the material. +// // Uncomment to replace the default light processing function with this one. +//} diff --git a/src/shaders/pixelating_shader.gdshader.uid b/src/shaders/pixelating_shader.gdshader.uid new file mode 100644 index 0000000..01bcc54 --- /dev/null +++ b/src/shaders/pixelating_shader.gdshader.uid @@ -0,0 +1 @@ +uid://ctx3ghklntr1j diff --git a/src/shaders/pixelating_shader.tres b/src/shaders/pixelating_shader.tres new file mode 100644 index 0000000..82d463b --- /dev/null +++ b/src/shaders/pixelating_shader.tres @@ -0,0 +1,44 @@ +[gd_resource type="VisualShader" format=3 uid="uid://c4i4e85vyq4hk"] + +[sub_resource type="VisualShaderNodeColorConstant" id="VisualShaderNodeColorConstant_0g1vh"] +constant = Color(0.14044744, 0.14044744, 0.14044744, 1) + +[sub_resource type="VisualShaderNodeVectorFunc" id="VisualShaderNodeVectorFunc_0g1vh"] +default_input_values = [0, Vector2(0, 0)] +op_type = 0 +function = 23 + +[sub_resource type="VisualShaderNodeInput" id="VisualShaderNodeInput_r32rd"] +input_name = "uv" + +[sub_resource type="VisualShaderNodeFloatParameter" id="VisualShaderNodeFloatParameter_q0x5t"] +parameter_name = "PixelationFactor" +default_value_enabled = true +default_value = 20.0 + +[sub_resource type="VisualShaderNodeVectorOp" id="VisualShaderNodeVectorOp_k2f7d"] +default_input_values = [0, Vector2(0, 0), 1, Vector2(0, 0)] +op_type = 0 +operator = 2 + +[sub_resource type="VisualShaderNodeVectorOp" id="VisualShaderNodeVectorOp_j67cg"] +default_input_values = [0, Vector2(0, 0), 1, Vector2(0, 0)] +op_type = 0 +operator = 3 + +[resource] +preview_params/PixelationFactor = "0.0" +nodes/vertex/2/node = SubResource("VisualShaderNodeInput_r32rd") +nodes/vertex/2/position = Vector2(-1580, 100) +nodes/vertex/7/node = SubResource("VisualShaderNodeFloatParameter_q0x5t") +nodes/vertex/7/position = Vector2(-1640, 340) +nodes/vertex/8/node = SubResource("VisualShaderNodeVectorOp_k2f7d") +nodes/vertex/8/position = Vector2(-1240, 160) +nodes/vertex/9/node = SubResource("VisualShaderNodeVectorOp_j67cg") +nodes/vertex/9/position = Vector2(-760, 240) +nodes/vertex/10/node = SubResource("VisualShaderNodeVectorFunc_0g1vh") +nodes/vertex/10/position = Vector2(-980, 180) +nodes/vertex/connections = PackedInt32Array(7, 0, 8, 1, 7, 0, 9, 1, 8, 0, 10, 0, 10, 0, 9, 0, 2, 0, 8, 0, 9, 0, 0, 4) +nodes/fragment/2/node = SubResource("VisualShaderNodeColorConstant_0g1vh") +nodes/fragment/2/position = Vector2(60, 180) +nodes/fragment/connections = PackedInt32Array(2, 0, 0, 0) diff --git a/src/workflow/.gdignore b/src/workflow/.gdignore new file mode 100644 index 0000000..e69de29 diff --git a/src/workflow/data/player_animations/idle.yaml b/src/workflow/data/player_animations/idle.yaml new file mode 100644 index 0000000..7f8e778 --- /dev/null +++ b/src/workflow/data/player_animations/idle.yaml @@ -0,0 +1,39 @@ +# yaml-language-server: $schema=../render_tool.schema.yaml + +output: + - path: player_animations/idle/diffuse + type: frames + texture: diffuse + - path: player_animations/idle/normal + type: frames + texture: normal + format: 'OPEN_EXR' + - path: player_animations/idle/specular + type: frames + texture: specular + + +defaults: + format: + codec: PNG + compression: 0 + color_depth: 8 + channels: RGBA + render: + engine: BLENDER_EEVEE + resolution: [64, 128] + resolution_percentage: 100 + fps: 12 + +setup: + steps: + - name: set_action + target: skeleton + actions: + - start_frame: 0 + action: Idle + blend_type: REPLACE + influence: 1 + tile: + no_tiling: + round: up \ No newline at end of file diff --git a/src/workflow/data/render_tool.schema.yaml b/src/workflow/data/render_tool.schema.yaml new file mode 100644 index 0000000..7674fe9 --- /dev/null +++ b/src/workflow/data/render_tool.schema.yaml @@ -0,0 +1,262 @@ +# JSON Schema for render_launcher.py configurations. +# +# Authored in YAML; validates YAML (or JSON) config files. To get inline +# validation and completion in VS Code (with the YAML extension), add this +# modeline to the top of a config file: +# +# # yaml-language-server: $schema=./render_config.schema.yaml +# +# All durations are in seconds (SI); spatial values are in pixels; ranges are +# in frames. + +$schema: "https://json-schema.org/draft/2020-12/schema" +$id: "https://main.qwsdcvghyu.com/r/a/render_schema_example.yaml" +title: RenderConfiguration +description: Configuration consumed by the headless Blender render launcher. +type: object +additionalProperties: false +required: [output] + +properties: + + defaults: + type: object + description: "The default configuration to use for a given object type" + properties: + format: + $ref: "#/$defs/Format" + render: + $ref: "#/$defs/Render" + tmpPath: + type: string + description: "The path to store temporary outputs." + + output: + type: array + description: Settings regarding specific output modalities. + minItems: 1 + items: + description: Output modality settings + type: object + additionalProperties: false + required: [type, texture, path] + properties: + path: + type: string + type: + type: string + enum: [atlas, frames] + texture: + type: string + enum: [normal, specular, diffuse, combined] + format: + $ref: "#/$defs/Format" + render: + $ref: "#/$defs/Render" + + setup: + type: object + description: Setup parameters + additionalProperties: false + properties: + steps: + type: array + description: A list of orchestration actions to take before rendering the scene. + minItems: 1 + items: + oneOf: + - $ref: "#/$defs/components/SetAction" + discriminator: + propertyName: name + mapping: + set_action: "#/$defs/components/SetAction" + + + +$defs: + Render: + type: object + additionalProperties: false + description: Engine, output, and frame-range settings. + properties: + engine: + type: string + enum: [CYCLES, BLENDER_EEVEE, BLENDER_EEVEE_NEXT] + default: BLENDER_EEVEE + samples: + type: integer + minimum: 1 + default: 128 + description: Sample count (Cycles only). + resolution: + type: array + items: + type: integer + minimum: 1 + minItems: 2 + maxItems: 2 + description: Output resolution in pixels. Must be an array of [width, height]. + resolution_percentage: + type: integer + minimum: 1 + maximum: 100 + default: 100 + fps: + type: integer + minimum: 1 + default: 12 + description: Frames per second; blend_seconds is converted through this. + pass_format: + type: string + enum: [OPEN_EXR, OPEN_EXR_MULTILAYER, PNG] + default: OPEN_EXR + description: >- + File format for the pass outputs. OPEN_EXR preserves the signed, + high-precision values of the normal pass. + frame_start: + type: integer + description: Optional. Defaults to the base start when omitted. + frame_end: + type: integer + description: Optional. Defaults to the blended-base end when omitted. + + Format: + description: Output format specification. + oneOf: + - type: string # fixed encoding, no options + enum: [OPEN_EXR, OPEN_EXR_MULTILAYER, BC5] + - type: object # PNG + additionalProperties: false + required: [codec] + properties: + codec: { type: string, enum: [PNG] } + channels: { type: string, enum: [BW, RGB, RGBA] } + color_depth: { type: integer, enum: [8, 16] } + compression: { type: number } + - type: object # JPEG (8-bit RGB only, no alpha) + additionalProperties: false + required: [codec] + properties: + codec: { type: string, enum: [JPEG] } + channels: { type: string, enum: [BW, RGB] } + quality: { type: number } + + components: + SetAction: + type: object + additionalProperties: false + description: "Assigns one or more action strips to a target object, accumulated as an NLA stack (bottom to top)." + required: [name, target, actions] + properties: + name: + const: set_action + target: + type: string + description: Name of the object to receive the action stack. + actions: + type: array + minItems: 1 + description: Action strips, accumulated in order. A single entry is a plain action assignment; multiple entries blend. + items: + type: object + additionalProperties: false + required: [action, start_frame, tile] + properties: + start_frame: + type: integer + description: The frame at which this action's start is. + action: + type: string + description: Name of the action for this strip. + blend_type: + type: string + enum: [REPLACE, COMBINE, ADD, SUBTRACT, MULTIPLY] + default: REPLACE + description: >- + NLA strip blend mode. COMBINE for skeletal pose overlays (correct + quaternion handling); ADD for additive motion and shape-key values. + influence: + type: number + minimum: 0 + maximum: 1 + default: 1.0 + description: Strip influence (weight) in the accumulated result. + blend_in: + type: number + minimum: 0 + description: Frames over which the strip fades to full influence. + blend_out: + type: number + minimum: 0 + description: Frames over which the strip fades out. + tile: + $ref: '#/$defs/components/Tiling' + + Tiling: + type: object + additionalProperties: false + minProperties: 1 + maxProperties: 1 + description: >- + Tiling strategy for an action. Exactly one strategy key must be present. + The strategy sets how far the action is repeated; the nested rounding + strategy governs how a partial final repetition is resolved. + properties: + to_end: { $ref: '#/$defs/components/TileToEnd' } + to_action_end: { $ref: '#/$defs/components/TileToActionEnd' } + to_frame: { $ref: '#/$defs/components/TileToFrame' } + no_tiling: { $ref: '#/$defs/components/NoTiling' } + + TileToEnd: + type: object + additionalProperties: false + description: Tile the action until the end of the scene/timeline. + properties: + round: + type: string + enum: [down, up, none] + default: down + description: How to resolve a partial final repetition. + + TileToActionEnd: + type: object + additionalProperties: false + description: Tile the action until the end of another named action. No gauruntees are made as to what order tiling is done in within a single `set_action` step. To enforce an order, separate tilings to separate `set_action` steps. + required: [action] + properties: + action: + type: string + description: Name of the action whose end bounds the tiling. + round: + type: string + enum: [down, up, none] + default: down + description: How to resolve a partial final repetition. + + TileToFrame: + type: object + additionalProperties: false + description: Tile the action until a specific frame. + required: [frame] + properties: + frame: + type: integer + description: Frame at which tiling stops. + round: + type: string + enum: [down, up, none] + default: down + description: How to resolve a partial final repetition. + + NoTiling: + type: object + additionalProperties: false + description: Do not tile; play the action once. + properties: + round: + type: string + enum: [down, up, none] + default: up + description: How to resolve a partial repetition. + + diff --git a/src/workflow/tool-py/blender-render/config.py b/src/workflow/tool-py/blender-render/config.py new file mode 100644 index 0000000..0baa20f --- /dev/null +++ b/src/workflow/tool-py/blender-render/config.py @@ -0,0 +1,298 @@ +# generated by datamodel-codegen: +# filename: render_tool.schema.yaml +# timestamp: 2026-06-24T20:10:54+00:00 + +from __future__ import annotations + +from typing import Annotated, Any, Literal + +from pydantic import BaseModel, ConfigDict, Field, RootModel + + +class ResolutionItem(RootModel[int]): + root: Annotated[int, Field(ge=1)] + + +class Render(BaseModel): + """ + Engine, output, and frame-range settings. + """ + + model_config = ConfigDict( + extra='forbid', + ) + engine: Literal['CYCLES', 'BLENDER_EEVEE', 'BLENDER_EEVEE_NEXT'] | None = ( + 'BLENDER_EEVEE' + ) + samples: Annotated[ + int | None, Field(description='Sample count (Cycles only).', ge=1) + ] = 128 + resolution: Annotated[ + list[ResolutionItem] | None, + Field( + description='Output resolution in pixels. Must be an array of [width, height].', + max_length=2, + min_length=2, + ), + ] = None + resolution_percentage: Annotated[int | None, Field(ge=1, le=100)] = 100 + fps: Annotated[ + int | None, + Field( + description='Frames per second; blend_seconds is converted through this.', + ge=1, + ), + ] = 12 + pass_format: Annotated[ + Literal['OPEN_EXR', 'OPEN_EXR_MULTILAYER', 'PNG'] | None, + Field( + description='File format for the pass outputs. OPEN_EXR preserves the signed, high-precision values of the normal pass.' + ), + ] = 'OPEN_EXR' + frame_start: Annotated[ + int | None, + Field(description='Optional. Defaults to the base start when omitted.'), + ] = None + frame_end: Annotated[ + int | None, + Field(description='Optional. Defaults to the blended-base end when omitted.'), + ] = None + + +class Format1(BaseModel): + """ + Output format specification. + """ + + model_config = ConfigDict( + extra='forbid', + ) + codec: Literal['PNG'] + channels: Literal['BW', 'RGB', 'RGBA'] | None = None + color_depth: Literal[8, 16] | None = None + compression: float | None = None + + +class Format2(BaseModel): + """ + Output format specification. + """ + + model_config = ConfigDict( + extra='forbid', + ) + codec: Literal['JPEG'] + channels: Literal['BW', 'RGB'] | None = None + quality: float | None = None + + +class Format( + RootModel[Literal['OPEN_EXR', 'OPEN_EXR_MULTILAYER', 'BC5'] | Format1 | Format2] +): + root: Annotated[ + Literal['OPEN_EXR', 'OPEN_EXR_MULTILAYER', 'BC5'] | Format1 | Format2, + Field(description='Output format specification.'), + ] + + +class Components(RootModel[Any]): + root: Any + + +class NoTiling(BaseModel): + """ + Do not tile; play the action once. + """ + + model_config = ConfigDict( + extra='forbid', + ) + round: Annotated[ + Literal['down', 'up', 'none'] | None, + Field(description='How to resolve a partial repetition.'), + ] = 'up' + + +class TileToActionEnd(BaseModel): + """ + Tile the action until the end of another named action. No gauruntees are made as to what order tiling is done in within a single `set_action` step. To enforce an order, separate tilings to separate `set_action` steps. + """ + + model_config = ConfigDict( + extra='forbid', + ) + action: Annotated[ + str, Field(description='Name of the action whose end bounds the tiling.') + ] + round: Annotated[ + Literal['down', 'up', 'none'] | None, + Field(description='How to resolve a partial final repetition.'), + ] = 'down' + + +class TileToEnd(BaseModel): + """ + Tile the action until the end of the scene/timeline. + """ + + model_config = ConfigDict( + extra='forbid', + ) + round: Annotated[ + Literal['down', 'up', 'none'] | None, + Field(description='How to resolve a partial final repetition.'), + ] = 'down' + + +class TileToFrame(BaseModel): + """ + Tile the action until a specific frame. + """ + + model_config = ConfigDict( + extra='forbid', + ) + frame: Annotated[int, Field(description='Frame at which tiling stops.')] + round: Annotated[ + Literal['down', 'up', 'none'] | None, + Field(description='How to resolve a partial final repetition.'), + ] = 'down' + + +class Defaults(BaseModel): + """ + The default configuration to use for a given object type + """ + + format: Format | None = None + render: Render | None = None + tmpPath: Annotated[ + str | None, Field(description='The path to store temporary outputs.') + ] = None + + +class OutputItem(BaseModel): + """ + Output modality settings + """ + + model_config = ConfigDict( + extra='forbid', + ) + path: str + type: Literal['atlas', 'frames'] + texture: Literal['normal', 'specular', 'diffuse', 'combined'] + format: Format | None = None + render: Render | None = None + + +class Tiling(BaseModel): + """ + Tiling strategy for an action. Exactly one strategy key must be present. The strategy sets how far the action is repeated; the nested rounding strategy governs how a partial final repetition is resolved. + """ + + model_config = ConfigDict( + extra='forbid', + ) + to_end: TileToEnd | None = None + to_action_end: TileToActionEnd | None = None + to_frame: TileToFrame | None = None + no_tiling: NoTiling | None = None + + +class Action(BaseModel): + model_config = ConfigDict( + extra='forbid', + ) + start_frame: Annotated[ + int, Field(description="The frame at which this action's start is.") + ] + action: Annotated[str, Field(description='Name of the action for this strip.')] + blend_type: Annotated[ + Literal['REPLACE', 'COMBINE', 'ADD', 'SUBTRACT', 'MULTIPLY'] | None, + Field( + description='NLA strip blend mode. COMBINE for skeletal pose overlays (correct quaternion handling); ADD for additive motion and shape-key values.' + ), + ] = 'REPLACE' + influence: Annotated[ + float | None, + Field( + description='Strip influence (weight) in the accumulated result.', + ge=0.0, + le=1.0, + ), + ] = 1.0 + blend_in: Annotated[ + float | None, + Field( + description='Frames over which the strip fades to full influence.', ge=0.0 + ), + ] = None + blend_out: Annotated[ + float | None, + Field(description='Frames over which the strip fades out.', ge=0.0), + ] = None + tile: Tiling + + +class SetAction(BaseModel): + """ + Assigns one or more action strips to a target object, accumulated as an NLA stack (bottom to top). + """ + + model_config = ConfigDict( + extra='forbid', + ) + name: Literal['set_action'] + target: Annotated[ + str, Field(description='Name of the object to receive the action stack.') + ] + actions: Annotated[ + list[Action], + Field( + description='Action strips, accumulated in order. A single entry is a plain action assignment; multiple entries blend.', + min_length=1, + ), + ] + + +class Steps(RootModel[SetAction]): + root: Annotated[SetAction, Field(discriminator='name')] + + +class Setup(BaseModel): + """ + Setup parameters + """ + + model_config = ConfigDict( + extra='forbid', + ) + steps: Annotated[ + list[Steps] | None, + Field( + description='A list of orchestration actions to take before rendering the scene.', + min_length=1, + ), + ] = None + + +class RenderConfiguration(BaseModel): + """ + Configuration consumed by the headless Blender render launcher. + """ + + model_config = ConfigDict( + extra='forbid', + ) + defaults: Annotated[ + Defaults | None, + Field(description='The default configuration to use for a given object type'), + ] = None + output: Annotated[ + list[OutputItem], + Field( + description='Settings regarding specific output modalities.', min_length=1 + ), + ] + setup: Annotated[Setup | None, Field(description='Setup parameters')] = None diff --git a/src/workflow/tool-py/blender-render/render.py b/src/workflow/tool-py/blender-render/render.py new file mode 100644 index 0000000..350cdb7 --- /dev/null +++ b/src/workflow/tool-py/blender-render/render.py @@ -0,0 +1,423 @@ +from dataclasses import dataclass +from math import ceil, floor, inf +import shutil +import subprocess +import sys + +import yaml +import argparse as ap +import os +import bpy +import json +import inspect +from typing import Any, Callable + +sys.path.insert(0, os.path.dirname(os.path.abspath(__file__))) +import config as cfg + +# stdout is a pipe under the orchestrator, so Python block-buffers print() and the +# debug lines only appear (out of order) at exit. Line-buffer so logs are live & ordered. +try: + sys.stdout.reconfigure(line_buffering=True) # type: ignore +except Exception: + pass + +CfgType = dict[Any, Any] + +PIPELINE = ["setup", "render"] + +class Job: + current = "setup" + +# Source - https://stackoverflow.com/a/32881474 +# Posted by pevik, modified by community. See post 'Timeline' for change history +# Retrieved 2026-06-25, License - CC BY-SA 4.0 +def rm_r(path): + if not os.path.exists(path): + return + if os.path.isfile(path) or os.path.islink(path): + os.unlink(path) + else: + shutil.rmtree(path) + + +def emit(result, msg, job=None, remaining=None): + job = job or Job.current + idx = PIPELINE.index(job) + if remaining is None: + remaining = PIPELINE[idx + 1:] if result == "ok" else PIPELINE[idx:] + line = json.dumps({ + "job": job, + "result": result, + "msg": msg, + "remaining_jobs": remaining, + }) + "\n" + os.write(1, line.encode()) # os.write instead print() to avoid blender messing with stdout. + +def load_config(path) -> cfg.RenderConfiguration: + if not os.path.exists(path): + raise SystemError(f"Configuration does not exist at {path}") + with open(path) as file: + config = yaml.safe_load(file) + if not isinstance(config, dict): + raise SystemError("Config must be a dictionary type") + return cfg.RenderConfiguration.model_validate(config) + +def parse_resolution(value): + if isinstance(value, list): + return int(value[0]), int(value[1]) + else: + raise SystemError("Could not parse resolution tuplelist") + +def ensure_necessary_passes_enabled(scene: bpy.types.Scene, config: cfg.OutputItem): + match config.texture: + case "normal": + scene.view_layers["ViewLayer"].use_pass_normal = True + case "diffuse": + scene.view_layers["ViewLayer"].use_pass_diffuse_color = True + case "specular": + scene.view_layers["ViewLayer"].use_pass_glossy_color = True + case "combined": + scene.view_layers["ViewLayer"].use_pass_combined = True + + +def setup_compositor_for_multilayer(scene: bpy.types.Scene, config: cfg.OutputItem): + print("Compositor nodes not implemented.") + pass + +PASSES_MAP: dict[str, str] = { + "diffuse" : 'Diffuse Color', + "combined" : 'Image', + "normal" : 'Normal', + "specular" : 'Glossy Color' +} + +@dataclass +class OutputPaths: + directory: str + file_name: str = "" + + def ensure_empty(self): + os.makedirs(self.directory, exist_ok=True) + if len(os.listdir(self.directory)) != 0: + raise SystemError(f"Output directory `{self.directory}` must be empty.") + +def setup_compositor_for_pass_output(scene: bpy.types.Scene, output: OutputPaths, config: cfg.OutputItem): + print("Ran compositing step") + ensure_necessary_passes_enabled(scene, config) + NODE_GROUP = "tool-py.output.001" + group = bpy.data.node_groups.new(name=NODE_GROUP, type='CompositorNodeTree') + group.nodes.clear() + outputFileNode = group.nodes.new(type='CompositorNodeOutputFile') + rLayersNode = group.nodes.new(type='CompositorNodeRLayers') + + mklink = group.links.new + + rlayerSocketName = PASSES_MAP[config.texture] + match config.texture: + case "normal": + separatexyz = group.nodes.new(type='ShaderNodeSeparateXYZ') + combinecolor = group.nodes.new(type='CompositorNodeCombineColor') + mklink(rLayersNode.outputs[rlayerSocketName], separatexyz.inputs[0]) + for i in range(3): + mklink(separatexyz.outputs[i], combinecolor.inputs[i]) + mklink(combinecolor.outputs[0], outputFileNode.inputs[0]) + case _: + mklink(rLayersNode.outputs[rlayerSocketName], outputFileNode.inputs[0]) + + outputFileNode.directory = output.directory # type: ignore + outputFileNode.file_name = output.file_name # type: ignore + + print(dir(outputFileNode)) + print(outputFileNode.directory, outputFileNode.file_name) + + # The File Output node has its OWN format, independent of scene.render.image_settings + # (which only governs the beauty render). Without this the requested OPEN_EXR normal + # pass would be written as default PNG/8-bit, clamping the signed normal values. + img = scene.render.image_settings + nodeFormat: bpy.types.ImageFormatSettings = outputFileNode.format # type: ignore + nodeFormat.media_type = img.media_type + nodeFormat.file_format = img.file_format + if img.file_format != "OPEN_EXR_MULTILAYER": + nodeFormat.color_mode = img.color_mode + nodeFormat.color_depth = img.color_depth + nodeFormat.compression = img.compression + nodeFormat.quality = img.quality + + scene.compositing_node_group = group + scene.use_nodes = True + # Headless `blender -b` has no GPU context, so the (default) GPU compositor never + # runs and the File Output node silently writes nothing. Force CPU compositing. + scene.render.use_compositing = True + + +def make_post_render_img_converter_step(tmp: str): + def step(): + if subprocess.run(["magick", "--version"]).returncode != 0: + raise SystemError("ImageMagick must be installed on system PATH to use BC5") + + return step + +def make_clear_dir_step(tmp: str): + pass + +def make_atlas_constructor_step(tmp: str): + pass + +def make_list_files_step(output_dir: str, include_files: list[str] = []): + def step(): + files = [os.path.join(output_dir, f) for f in os.listdir(output_dir)] + files.extend(include_files) + return files + return step + +def make_combined_step(steps: list[Callable]): + def step(): + result = None + for step in steps: + result = step() + return result + return step + +def apply_format_settings(scene: bpy.types.Scene, output: OutputPaths, config: cfg.OutputItem): + if not config.format: + raise SystemError("Unreachable Exception") + fcfg = config.format.root + imageSettings = scene.render.image_settings + imageSettings.media_type = "IMAGE" + imageSettings.file_format = "PNG" + if fcfg == "OPEN_EXR_MULTILAYER": + imageSettings.media_type = "MULTI_LAYER_IMAGE" + setup_compositor_for_multilayer(scene, config) + elif fcfg == "OPEN_EXR": + imageSettings.file_format = "OPEN_EXR" + elif isinstance(fcfg, cfg.Format1): # png + imageSettings.color_mode = fcfg.channels # type: ignore + imageSettings.color_depth = str(fcfg.color_depth) #type: ignore + if fcfg.compression: + imageSettings.compression = ceil(fcfg.compression * 100) + if isinstance(fcfg, cfg.Format2): # jpeg + imageSettings.color_mode = fcfg.channels # type: ignore + if fcfg.quality: + imageSettings.quality = ceil(fcfg.quality * 100) + + setup_compositor_for_pass_output(scene, output, config) + + return make_combined_step([ + make_list_files_step(output.directory) + ]) + + +def apply_render_settings(scene: bpy.types.Scene, rcfg: cfg.Render): + render = scene.render + if rcfg.engine: + render.engine = rcfg.engine # type: ignore + + if rcfg.resolution: + w, h = rcfg.resolution[0], rcfg.resolution[1] + render.resolution_x, render.resolution_y = w.root, h.root # type: ignore + render.resolution_percentage = rcfg.resolution_percentage or 100 + + render.fps = rcfg.fps or render.fps + render.fps_base = 1.0 + + if render.engine == "CYCLES" and rcfg.samples: + scene.cycles.samples = rcfg.samples + +@dataclass +class AssignedAction: + action: bpy.types.Action + data: cfg.Action + adt: bpy.types.AnimData + track: bpy.types.NlaTrack + strip: bpy.types.NlaStrip + + def get_end_frame(self) -> float: + return self.strip.frame_end_ui + def get_start_frame(self) -> float: + return self.strip.frame_start_ui + def get_strip_length(self) -> float: + return self.strip.frame_end_ui - self.strip.frame_start_ui + def get_action_length(self) -> float: + return self.action.frame_end - self.action.frame_start + +def set_action(data: cfg.SetAction) -> int: + target = bpy.data.objects[data.target] + assigned_actions: list[AssignedAction] = [] + for actionData in data.actions: + action = bpy.data.actions[actionData.action] + slots_assigned = 0 + for slot in action.slots: + for name,member in inspect.getmembers(target, lambda val: isinstance(val, bpy.types.ID)): + if not isinstance(member, bpy.types.ID) or not member.id_data: continue + if slot.target_id_type == member.id_data.id_type: + member.animation_data_clear() + adt = member.animation_data_create() + + track = adt.nla_tracks.new() + strip = track.strips.new(action.name, actionData.start_frame, action) + strip.action_slot = slot + + if actionData.blend_type: + strip.blend_type = actionData.blend_type # type: ignore + if actionData.blend_in: + strip.blend_in = actionData.blend_in + if actionData.blend_out: + strip.blend_out = actionData.blend_out + + if actionData.influence is not None: + # Static influence. Enabling use_animated_influence would + # bind influence to an (empty) F-curve and ignore this value. + strip.influence = actionData.influence + + print(f'Assigned action {action.name} with reference to datablock `{member.name}` to the NLA strip .') + assigned_actions.append(AssignedAction(action, actionData, adt, track, strip)) + + slots_assigned += 1 + break + + if slots_assigned < len(action.slots): + raise SystemError(f"Action {action.name} ({action.name_full}) was not able to be automatically assigned to its target.") + + last_total_frame = 0 + first_total_frame = inf + frame_duration = last_total_frame - first_total_frame + for action in assigned_actions: + if action.get_end_frame() > last_total_frame: + last_total_frame = action.get_end_frame() + if action.strip.frame_start < first_total_frame: + first_total_frame = action.strip.frame_start + + for action in assigned_actions: + end_frame = -inf + rounding = None + if action.data.tile.to_end: + end_frame = last_total_frame + rounding = action.data.tile.to_end.round + if action.data.tile.to_action_end: + for otherAction in assigned_actions: + if otherAction.data.action == action.data.tile.to_action_end.action: + end_frame = otherAction.get_end_frame() + rounding = action.data.tile.to_action_end.round + if action.data.tile.to_frame: + end_frame = action.data.tile.to_frame.frame + rounding = action.data.tile.to_frame.round + if action.data.tile.no_tiling: + end_frame = action.get_end_frame() + + if end_frame < action.get_start_frame(): + raise SystemError(f"Could not tile action {action.action.name} ({action.action.name_full}) correctly") + action.strip.repeat = (end_frame - action.get_start_frame()) / action.get_action_length() if action.get_action_length() != 0 else action.strip.repeat + action.strip.repeat = 0.1 if action.strip.repeat < 0.1 else action.strip.repeat + fnc = lambda k: k + match rounding: + case "up": fnc = ceil + case "down": fnc = floor + case "none": fnc = lambda k: k + action.strip.repeat = fnc(action.strip.repeat) + + return len(assigned_actions) + + +def setup(config: cfg.RenderConfiguration) -> int: + + assigned_actions_count = 0 + if config.setup and config.setup.steps: + for step in config.setup.steps: + if isinstance(step.root, cfg.SetAction): + assigned_actions_count += set_action(step.root) + else: + print("Unknown action type detected.") + + return assigned_actions_count + +def path(absolute: str, relative: str): + return os.path.join(absolute, relative) + +def add_trailing_slash(path: str): + if (path.endswith(os.path.altsep)): return path + else: return path + os.altsep + +def render(config: cfg.RenderConfiguration, basePath: str): + scene: bpy.types.Scene = bpy.context.scene + p = lambda p: path(basePath, p) + TMP_DIR_NAME = 'tool-py-blender-render-volatile' + if config.defaults and config.defaults.tmpPath: + scene.render.filepath = p(config.defaults.tmpPath) + scene.render.filepath = os.path.join(scene.render.filepath, TMP_DIR_NAME) + + outputPaths = OutputPaths(scene.render.filepath) + outputPaths.ensure_empty() + + for output in config.output: + if (output.type == "tmp"): continue + if (output.type == "frames"): + tmpRoot = p(os.path.join(output.path, TMP_DIR_NAME)) + scene.render.filepath = add_trailing_slash(os.path.join(tmpRoot, "beauty")) + # A non-empty file_name is required: the File Output node writes nothing + # when its file_name is blank. + outputPaths = OutputPaths(add_trailing_slash(os.path.join(tmpRoot, "pass")), file_name=output.texture) + OutputPaths(os.path.join(tmpRoot, "beauty")).ensure_empty() + outputPaths.ensure_empty() + + if (config.defaults and config.defaults.render): + apply_render_settings(scene, config.defaults.render) + if (output.render): + apply_render_settings(scene, output.render) + + output.format = output.format or (config.defaults.format if config.defaults else None) + post_render_steps: Callable = lambda k: k + if output.format: + print("Ran format settings step.") + post_render_steps = apply_format_settings(scene, outputPaths, output) + + bpy.ops.render.render(animation=True, use_viewport=True) + output_files: list[str] = post_render_steps() + + if not output_files: + rm_r(tmpRoot) + raise SystemError( + f"Compositor File Output node wrote nothing to `{outputPaths.directory}` " + f"for the `{output.texture}` pass. The beauty render is in " + f"`{os.path.join(tmpRoot, 'beauty')}` for inspection.") + + dest_dir = p(output.path) + os.makedirs(dest_dir, exist_ok=True) + for file in output_files: + shutil.copy(file, dest_dir) + + rm_r(tmpRoot) + + + if (output.type == "atlas"): + pass # pipeline is render -> pack into atlas -> copy to output dir + +def main(): + parser = ap.ArgumentParser( + prog="Render Orchestrator", + description="Orchestrates a blender scene according to a conguration and renders it.") + parser.add_argument('configFilePath') + parser.add_argument('-b', '--base-path', required=True) + + # Blender puts its own flags in sys.argv; only the args after "--" are ours. + argv = sys.argv[sys.argv.index("--") + 1:] if "--" in sys.argv else sys.argv[1:] + args = parser.parse_args(argv) + config = load_config(args.configFilePath) + basePath = args.base_path + + if os.path.abspath(basePath) != basePath: + raise SystemError("Base path must be absolute.") + + try: + assigned_actions_count = setup(config) + emit("ok", f"Completed setup of {assigned_actions_count} actions.") + render(config, basePath) + emit("ok", f"Completed render.") + except Exception as e: + emit("err", f"Failed with exception {e}") + raise e + + +if __name__ == "__main__": + main() + diff --git a/src/workflow/tool/JobStatus.cs b/src/workflow/tool/JobStatus.cs new file mode 100644 index 0000000..9d08012 --- /dev/null +++ b/src/workflow/tool/JobStatus.cs @@ -0,0 +1,8 @@ +using System.Text.Json.Serialization; +namespace aeqw89.Wrplat.Workflow.Tool; + +public record struct JobStatus( + [property: JsonPropertyName("job")] string Job, + [property: JsonPropertyName("result")] string Result, + [property: JsonPropertyName("msg")] string Msg, + [property: JsonPropertyName("remaining_jobs")] string[] RemainingJobs); diff --git a/src/workflow/tool/Program.cs b/src/workflow/tool/Program.cs new file mode 100644 index 0000000..3c297b1 --- /dev/null +++ b/src/workflow/tool/Program.cs @@ -0,0 +1,77 @@ +using System; +using System.Collections; +using System.Collections.Generic; +using System.Diagnostics.CodeAnalysis; +using System.Text.Json; +using Spectre.Console.Cli; +namespace aeqw89.Wrplat.Workflow.Tool; + +public class PopulateRenderDataSettings : CommandSettings { + [CommandArgument(0, "")] + public string ScanPath { get; set; } + + [CommandArgument(1, "")] + public string OutputPath { get; set; } + + [CommandOption("-n|--output-name")] + public string OutputName { get; set; } = "combined"; + + [CommandOption("-e|--output-extension")] + public string OutputExtension { get; set; } = ".rdat"; +} + +public class PopulateRenderData : Command { + protected override int Execute(CommandContext context, PopulateRenderDataSettings settings, CancellationToken cancellationToken) { + var output = Path.Combine(settings.ScanPath, settings.OutputPath); + var dirs = Directory.EnumerateDirectories(settings.ScanPath).ToList(); + for(int i = 0; i < dirs.Count; i++) { + if (!Directory.EnumerateFiles(dirs[i]).Any() || dirs[i] == Path.Combine(settings.ScanPath, settings.OutputPath)) { + dirs.RemoveAt(i--); + } + } + + if (dirs.Count == 0) return -1; + + var alldirs = dirs.Select(static x => (Name: Path.GetFileName(x), Files: Directory.EnumerateFiles(x).Where(static x => !x.EndsWith(".import")).OrderBy(static x => { + var dotIndex = x.LastIndexOf('.'); + return int.Parse(x[(dotIndex - 4)..dotIndex]); + }).ToArray())).ToArray(); + + if (!alldirs.All(x => alldirs[0].Files.Length == x.Files.Length)) return -1; + var rows = alldirs[0].Files.Length; + Console.WriteLine($"Reading {alldirs.Length} columns"); + int row = 0; + for (int file = 0; file < rows; file++) { + if (alldirs[0].Files[file].EndsWith(".import")) continue; + Dictionary data = []; + data["index"] = row.ToString(); + for (int col = 0; col < alldirs.Length; col++) { + data[alldirs[col].Name!] = alldirs[col].Files[file]; + + } + + var path = Path.Combine(settings.ScanPath, settings.OutputPath, $"{settings.OutputName}.{row:d4}{settings.OutputExtension}"); + Directory.CreateDirectory(Path.GetDirectoryName(path)!); + File.WriteAllText(path, JsonSerializer.Serialize(data)); + row++; + } + + return 0; + } +} + +public class App { + public static int Main(string[] args) { + var app = new CommandApp(); + + app.Configure(static config => { + config.AddCommand("render"); + config.AddCommand("populate-render-data"); + config.PropagateExceptions(); + }); + + return app.Run(args); + } + + +} \ No newline at end of file diff --git a/src/workflow/tool/Render.cs b/src/workflow/tool/Render.cs new file mode 100644 index 0000000..8e53c35 --- /dev/null +++ b/src/workflow/tool/Render.cs @@ -0,0 +1,61 @@ +using System.Diagnostics; +using System.Text.Json; +using Spectre.Console; +using Spectre.Console.Cli; +namespace aeqw89.Wrplat.Workflow.Tool; + +public class Render : AsyncCommand { + protected override async Task ExecuteAsync(CommandContext context, RenderSettings settings, CancellationToken cancellationToken) { + static async ValueTask _foreach(IEnumerable source, Func action, CancellationToken ct, bool parallel = false) { + if (parallel) await Parallel.ForEachAsync(source, action); + else foreach(var item in source) await action(item, ct); + } + + var mj = await AnsiConsole.Progress().StartAsync(async (ctx) => { + var mj = ctx.AddTask("Render", new() { AutoStart = true, MaxValue = settings.ConfigurationFiles.Length }); + await _foreach(settings.ConfigurationFiles, async (configfile, ct) => { + var currentTask = ctx.AddTaskAfter(Path.GetFileName(configfile), mj, maxValue: 2); + var psi = new ProcessStartInfo() { + FileName = settings.BlenderPath, + Arguments = $"--python-use-system-env -b \"{settings.BlenderFile}\" -P \"{RenderSettings.ScriptPath}\" -- \"{configfile}\" -b \"{RenderSettings.OutputsPath}\"", + RedirectStandardOutput = true, + RedirectStandardError = true, + }; + + using var ps = Process.Start(psi); + ps!.ErrorDataReceived += (s, e) => { + if (e.Data is not null) AnsiConsole.MarkupLine($"[red]{e.Data.EscapeMarkup()}[/]"); + }; + ps!.OutputDataReceived += (s,e) => { + JobStatus status; + try { + status = JsonSerializer.Deserialize(e.Data!); + } catch { + if (e.Data is not null) AnsiConsole.MarkupLine($"[yellow]{e.Data.EscapeMarkup()}[/]"); + return; + } + + var result = status.Result == "ok" ? "[green]✓[/]" : "[bold red]✖[/]"; + if (!string.IsNullOrEmpty(status.Msg)) { + AnsiConsole.MarkupLine($"[[{result} ]] --- {status.Msg.EscapeMarkup()}"); + if (status.Result == "ok") + currentTask.Increment(1); + } + }; + + ps.BeginErrorReadLine(); + ps.BeginOutputReadLine(); + + await ps.WaitForExitAsync(ct); + + if (currentTask.IsFinished) + mj.Increment(1); + + }, cancellationToken); + + return mj; + }); + + return mj.Value > 0 ? 0 : -1 - (int)mj.Value; + } +} diff --git a/src/workflow/tool/RenderSettings.cs b/src/workflow/tool/RenderSettings.cs new file mode 100644 index 0000000..94254cd --- /dev/null +++ b/src/workflow/tool/RenderSettings.cs @@ -0,0 +1,25 @@ +using System.ComponentModel; +using Spectre.Console.Cli; +namespace aeqw89.Wrplat.Workflow.Tool; + +public class RenderSettings : CommandSettings { + + [CommandArgument(0, "")] + [Description("The path to the blender project to render.")] + public required string BlenderFile { get; set; } + + [CommandArgument(1, "")] + [Description("The YAML configuration file for scene setup and render options")] + public required string[] ConfigurationFiles { get; set; } + + [CommandOption("-b|--blender_path", false)] + [Description("The path to the blender executable to use when rendering")] + [DefaultValue(@"C:\Program Files\Blender Foundation\Blender 5.1\blender.exe")] + public string BlenderPath { get; set; } = @"C:\Program Files\Blender Foundation\Blender 5.1\blender.exe"; + + + + public const string ScriptPath = @"C:\Users\qwsdc\source\wrplat\wrplat-godot\src\workflow\tool-py\blender-render\render.py"; + public const string Script2Path = @"C:\Users\qwsdc\source\wrplat\wrplat-godot\src\workflow\tool-py\blender-render\config.py"; + public const string OutputsPath = @"C:\Users\qwsdc\source\wrplat\wrplat-godot\src\workflow\outputs"; +} diff --git a/src/workflow/tool/tool.csproj b/src/workflow/tool/tool.csproj new file mode 100644 index 0000000..d231778 --- /dev/null +++ b/src/workflow/tool/tool.csproj @@ -0,0 +1,20 @@ + + + + Exe + net11.0 + enable + enable + + + + + + + + + PreserveNewest + + + +