Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7ba8c1fc6b | |||
| 2e152ec36b | |||
| a1e0c19ff7 | |||
| 8ad0f3ff65 | |||
| 2eaed32b8a | |||
| 2e48db1a60 | |||
| 562d0da079 | |||
| 6b9bb6da5a |
@@ -2,3 +2,9 @@
|
|||||||
.godot/
|
.godot/
|
||||||
/android/
|
/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>
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
||||||
<LangVersion>preview</LangVersion>
|
<LangVersion>preview</LangVersion>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Remove="src/workflow\**\*"/>
|
||||||
|
</ItemGroup>
|
||||||
</Project>
|
</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.
|
||||||
@@ -2,16 +2,16 @@
|
|||||||
|
|
||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://buogmgg3p5soy"
|
uid="uid://tdjmuli4qa22"
|
||||||
path="res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"
|
path="res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://icon.svg"
|
source_file="res://icon.png"
|
||||||
dest_files=["res://.godot/imported/icon.svg-218a8f2b3041327d8a5756f3a245f83b.ctex"]
|
dest_files=["res://.godot/imported/icon.png-487276ed1e3a0c39cad0279d744ee560.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
@@ -38,6 +38,3 @@ process/hdr_as_srgb=false
|
|||||||
process/hdr_clamp_exposure=false
|
process/hdr_clamp_exposure=false
|
||||||
process/size_limit=0
|
process/size_limit=0
|
||||||
detect_3d/compress_to=1
|
detect_3d/compress_to=1
|
||||||
svg/scale=1.0
|
|
||||||
editor/scale_with_editor_scale=false
|
|
||||||
editor/convert_colors_with_editor_theme=false
|
|
||||||
@@ -1 +0,0 @@
|
|||||||
<svg xmlns="http://www.w3.org/2000/svg" width="128" height="128"><rect width="124" height="124" x="2" y="2" fill="#363d52" stroke="#212532" stroke-width="4" rx="14"/><g fill="#fff" transform="translate(12.322 12.322)scale(.101)"><path d="M105 673v33q407 354 814 0v-33z"/><path fill="#478cbf" d="m105 673 152 14q12 1 15 14l4 67 132 10 8-61q2-11 15-15h162q13 4 15 15l8 61 132-10 4-67q3-13 15-14l152-14V427q30-39 56-81-35-59-83-108-43 20-82 47-40-37-88-64 7-51 8-102-59-28-123-42-26 43-46 89-49-7-98 0-20-46-46-89-64 14-123 42 1 51 8 102-48 27-88 64-39-27-82-47-48 49-83 108 26 42 56 81zm0 33v39c0 276 813 276 814 0v-39l-134 12-5 69q-2 10-14 13l-162 11q-12 0-16-11l-10-65H446l-10 65q-4 11-16 11l-162-11q-12-3-14-13l-5-69z"/><path d="M483 600c0 34 58 34 58 0v-86c0-34-58-34-58 0z"/><circle cx="725" cy="526" r="90"/><circle cx="299" cy="526" r="90"/></g><g fill="#414042" transform="translate(12.322 12.322)scale(.101)"><circle cx="307" cy="532" r="60"/><circle cx="717" cy="532" r="60"/></g></svg>
|
|
||||||
|
Before Width: | Height: | Size: 995 B |
@@ -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
|
||||||
@@ -0,0 +1,894 @@
|
|||||||
|
[gd_resource type="SpriteFrames" format=3 uid="uid://cxf0kefqrxk0d"]
|
||||||
|
|
||||||
|
[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 = [{
|
||||||
|
"frames": [{
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("1_uv47v")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("2_ydck8")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("3_eceky")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("4_1auei")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("5_5jo4e")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("6_3k4ee")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("7_isebb")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("8_ay88b")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("9_51i8q")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("10_n4k2w")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("11_bm1on")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("12_2v8or")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("13_r3plk")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("14_obgqt")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("15_sc8xw")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("16_pet58")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("17_7l8vm")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("18_blq2m")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("19_yn8be")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("20_5d5lv")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("21_3ml1o")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("22_4iiiq")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("23_t70ju")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("24_lo4h7")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("25_ojq6w")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("26_xli5o")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("27_gpyyp")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("28_s0jcr")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("29_r67gh")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("30_h7pjj")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("31_g1ll5")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("32_0817o")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("33_0k5lh")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("34_fccf3")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("35_qn24x")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("36_nvb3t")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("37_m4vbm")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("38_5ygiw")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("39_di6pc")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("40_arswu")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("41_sjga0")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("42_m1od1")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("43_gmd4n")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("44_ijryr")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("45_oc4hx")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("46_67e37")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("47_mien6")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("48_40exb")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("49_jj26p")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("50_l8sbl")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("51_og831")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("52_lrx5r")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("53_7g25t")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("54_lr4j3")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("55_tdkpy")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("56_gefwp")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("57_eyhsx")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("58_x50mk")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("59_2lkwr")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("60_nj8pg")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("61_2iqeg")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("62_1u4qn")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("63_vqwao")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("64_m3u8v")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("65_dgoap")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("66_wot68")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("67_8sr8p")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("68_h2505")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("69_hvh2c")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("70_y07da")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("71_b60dh")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("72_3myye")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("73_bceri")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("74_wsiyg")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("75_r4ri8")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("76_0vcv4")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("77_dwfpx")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("78_r8psl")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("79_72gbn")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("80_2qpbi")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("81_a685y")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("82_vqbbx")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("83_52cfc")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("84_dtjpt")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("85_8n8rf")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("86_dtl61")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("87_nxjme")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("88_3u8ba")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("89_o10ma")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("90_bagbv")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("91_o4v7s")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("92_mnns2")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("93_vlxqe")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("94_5p2pw")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("95_0e0ik")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("96_bq4ff")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("97_13yca")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("98_u4yk7")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("99_tymef")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("100_sr2ly")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("101_m218t")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("102_5dyax")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("103_w403m")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("104_rdd54")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("105_elwr2")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("106_cgof5")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("107_j4t0q")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("108_2vqrd")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("109_lfird")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("110_175fh")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("111_bo4pd")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("112_hae6t")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("113_n1ivk")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("114_ldpfs")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("115_og00p")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("116_f74dr")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("117_nsc0r")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("118_vaphq")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("119_ws3f3")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("120_yfcpn")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("121_gwkoh")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("122_tugke")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("123_cud0v")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("124_kdnsi")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("125_xu81h")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("126_aemuk")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("127_qelf3")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("128_sn2xl")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("129_5c4bp")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("130_aoumm")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("131_ccfmc")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("132_pinca")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("133_45xla")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("134_574p6")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("135_wak1j")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("136_vawlu")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("137_rvc2m")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("138_7aa61")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("139_o7kcf")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("140_8ngjp")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("141_5855t")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("142_5dc3w")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("143_jhca7")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("144_7aag7")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("145_mssfe")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("146_tnqr4")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("147_dycfj")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("148_16q1w")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("149_1o83q")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("150_1nhnj")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("151_0ojgp")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("152_s5mp5")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("153_xwbh5")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("154_la5u2")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("155_xcmbm")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("156_opwhx")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("157_o4b05")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("158_comas")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("159_k4fx6")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("160_drcsp")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("161_8pcgf")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("162_2ldeg")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("163_luai5")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("164_vorbj")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("165_54v8d")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("166_0s5pn")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("167_aduht")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("168_jqjov")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("169_ctols")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("170_riol2")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("171_ax3vn")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("172_4nfo2")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("173_ii6t0")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("174_35kco")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("175_11pki")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("176_ayiyj")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("177_c6kqo")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("178_1uvnh")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("179_j83sy")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("180_jf5j0")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("181_cqyfo")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("182_lfp7e")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("183_6gx24")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("184_2du54")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("185_q2i1n")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("186_at3tp")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("187_whn7n")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("188_ye3ci")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("189_qyjuu")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("190_cclff")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("191_3aupn")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("192_ghx0q")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("193_r4731")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("194_f1pwf")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("195_8wn1e")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("196_h8260")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("197_kfjk1")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("198_m7whw")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("199_wtcp0")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("200_sukth")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("201_6j6xt")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("202_0fjfd")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("203_bjwpg")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("204_iyrp4")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("205_5fcut")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("206_slpna")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("207_hsksq")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("208_yqbst")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("209_lvxxm")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("210_w8i65")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("211_in7s8")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("212_rpmeu")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("213_y1d57")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("214_d67iq")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("215_c28ij")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("216_05nie")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("217_7g1qr")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("218_34ock")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("219_4dmek")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("220_si5x2")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("221_nxaca")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"default",
|
||||||
|
"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"]
|
[gd_resource type="Environment" format=3 uid="uid://b3ef577lsk2jh"]
|
||||||
|
|
||||||
[resource]
|
[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,3 @@
|
|||||||
|
[gd_resource type="Translation" format=3 uid="uid://vs4pl3jum6hp"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
@@ -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")
|
||||||
@@ -4,20 +4,27 @@
|
|||||||
[ext_resource type="TileSet" uid="uid://bk7cbdppa3j6a" path="res://sprites/tilesets/pool.tres" id="1_t7kht"]
|
[ext_resource type="TileSet" uid="uid://bk7cbdppa3j6a" path="res://sprites/tilesets/pool.tres" id="1_t7kht"]
|
||||||
[ext_resource type="Environment" uid="uid://b3ef577lsk2jh" path="res://objects/environment/default.tres" id="2_44w6l"]
|
[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="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/PlayerPhysicsController.cs" id="2_oekxy"]
|
[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="Script" uid="uid://d0qoxtv6ld1ef" path="res://src/components/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="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"]
|
[ext_resource type="SpriteFrames" uid="uid://trcnb1ubmx5e" path="res://objects/animation/frames/jumpPoint.tres" id="4_i0lqw"]
|
||||||
[ext_resource type="Compositor" uid="uid://kk12nt7g2oqg" path="res://objects/compositor/default_compositor.tres" id="4_oekxy"]
|
[ext_resource type="Compositor" uid="uid://kk12nt7g2oqg" path="res://objects/compositor/default_compositor.tres" id="4_oekxy"]
|
||||||
[ext_resource type="Script" uid="uid://1mjqnyofaeo8" path="res://src/components/DebugEnabler.gd" id="5_q0lvb"]
|
[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/PredictiveCollisions.cs" id="7_n3w37"]
|
[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="AudioStream" uid="uid://5gnpemu56ac0" path="res://sounds/ost/Azalea.wav" id="8_irpq7"]
|
||||||
[ext_resource type="Script" uid="uid://b3unn3dqhg2vl" path="res://src/components/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://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://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="AudioStream" uid="uid://b5cvbx3ypbbho" path="res://sounds/ost/Hyacinth.wav" id="12_7psk8"]
|
||||||
|
[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="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"]
|
[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]
|
_data = [Vector2(0, 0.34831464), 0.0, 0.0, 0, 0, Vector2(0.90999997, 0.764045), 0.0, 0.0, 0, 0]
|
||||||
@@ -29,6 +36,13 @@ size = Vector2(687, 20)
|
|||||||
[sub_resource type="CircleShape2D" id="CircleShape2D_nxkc6"]
|
[sub_resource type="CircleShape2D" id="CircleShape2D_nxkc6"]
|
||||||
radius = 20.09975
|
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"]
|
[sub_resource type="CapsuleShape2D" id="CapsuleShape2D_oekxy"]
|
||||||
radius = 11.0
|
radius = 11.0
|
||||||
height = 50.0
|
height = 50.0
|
||||||
@@ -39,6 +53,7 @@ radius = 5.0
|
|||||||
[node name="Node2D" type="Node2D" unique_id=1943007414]
|
[node name="Node2D" type="Node2D" unique_id=1943007414]
|
||||||
|
|
||||||
[node name="Level" type="Node2D" parent="." unique_id=621894136]
|
[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]
|
[node name="Static" type="Node2D" parent="Level" unique_id=897407461]
|
||||||
|
|
||||||
@@ -48,11 +63,12 @@ tile_map_data = PackedByteArray("AAAAAAIAAAACAAMAAAABAAIAAAACAAMAAgACAAIAAAACAAM
|
|||||||
tile_set = ExtResource("1_7psk8")
|
tile_set = ExtResource("1_7psk8")
|
||||||
|
|
||||||
[node name="Foreground" type="Node2D" parent="Level" unique_id=1677976972]
|
[node name="Foreground" type="Node2D" parent="Level" unique_id=1677976972]
|
||||||
|
z_index = 1
|
||||||
|
|
||||||
[node name="TileMapLayer" type="TileMapLayer" parent="Level/Foreground" unique_id=419267781]
|
[node name="TileMapLayer" type="TileMapLayer" parent="Level/Foreground" unique_id=419267781]
|
||||||
light_mask = 4
|
light_mask = 4
|
||||||
texture_filter = 1
|
texture_filter = 1
|
||||||
tile_map_data = PackedByteArray("AAAWAPz/AAALAAIAAAAXAPz/AAALAAIAAAAYAPz/AAALAAMAAAAZAPr/AAALAAIAAAAOAAYAAAALAAIAAAAPAAYAAAALAAIAAAAQAAYAAAALAAIAAAARAAYAAAALAAIAAAASAAYAAAALAAIAAAATAAYAAAALAAIAAAAWAAYAAAALAAIAAAAXAAYAAAALAAIAAAAYAAYAAAALAAIAAAAZAAYAAAALAAIAAAAaAAYAAAALAAIAAAAdAAYAAAALAAIAAAAeAAYAAAALAAIAAAAfAAYAAAALAAIAAAAgAAYAAAALAAIAAAAOAAUAAAAMAAEAAAAPAAUAAAALAAEAAAAQAAUAAAAMAAEAAAARAAUAAAAMAAEAAAASAAUAAAAKAAEAAAATAAUAAAALAAEAAAAXAAUAAAAMAAEAAAAYAAUAAAAMAAEAAAAZAAUAAAAKAAEAAAAaAAUAAAAMAAEAAAAdAAUAAAAKAAEAAAAeAAUAAAAKAAEAAAAfAAUAAAALAAEAAAAgAAUAAAAMAAEAAAAWAAUAAAAMAAEAAAAWAPv/AAAKAAEAAAAXAPv/AAAKAAEAAAA=")
|
tile_map_data = PackedByteArray("AAAWAPz/AAAOAAIAAAAXAPz/AAALAAIAAAAYAPz/AAALAAcAAAAZAPr/AAALAAIAAAAOAAYAAAAOAAIAAAAPAAYAAAALAAIAAAAQAAYAAAALAAIAAAARAAYAAAALAAIAAAASAAYAAAALAAIAAAATAAYAAAAPAAIAAAAWAAYAAAAOAAIAAAAXAAYAAAALAAIAAAAYAAYAAAALAAIAAAAZAAYAAAALAAIAAAAaAAYAAAAPAAIAAAAdAAYAAAAOAAIAAAAeAAYAAAALAAIAAAAfAAYAAAALAAIAAAAgAAYAAAALAAIAAAAOAAUAAAAOAAEAAAAPAAUAAAALAAEAAAAQAAUAAAAMAAEAAAARAAUAAAAMAAEAAAAXAAUAAAAMAAEAAAAYAAUAAAAMAAEAAAAZAAUAAAAKAAEAAAAaAAUAAAAPAAEAAAAdAAUAAAAOAAEAAAAeAAUAAAAKAAEAAAAfAAUAAAALAAEAAAAgAAUAAAAIAAUAAAAWAAUAAAAOAAEAAAAWAPv/AAAOAAEAAAAXAPv/AAAIAAUAAAATAAUAAAAPAAEAAAASAAUAAAAKAAEAAAAhAAYAAAALAAcAAAAhAAUAAAAKAAMAAAAgAAQAAAAJAAMAAAAhAAQAAAAKAAMAAAAgAAMAAAAJAAIAAAAhAAMAAAAKAAMAAAAhAAIAAAANAAYAAAAgAAIAAAAMAAYAAAAdAP3/AAAMAAQAAAAcAP3/AAALAAQAAAAbAP3/AAALAAQAAAAdAPz/AAAMAAMAAAAdAPv/AAAMAAMAAAAdAPr/AAAMAAMAAAAdAPn/AAAMAAMAAAAdAPj/AAAOAAYAAAAaAP3/AAAOAAMAAAAaAP7/AAAOAAQAAAAeAPj/AAAPAAYAAAAeAPn/AAANAAQAAAAeAPr/AAANAAMAAAAeAPv/AAANAAQAAAAeAPz/AAANAAMAAAAeAP3/AAANAAQAAAAbAP7/AAALAAUAAAAcAP7/AAAKAAUAAAAdAP7/AAAMAAUAAAAaAPn/AAAKAAMAAAAaAPr/AAALAAcAAAAYAPn/AAAOAAEAAAAYAPr/AAAOAAIAAAAZAPj/AAAMAAYAAAAaAPj/AAANAAYAAAAZAPn/AAAIAAUAAAAYAPv/AAANAAYAAAAMAAAAAAAMAAMAAAAMAP//AAAMAAMAAAAMAP7/AAAMAAMAAAAMAP3/AAAMAAMAAAAMAPz/AAAMAAMAAAAMAPv/AAAMAAMAAAAhAOv/AAAKAAMAAAAhAOz/AAAKAAMAAAAhAO3/AAAKAAMAAAAhAO7/AAAKAAMAAAAhAO//AAAKAAMAAAAhAPD/AAAKAAMAAAAhAPH/AAAKAAMAAAAhAPL/AAAKAAMAAAAhAPP/AAAKAAMAAAAhAPT/AAAKAAMAAAAgAOv/AAAJAAQAAAAgAOz/AAAJAAQAAAAgAO3/AAAJAAIAAAAgAO7/AAAJAAIAAAAgAO//AAAJAAQAAAAgAPD/AAAJAAQAAAAgAPH/AAAJAAIAAAAgAPL/AAAJAAQAAAAgAPP/AAAJAAIAAAAgAPT/AAAJAAQAAAAgAPX/AAAMAAcAAAAhAPX/AAANAAcAAAAgAOr/AAAMAAYAAAAhAOr/AAANAAYAAAAMAAEAAAAOAAcAAAANAAEAAAAPAAcAAAAMAPr/AAAOAAYAAAANAPr/AAAPAAYAAAANAPv/AAANAAQAAAANAPz/AAANAAIAAAANAP3/AAANAAMAAAANAP7/AAANAAQAAAANAP//AAANAAIAAAANAAAAAAANAAMAAAAQANv/AAAKAAMAAAAQANz/AAAKAAMAAAAQAN3/AAAKAAMAAAAQAN7/AAAKAAMAAAAQAN//AAAKAAMAAAAQAOD/AAAKAAMAAAAQAOH/AAAKAAMAAAAQAOL/AAAKAAMAAAAQAOP/AAAKAAMAAAAQAOT/AAAKAAMAAAAQAOX/AAAKAAMAAAAQAOb/AAAKAAQAAAARAOb/AAAPAAMAAAARAOf/AAAPAAQAAAAQANn/AAAIAAUAAAARANn/AAANAAYAAAAQANr/AAAKAAIAAAARANr/AAALAAcAAAAPANr/AAAJAAQAAAAPANv/AAAJAAIAAAAPANz/AAAJAAQAAAAPAN3/AAAJAAMAAAAPAN7/AAAJAAIAAAAPAN//AAAJAAIAAAAPAOD/AAAJAAIAAAAPAOH/AAAJAAIAAAAPAOL/AAAJAAIAAAAPAOP/AAAJAAMAAAAPAOT/AAAJAAQAAAAPAOX/AAAJAAIAAAAPAOb/AAAMAAcAAAAQAOf/AAAOAAQAAAAMAOD/AAAMAAMAAAAMAN//AAAMAAMAAAAMAN7/AAAMAAMAAAAMAN3/AAAMAAMAAAAMANz/AAAMAAMAAAAMANv/AAAMAAMAAAAMANr/AAAMAAIAAAAMAOr/AAAMAAMAAAAMAOn/AAAMAAMAAAAMAOj/AAAMAAMAAAAMAOf/AAAOAAYAAAANAOf/AAAPAAYAAAAMAOv/AAAOAAcAAAANAOv/AAAPAAcAAAAMAOH/AAAOAAcAAAANAOH/AAAPAAcAAAALANf/AAAOAAYAAAAMANf/AAAPAAYAAAALANj/AAAMAAMAAAALANn/AAAMAAMAAAALANr/AAAKAAcAAAAMANj/AAANAAMAAAAMANn/AAAJAAUAAAANANr/AAANAAQAAAANANv/AAANAAQAAAANANz/AAANAAMAAAANAN3/AAANAAIAAAANAN7/AAANAAIAAAANAN//AAANAAQAAAANAOD/AAANAAQAAAANAOj/AAANAAIAAAANAOn/AAANAAMAAAANAOr/AAANAAIAAAAhAOX/AAAKAAMAAAAhAOT/AAAKAAMAAAAhAOP/AAAKAAMAAAAhAOL/AAAKAAMAAAAhAOH/AAAKAAMAAAAhAOD/AAAKAAMAAAAhAN//AAAKAAMAAAAgAN//AAAIAAYAAAAgAN3/AAAIAAUAAAAhAN3/AAAKAAMAAAAhANz/AAAKAAMAAAAhANv/AAAKAAMAAAAhAN7/AAAKAAMAAAAfAOT/AAAJAAYAAAAfAOL/AAAJAAUAAAAeAOX/AAAMAAMAAAAeAOT/AAAMAAMAAAAeAOP/AAAMAAMAAAAeAOL/AAAMAAMAAAAeAOH/AAAMAAMAAAAeAOD/AAAMAAMAAAAeAN//AAAMAAMAAAAeAN7/AAAMAAMAAAAeAN3/AAAMAAMAAAAeANz/AAAMAAMAAAAeANv/AAAMAAMAAAAeANr/AAAMAAIAAAAdANr/AAALAAIAAAAcANr/AAALAAIAAAAbANn/AAAOAAEAAAAbANr/AAAOAAIAAAAgANr/AAAMAAYAAAAhANr/AAANAAYAAAAgAOb/AAAMAAcAAAAhAOb/AAANAAcAAAAeAOb/AAAMAAQAAAAdAOb/AAALAAQAAAAcAOb/AAALAAQAAAAbAOb/AAALAAQAAAAaAOb/AAAOAAMAAAAaAOf/AAAOAAQAAAAbAOf/AAAMAAUAAAAcAOf/AAAKAAUAAAAdAOf/AAAKAAUAAAAeAOf/AAAMAAUAAAAfAOb/AAANAAMAAAAfAOX/AAANAAIAAAAfAOH/AAANAAQAAAAfAOD/AAANAAMAAAAfAN//AAANAAMAAAAfAN7/AAANAAMAAAAfAN3/AAANAAMAAAAfANz/AAANAAMAAAAfANv/AAANAAQAAAAfANr/AAANAAMAAAAcANn/AAAMAAEAAAAdANn/AAAMAAEAAAAeANn/AAAMAAEAAAAgANv/AAAJAAIAAAAgANz/AAAJAAQAAAAgAOD/AAAJAAIAAAAgAOH/AAAJAAMAAAAgAOL/AAAJAAMAAAAgAOP/AAAJAAQAAAAgAOT/AAAJAAQAAAAgAOX/AAAJAAQAAAA=")
|
||||||
tile_set = ExtResource("1_7psk8")
|
tile_set = ExtResource("1_7psk8")
|
||||||
occlusion_enabled = false
|
occlusion_enabled = false
|
||||||
|
|
||||||
@@ -206,11 +222,32 @@ frame = 4
|
|||||||
|
|
||||||
[node name="Enemies" type="Node2D" parent="Level" unique_id=1512527230]
|
[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]
|
[node name="Player" type="Node2D" parent="." unique_id=868418175]
|
||||||
|
unique_name_in_owner = true
|
||||||
position = Vector2(755, 0)
|
position = Vector2(755, 0)
|
||||||
|
|
||||||
[node name="CharacterBody2D" type="CharacterBody2D" parent="Player" unique_id=1131700263 node_paths=PackedStringArray("DebugTextLabel", "Sprite", "Predictor")]
|
[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
|
collision_layer = 2
|
||||||
safe_margin = 0.16
|
safe_margin = 0.16
|
||||||
script = ExtResource("2_oekxy")
|
script = ExtResource("2_oekxy")
|
||||||
@@ -218,6 +255,7 @@ WalkAcceleration = 30.0
|
|||||||
StoppingDeceleration = 50.0
|
StoppingDeceleration = 50.0
|
||||||
CancellationAcceleration = 50.0
|
CancellationAcceleration = 50.0
|
||||||
AirAcceleration = 3.0
|
AirAcceleration = 3.0
|
||||||
|
AccelerationStrengthCurve = SubResource("Curve_88cfa")
|
||||||
MaxFallSpeed = 50.0
|
MaxFallSpeed = 50.0
|
||||||
MaxRiseSpeed = 50.0
|
MaxRiseSpeed = 50.0
|
||||||
MaxRunSpeed = 12.0
|
MaxRunSpeed = 12.0
|
||||||
@@ -231,20 +269,22 @@ position = Vector2(0, 5)
|
|||||||
shape = SubResource("CapsuleShape2D_oekxy")
|
shape = SubResource("CapsuleShape2D_oekxy")
|
||||||
|
|
||||||
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="Player/CharacterBody2D" unique_id=1137300855]
|
[node name="AnimatedSprite2D" type="AnimatedSprite2D" parent="Player/CharacterBody2D" unique_id=1137300855]
|
||||||
light_mask = 0
|
light_mask = 7
|
||||||
texture_filter = 1
|
texture_filter = 1
|
||||||
position = Vector2(0, 3)
|
position = Vector2(1.0000066, 2.9999995)
|
||||||
sprite_frames = ExtResource("2_wq5k4")
|
sprite_frames = ExtResource("8_w1uqt")
|
||||||
animation = &"walk"
|
animation = &"walk"
|
||||||
|
|
||||||
[node name="Camera2D" type="Camera2D" parent="Player/CharacterBody2D" unique_id=1068565115]
|
[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]
|
[node name="Label" type="Label" parent="Player/CharacterBody2D" unique_id=436935745]
|
||||||
|
texture_filter = 1
|
||||||
offset_left = 22.0
|
offset_left = 22.0
|
||||||
offset_top = -75.0
|
offset_top = -75.0
|
||||||
offset_right = 139.0
|
offset_right = 131.22
|
||||||
offset_bottom = 36.0
|
offset_bottom = 36.0
|
||||||
|
theme = ExtResource("8_pr4hf")
|
||||||
script = ExtResource("5_q0lvb")
|
script = ExtResource("5_q0lvb")
|
||||||
|
|
||||||
[node name="AudioListener2D" type="AudioListener2D" parent="Player/CharacterBody2D" unique_id=1583907461]
|
[node name="AudioListener2D" type="AudioListener2D" parent="Player/CharacterBody2D" unique_id=1583907461]
|
||||||
@@ -293,13 +333,22 @@ max_results = 1
|
|||||||
collide_with_areas = true
|
collide_with_areas = true
|
||||||
|
|
||||||
[node name="Light" parent="Player/CharacterBody2D" unique_id=658403720 instance=ExtResource("18_kfvst")]
|
[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]
|
[node name="WorldEnvironment" type="WorldEnvironment" parent="." unique_id=1465666014]
|
||||||
environment = ExtResource("2_44w6l")
|
environment = ExtResource("2_44w6l")
|
||||||
camera_attributes = ExtResource("3_wq5k4")
|
camera_attributes = ExtResource("3_wq5k4")
|
||||||
compositor = ExtResource("4_oekxy")
|
compositor = ExtResource("4_oekxy")
|
||||||
|
|
||||||
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="." unique_id=2110631703]
|
[node name="Sfx" type="AudioStreamPlayer" parent="." unique_id=253749605]
|
||||||
|
volume_db = -9.72
|
||||||
|
script = ExtResource("14_8hos5")
|
||||||
|
ground_jump = Array[AudioStream]([ExtResource("15_2fy34")])
|
||||||
|
midair_jump = Array[AudioStream]([ExtResource("15_2fy34")])
|
||||||
|
turnback_jump = Array[AudioStream]([ExtResource("15_2fy34")])
|
||||||
|
|
||||||
|
[node name="Music" type="AudioStreamPlayer" parent="." unique_id=2110631703]
|
||||||
stream = ExtResource("8_irpq7")
|
stream = ExtResource("8_irpq7")
|
||||||
volume_db = -25.544
|
volume_db = -25.544
|
||||||
autoplay = true
|
autoplay = true
|
||||||
@@ -309,6 +358,7 @@ music = Array[AudioStream]([ExtResource("10_8w1nl"), ExtResource("8_irpq7"), Ext
|
|||||||
[node name="CanvasLayer" type="CanvasLayer" parent="." unique_id=1286087362]
|
[node name="CanvasLayer" type="CanvasLayer" parent="." unique_id=1286087362]
|
||||||
|
|
||||||
[node name="ProgressBar" type="ProgressBar" parent="CanvasLayer" unique_id=720412287]
|
[node name="ProgressBar" type="ProgressBar" parent="CanvasLayer" unique_id=720412287]
|
||||||
|
texture_filter = 1
|
||||||
offset_left = 18.0
|
offset_left = 18.0
|
||||||
offset_top = 10.0
|
offset_top = 10.0
|
||||||
offset_right = 376.0
|
offset_right = 376.0
|
||||||
@@ -317,22 +367,38 @@ value = 100.0
|
|||||||
rounded = true
|
rounded = true
|
||||||
show_percentage = false
|
show_percentage = false
|
||||||
|
|
||||||
[node name="Light" parent="." unique_id=1954424812 instance=ExtResource("18_kfvst")]
|
[node name="Label" type="Label" parent="CanvasLayer" unique_id=2058517854]
|
||||||
position = Vector2(690, -499)
|
visible = false
|
||||||
|
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="Light2" parent="." unique_id=867314630 instance=ExtResource("18_kfvst")]
|
[node name="Pause Menu" parent="CanvasLayer" unique_id=948757040 instance=ExtResource("23_1ubqr")]
|
||||||
position = Vector2(456, -1008)
|
texture_filter = 1
|
||||||
|
script = ExtResource("24_w1uqt")
|
||||||
|
|
||||||
[node name="Light3" parent="." unique_id=71903995 instance=ExtResource("18_kfvst")]
|
[node name="CanvasLayer" parent="CanvasLayer/Pause Menu" index="0" unique_id=1173333484]
|
||||||
position = Vector2(1009, -971)
|
visible = false
|
||||||
|
|
||||||
[node name="Light4" parent="." unique_id=779029523 instance=ExtResource("18_kfvst")]
|
[node name="PauseBlur" parent="CanvasLayer/Pause Menu" index="1" unique_id=157031478]
|
||||||
position = Vector2(532, 169.99998)
|
visible = false
|
||||||
|
|
||||||
[connection signal="finished" from="AudioStreamPlayer" to="AudioStreamPlayer" method="_on_finished"]
|
[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="Player/CharacterBody2D/Light"]
|
||||||
[editable path="Light"]
|
[editable path="CanvasLayer/Pause Menu"]
|
||||||
[editable path="Light2"]
|
|
||||||
[editable path="Light3"]
|
|
||||||
[editable path="Light4"]
|
|
||||||
|
|||||||
@@ -1,33 +1,188 @@
|
|||||||
[gd_scene format=3 uid="uid://c4m8fwawvvkgn"]
|
[gd_scene format=3 uid="uid://c4m8fwawvvkgn"]
|
||||||
|
|
||||||
[ext_resource type="Texture2D" uid="uid://qh67enaialkt" path="res://sprites/background/demobackground.PNG" id="1_5a6er"]
|
[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="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"]
|
||||||
|
|
||||||
[node name="Node2D" type="Node2D" unique_id=1686720967]
|
[sub_resource type="Gradient" id="Gradient_q1jge"]
|
||||||
|
interpolation_color_space = 2
|
||||||
|
colors = PackedColorArray(0, 0, 0, 0, 0, 0, 0, 1)
|
||||||
|
|
||||||
[node name="CanvasLayer" type="CanvasLayer" parent="." unique_id=964065099]
|
[sub_resource type="GradientTexture2D" id="GradientTexture2D_t7qbk"]
|
||||||
|
gradient = SubResource("Gradient_q1jge")
|
||||||
|
fill_from = Vector2(1, 1)
|
||||||
|
fill_to = Vector2(0, 0)
|
||||||
|
|
||||||
[node name="ColorRect" type="ColorRect" parent="CanvasLayer" unique_id=113370318]
|
[sub_resource type="Gradient" id="Gradient_w05yp"]
|
||||||
offset_left = 13.0
|
|
||||||
offset_top = 14.0
|
|
||||||
offset_right = 266.0
|
|
||||||
offset_bottom = 63.0
|
|
||||||
color = Color(0, 0, 0, 1)
|
|
||||||
|
|
||||||
[node name="Label" type="Label" parent="CanvasLayer/ColorRect" unique_id=2085880928]
|
[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="Backgrounds" type="Control" parent="." unique_id=947513697]
|
||||||
|
z_index = -1
|
||||||
|
layout_mode = 3
|
||||||
|
anchors_preset = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
|
[node name="AnimatingBG" type="TextureRect" parent="Backgrounds" unique_id=2116447674]
|
||||||
|
z_index = -1
|
||||||
|
texture_filter = 1
|
||||||
layout_mode = 1
|
layout_mode = 1
|
||||||
anchors_preset = 15
|
anchors_preset = 15
|
||||||
anchor_right = 1.0
|
anchor_right = 1.0
|
||||||
anchor_bottom = 1.0
|
anchor_bottom = 1.0
|
||||||
grow_horizontal = 2
|
grow_horizontal = 2
|
||||||
grow_vertical = 2
|
grow_vertical = 2
|
||||||
theme_override_font_sizes/font_size = 32
|
size_flags_horizontal = 3
|
||||||
text = "WRPLAT_TITLE"
|
size_flags_vertical = 3
|
||||||
horizontal_alignment = 1
|
texture = ExtResource("2_bmtj5")
|
||||||
|
expand_mode = 1
|
||||||
|
script = ExtResource("1_57gb7")
|
||||||
|
Frames = ExtResource("2_57gb7")
|
||||||
|
Animation = &"default"
|
||||||
|
|
||||||
[node name="TextureRect" type="TextureRect" parent="CanvasLayer" unique_id=2116447674]
|
[node name="TextureRect" type="TextureRect" parent="Backgrounds" unique_id=413596339]
|
||||||
z_index = -1
|
layout_mode = 1
|
||||||
offset_left = -146.0
|
anchors_preset = 15
|
||||||
offset_right = 2056.0
|
anchor_right = 1.0
|
||||||
offset_bottom = 930.0
|
anchor_bottom = 1.0
|
||||||
scale = Vector2(0.695, 0.695)
|
grow_horizontal = 2
|
||||||
texture = ExtResource("1_5a6er")
|
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 = 15
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
mouse_filter = 2
|
||||||
|
|
||||||
|
[node name="Main Menu" parent="Foregrounds" unique_id=1796574784 node_paths=PackedStringArray("Background", "Cursor") instance=ExtResource("5_wdmo0")]
|
||||||
|
layout_mode = 1
|
||||||
|
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="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 = -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 = ">"
|
||||||
|
|
||||||
|
[node name="AudioStreamPlayer" type="AudioStreamPlayer" parent="." unique_id=1990529552]
|
||||||
|
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,3 +1,6 @@
|
|||||||
[gd_resource type="Theme" format=3 uid="uid://nerlsbdjd6qo"]
|
[gd_resource type="Theme" format=3 uid="uid://nerlsbdjd6qo"]
|
||||||
|
|
||||||
|
[ext_resource type="FontFile" uid="uid://bebqc8vupqggo" path="res://objects/fonts/HennyPenny-Regular.ttf" id="1_vvyi6"]
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
|
Label/fonts/font = ExtResource("1_vvyi6")
|
||||||
|
|||||||
@@ -10,11 +10,18 @@ config_version=5
|
|||||||
|
|
||||||
[application]
|
[application]
|
||||||
|
|
||||||
config/name="WrplatGodot"
|
config/name="Heartescent"
|
||||||
config/version="0.1.38"
|
config/version="0.1.38"
|
||||||
run/main_scene="uid://r2lb1ommvj6u"
|
run/main_scene="uid://c4m8fwawvvkgn"
|
||||||
config/features=PackedStringArray("4.6", "C#", "Forward Plus")
|
config/features=PackedStringArray("4.6", "C#", "Forward Plus")
|
||||||
config/icon="res://icon.svg"
|
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]
|
[dotnet]
|
||||||
|
|
||||||
@@ -25,6 +32,16 @@ project/assembly_name="WrplatGodot"
|
|||||||
version_control/plugin_name="GitPlugin"
|
version_control/plugin_name="GitPlugin"
|
||||||
version_control/autoload_on_startup=true
|
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]
|
[input]
|
||||||
|
|
||||||
move_right={
|
move_right={
|
||||||
@@ -103,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)
|
, 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]
|
[layer_names]
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,19 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="oggvorbisstr"
|
||||||
|
type="AudioStreamOggVorbis"
|
||||||
|
uid="uid://dkx1v6c7vv0iq"
|
||||||
|
path="res://.godot/imported/jump.ogg-d217a70c8ca2fe077e37d9f442c771d3.oggvorbisstr"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sounds/sfx/jump.ogg"
|
||||||
|
dest_files=["res://.godot/imported/jump.ogg-d217a70c8ca2fe077e37d9f442c771d3.oggvorbisstr"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
loop=false
|
||||||
|
loop_offset=0
|
||||||
|
bpm=0
|
||||||
|
beat_count=0
|
||||||
|
bar_beats=4
|
||||||
|
Before Width: | Height: | Size: 63 KiB After Width: | Height: | Size: 81 KiB |
|
Before Width: | Height: | Size: 97 KiB After Width: | Height: | Size: 124 KiB |
|
Before Width: | Height: | Size: 33 KiB After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 105 KiB |
@@ -0,0 +1,40 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://y8jx0okmf6bu"
|
||||||
|
path="res://.godot/imported/background_render.png-199bd886a494155f944e58587ac1ef59.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/background/background_render.png"
|
||||||
|
dest_files=["res://.godot/imported/background_render.png-199bd886a494155f944e58587ac1ef59.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/uastc_level=0
|
||||||
|
compress/rdo_quality_loss=0.0
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/channel_remap/red=0
|
||||||
|
process/channel_remap/green=1
|
||||||
|
process/channel_remap/blue=2
|
||||||
|
process/channel_remap/alpha=3
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/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: 16 KiB |
@@ -0,0 +1,40 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dwxvec8mp4mxb"
|
||||||
|
path="res://.godot/imported/floweryheart.png-f271e91dc6ee73f40010ef42332319d4.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/floweryheart.png"
|
||||||
|
dest_files=["res://.godot/imported/floweryheart.png-f271e91dc6ee73f40010ef42332319d4.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/uastc_level=0
|
||||||
|
compress/rdo_quality_loss=0.0
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/channel_remap/red=0
|
||||||
|
process/channel_remap/green=1
|
||||||
|
process/channel_remap/blue=2
|
||||||
|
process/channel_remap/alpha=3
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
@@ -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
|
||||||