Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7ba8c1fc6b |
@@ -1,4 +1,10 @@
|
||||
# Godot 4+ specific ignores
|
||||
.godot/
|
||||
/android/
|
||||
builds/
|
||||
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/**/*
|
||||
@@ -5,4 +5,8 @@
|
||||
<EnableDynamicLoading>true</EnableDynamicLoading>
|
||||
<LangVersion>preview</LangVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Compile Remove="src/workflow\**\*"/>
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -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<Dictionary> _GetImportOptions(string path, int presetIndex) {
|
||||
Console.WriteLine("Building options here!");
|
||||
return [
|
||||
ImportOption<string>.CreateAsMap(new("normal", "normal", PropertyHint.None, "Normal Map Data Field Name")),
|
||||
ImportOption<string>.CreateAsMap(new("diffuse", "diffuse", PropertyHint.None, "Diffuse Map Data Field Name")),
|
||||
ImportOption<string>.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<T> 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<System.Collections.Generic.Dictionary<string, string>>(file.GetAsText());
|
||||
return data.Values.ToArray();
|
||||
}
|
||||
|
||||
|
||||
public override Error _Import(string sourceFile, string savePath, Dictionary options, Array<string> platformVariants, Array<string> genFiles) {
|
||||
using var file = FileAccess.Open(sourceFile, FileAccess.ModeFlags.Read);
|
||||
var data = JsonSerializer.Deserialize<System.Collections.Generic.Dictionary<string, string>>(file.GetAsText());
|
||||
|
||||
System.Collections.Generic.Dictionary<string, Texture2D> resources = [];
|
||||
foreach(var (attributeName, path) in data) {
|
||||
if (attributeName == "index") continue;
|
||||
resources[attributeName] = ResourceLoader.Load<Texture2D>(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
|
||||
@@ -0,0 +1 @@
|
||||
uid://dqdx3nl3bttwi
|
||||
@@ -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<CSharpScript>("res://addons/aeqw89.RDatCanvasTextureImporterPlugin/RDatCanvasTextureImporter.cs").New();
|
||||
_importer = script.As<RDatCanvasTextureImporter>();
|
||||
AddImportPlugin(_importer);
|
||||
}
|
||||
|
||||
public override void _ExitTree() {
|
||||
// Clean-up of the plugin goes here.
|
||||
RemoveImportPlugin(_importer);
|
||||
_importer = null;
|
||||
}
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1 @@
|
||||
uid://dhr30jnf7n1bd
|
||||
@@ -0,0 +1,7 @@
|
||||
[plugin]
|
||||
|
||||
name="RDatCanvasTextureImporter"
|
||||
description=""
|
||||
author="aeqw89"
|
||||
version="0.0.1"
|
||||
script="RDatCanvasTextureImporterEditorPlugin.cs"
|
||||
@@ -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.
|
||||
@@ -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.
|
||||
@@ -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
|
||||
@@ -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
|
||||
}]
|
||||
|
||||
@@ -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
|
||||
}]
|
||||
@@ -1,3 +1,4 @@
|
||||
[gd_resource type="Environment" format=3 uid="uid://b3ef577lsk2jh"]
|
||||
|
||||
[resource]
|
||||
background_mode = 1
|
||||
|
||||
@@ -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={}
|
||||
@@ -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={}
|
||||
@@ -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)
|
||||
@@ -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
|
||||
@@ -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
|
||||
@@ -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
|
||||
@@ -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"
|
||||
@@ -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
|
||||
@@ -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")
|
||||
@@ -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")
|
||||
@@ -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"]
|
||||
|
||||
@@ -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"]
|
||||
|
||||
@@ -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
|
||||
@@ -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")
|
||||
|
||||
@@ -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]
|
||||
|
||||
|
||||
@@ -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"}
|
||||
@@ -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"
|
||||
@@ -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"}
|
||||
@@ -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"
|
||||
@@ -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"}
|
||||
@@ -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"
|
||||
@@ -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"}
|
||||
@@ -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"
|
||||
@@ -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"}
|
||||
@@ -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"
|
||||
@@ -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"}
|
||||
@@ -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"
|
||||
@@ -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"}
|
||||
@@ -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"
|
||||
@@ -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"}
|
||||
@@ -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"
|
||||
@@ -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"}
|
||||
@@ -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"
|
||||
@@ -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"}
|
||||
@@ -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"
|
||||
@@ -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"}
|
||||
@@ -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"
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |
@@ -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
|
||||
|
After Width: | Height: | Size: 33 KiB |