Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7ba8c1fc6b | |||
| 2e152ec36b | |||
| a1e0c19ff7 | |||
| 8ad0f3ff65 | |||
| 2eaed32b8a | |||
| 2e48db1a60 | |||
| 562d0da079 | |||
| 6b9bb6da5a | |||
| bea9044aee | |||
| e252a94f46 | |||
| 62f61acc10 | |||
| 4e344cc02d | |||
| a0c4e305c5 | |||
| 3254d821c1 | |||
| 1813800db4 | |||
| 744c750638 | |||
| d549edbf15 | |||
| a4d73f8697 | |||
| a0a288eee2 | |||
| 6ee79020ef | |||
| 3ccf193a7c | |||
| be6cad911c | |||
| 77bc341f9b | |||
| b18283ed9d | |||
| eca85aa2d0 | |||
| b55d2d87c8 | |||
| 77d850f95e | |||
| ba2ce768e4 | |||
| fb29fead0d | |||
| 82ce008b05 | |||
| 08d75b55f0 | |||
| 4af85ded56 | |||
| 89dfa3f941 | |||
| 0e2edfddd7 | |||
| 584d26c562 | |||
| 2b4e967110 | |||
| 2642e2f63b | |||
| 764b20e022 | |||
| fc80c5bc8a | |||
| 57d532a474 | |||
| 5afad3faaa | |||
| ca304ab06e | |||
| 3288e37062 |
@@ -1,9 +1,9 @@
|
|||||||
name: Nightly Release
|
name: Release
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches:
|
branches: ['**'] # every commit on any branch -> nightly
|
||||||
- main
|
tags: ['**'] # any tag push -> versioned draft
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
|
|
||||||
# The default token is read-only; release/tag operations need write.
|
# The default token is read-only; release/tag operations need write.
|
||||||
@@ -11,71 +11,47 @@ permissions:
|
|||||||
contents: write
|
contents: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
# ---- Build each platform in parallel, upload outputs as artifacts ----
|
export_game:
|
||||||
build-nightly:
|
runs_on: Debian-x86
|
||||||
name: Build Nightly (${{ matrix.platform }})
|
permissions:
|
||||||
runs-on: Debian-x86
|
contents: write
|
||||||
strategy:
|
name: Export Game
|
||||||
matrix:
|
|
||||||
platform: [linux, windows, mac]
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- name: checkout
|
||||||
- name: Build
|
uses: actions/checkout@v5
|
||||||
id: build
|
- name: install .NET SDK
|
||||||
uses: felix-schindler/build-godot-action@v2.0.0
|
uses: actions/setup-dotnet@v4
|
||||||
with:
|
with:
|
||||||
name: wrplat
|
dotnet-version: '8.0.x'
|
||||||
preset: ${{ matrix.platform }}
|
- name: install 7zip
|
||||||
debugMode: "true"
|
run: apt-get update && apt-get install -y p7zip-full
|
||||||
|
- name: export game
|
||||||
- name: Upload build artifact
|
id: export
|
||||||
uses: actions/upload-artifact@v4
|
uses: firebelley/godot-export@v8.0.0
|
||||||
with:
|
with:
|
||||||
# Unique name per platform so the matrix jobs don't collide
|
godot_executable_download_url: https://godot-releases.nbg1.your-objectstorage.com/4.6.3-stable/Godot_v4.6.3-stable_mono_linux_x86_64.zip
|
||||||
name: build-${{ matrix.platform }}
|
godot_export_templates_download_url: https://godot-releases.nbg1.your-objectstorage.com/4.6.3-stable/Godot_v4.6.3-stable_mono_export_templates.tpz
|
||||||
path: ${{ github.workspace }}/${{ steps.build.outputs.build }}
|
relative_project_path: ./
|
||||||
if-no-files-found: error
|
archive_output: true
|
||||||
|
# cache: true # doesn't work on gitea
|
||||||
|
|
||||||
# ---- Runs once, only after all three builds succeed ----
|
# --- not tagged: rolling nightly, updates the existing release ---
|
||||||
release-nightly:
|
- name: create nightly release
|
||||||
name: Publish Nightly Release
|
if: ${{ !startsWith(github.ref, 'refs/tags/') }}
|
||||||
needs: build-nightly
|
uses: akkuman/gitea-release-action@v1
|
||||||
runs-on: Debian-x86
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Download all build artifacts
|
|
||||||
uses: actions/download-artifact@v4
|
|
||||||
with:
|
|
||||||
# No 'name' → grabs every artifact, each into dist/<artifact-name>/
|
|
||||||
path: dist
|
|
||||||
|
|
||||||
- name: Clean up old release & move tag
|
|
||||||
run: |
|
|
||||||
# Find and delete the old Gitea release payload via API
|
|
||||||
RELEASE_ID=$(curl -s -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
|
|
||||||
"${{ github.api_url }}/repos/${{ github.repository }}/releases/tags/nightly" | jq -r '.id')
|
|
||||||
if [ "$RELEASE_ID" != "null" ] && [ -n "$RELEASE_ID" ]; then
|
|
||||||
echo "Deleting old release ID: $RELEASE_ID"
|
|
||||||
curl -s -X DELETE -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \
|
|
||||||
"${{ github.api_url }}/repos/${{ github.repository }}/releases/$RELEASE_ID"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# Force the 'nightly' tag onto this commit and push it
|
|
||||||
git tag -f nightly ${{ github.sha }}
|
|
||||||
git push -f origin nightly
|
|
||||||
|
|
||||||
- name: Publish release
|
|
||||||
uses: softprops/action-gh-release@v2
|
|
||||||
with:
|
with:
|
||||||
tag_name: nightly
|
tag_name: nightly
|
||||||
target_commitish: ${{ github.sha }}
|
target_commitish: ${{ github.sha }}
|
||||||
name: "Nightly Development Build"
|
name: Latest Nightly Build
|
||||||
body: |
|
|
||||||
Automated rolling nightly build from the latest commit on `main`.
|
|
||||||
|
|
||||||
**Commit:** ${{ github.sha }}
|
|
||||||
prerelease: true
|
prerelease: true
|
||||||
files: dist/**/*
|
files: ${{ steps.export.outputs.archive_directory }}/*
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
# --- tagged with a version: versioned draft release ---
|
||||||
|
- name: create versioned release draft
|
||||||
|
if: ${{ startsWith(github.ref, 'refs/tags/') }}
|
||||||
|
uses: akkuman/gitea-release-action@v1
|
||||||
|
with:
|
||||||
|
tag_name: ${{ github.ref_name }}
|
||||||
|
name: ${{ github.ref_name }}
|
||||||
|
draft: true
|
||||||
|
files: ${{ steps.export.outputs.archive_directory }}/*
|
||||||
@@ -1,3 +1,10 @@
|
|||||||
# Godot 4+ specific ignores
|
# Godot 4+ specific ignores
|
||||||
.godot/
|
.godot/
|
||||||
/android/
|
/android/
|
||||||
|
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/**/*
|
||||||
@@ -3,5 +3,10 @@
|
|||||||
<TargetFramework>net8.0</TargetFramework>
|
<TargetFramework>net8.0</TargetFramework>
|
||||||
<TargetFramework Condition=" '$(GodotTargetPlatform)' == 'android' ">net9.0</TargetFramework>
|
<TargetFramework Condition=" '$(GodotTargetPlatform)' == 'android' ">net9.0</TargetFramework>
|
||||||
<EnableDynamicLoading>true</EnableDynamicLoading>
|
<EnableDynamicLoading>true</EnableDynamicLoading>
|
||||||
|
<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,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright (c) 2016-2023 The Godot Engine community
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
[configuration]
|
||||||
|
|
||||||
|
entry_symbol = "git_plugin_init"
|
||||||
|
compatibility_minimum = "4.2.0"
|
||||||
|
|
||||||
|
[libraries]
|
||||||
|
|
||||||
|
linux.editor.x86_64 = "linux/libgit_plugin.linux.editor.x86_64.so"
|
||||||
|
macos.editor = "macos/libgit_plugin.macos.editor.universal.dylib"
|
||||||
|
windows.editor.x86_64 = "windows/libgit_plugin.windows.editor.x86_64.dll"
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
uid://cunr88y1kycok
|
||||||
@@ -0,0 +1,93 @@
|
|||||||
|
Copyright 2008-2021 The Fleur De Leah Project Authors (https://github.com/googlefonts/fleurdeleah)
|
||||||
|
|
||||||
|
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||||
|
This license is copied below, and is also available with a FAQ at:
|
||||||
|
https://openfontlicense.org
|
||||||
|
|
||||||
|
|
||||||
|
-----------------------------------------------------------
|
||||||
|
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||||
|
-----------------------------------------------------------
|
||||||
|
|
||||||
|
PREAMBLE
|
||||||
|
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||||
|
development of collaborative font projects, to support the font creation
|
||||||
|
efforts of academic and linguistic communities, and to provide a free and
|
||||||
|
open framework in which fonts may be shared and improved in partnership
|
||||||
|
with others.
|
||||||
|
|
||||||
|
The OFL allows the licensed fonts to be used, studied, modified and
|
||||||
|
redistributed freely as long as they are not sold by themselves. The
|
||||||
|
fonts, including any derivative works, can be bundled, embedded,
|
||||||
|
redistributed and/or sold with any software provided that any reserved
|
||||||
|
names are not used by derivative works. The fonts and derivatives,
|
||||||
|
however, cannot be released under any other type of license. The
|
||||||
|
requirement for fonts to remain under this license does not apply
|
||||||
|
to any document created using the fonts or their derivatives.
|
||||||
|
|
||||||
|
DEFINITIONS
|
||||||
|
"Font Software" refers to the set of files released by the Copyright
|
||||||
|
Holder(s) under this license and clearly marked as such. This may
|
||||||
|
include source files, build scripts and documentation.
|
||||||
|
|
||||||
|
"Reserved Font Name" refers to any names specified as such after the
|
||||||
|
copyright statement(s).
|
||||||
|
|
||||||
|
"Original Version" refers to the collection of Font Software components as
|
||||||
|
distributed by the Copyright Holder(s).
|
||||||
|
|
||||||
|
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||||
|
or substituting -- in part or in whole -- any of the components of the
|
||||||
|
Original Version, by changing formats or by porting the Font Software to a
|
||||||
|
new environment.
|
||||||
|
|
||||||
|
"Author" refers to any designer, engineer, programmer, technical
|
||||||
|
writer or other person who contributed to the Font Software.
|
||||||
|
|
||||||
|
PERMISSION & CONDITIONS
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||||
|
redistribute, and sell modified and unmodified copies of the Font
|
||||||
|
Software, subject to the following conditions:
|
||||||
|
|
||||||
|
1) Neither the Font Software nor any of its individual components,
|
||||||
|
in Original or Modified Versions, may be sold by itself.
|
||||||
|
|
||||||
|
2) Original or Modified Versions of the Font Software may be bundled,
|
||||||
|
redistributed and/or sold with any software, provided that each copy
|
||||||
|
contains the above copyright notice and this license. These can be
|
||||||
|
included either as stand-alone text files, human-readable headers or
|
||||||
|
in the appropriate machine-readable metadata fields within text or
|
||||||
|
binary files as long as those fields can be easily viewed by the user.
|
||||||
|
|
||||||
|
3) No Modified Version of the Font Software may use the Reserved Font
|
||||||
|
Name(s) unless explicit written permission is granted by the corresponding
|
||||||
|
Copyright Holder. This restriction only applies to the primary font name as
|
||||||
|
presented to the users.
|
||||||
|
|
||||||
|
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||||
|
Software shall not be used to promote, endorse or advertise any
|
||||||
|
Modified Version, except to acknowledge the contribution(s) of the
|
||||||
|
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||||
|
permission.
|
||||||
|
|
||||||
|
5) The Font Software, modified or unmodified, in part or in whole,
|
||||||
|
must be distributed entirely under this license, and must not be
|
||||||
|
distributed under any other license. The requirement for fonts to
|
||||||
|
remain under this license does not apply to any document created
|
||||||
|
using the Font Software.
|
||||||
|
|
||||||
|
TERMINATION
|
||||||
|
This license becomes null and void if any of the above conditions are
|
||||||
|
not met.
|
||||||
|
|
||||||
|
DISCLAIMER
|
||||||
|
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||||
|
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||||
|
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||||
|
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||||
|
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||||
@@ -0,0 +1,94 @@
|
|||||||
|
Copyright (c) 2011, BrownFox (gayaneh.b@gmail.com|www.brownfox.org),
|
||||||
|
with Reserved Font Names "Henny Penny"
|
||||||
|
|
||||||
|
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||||
|
This license is copied below, and is also available with a FAQ at:
|
||||||
|
https://openfontlicense.org
|
||||||
|
|
||||||
|
|
||||||
|
-----------------------------------------------------------
|
||||||
|
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||||
|
-----------------------------------------------------------
|
||||||
|
|
||||||
|
PREAMBLE
|
||||||
|
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||||
|
development of collaborative font projects, to support the font creation
|
||||||
|
efforts of academic and linguistic communities, and to provide a free and
|
||||||
|
open framework in which fonts may be shared and improved in partnership
|
||||||
|
with others.
|
||||||
|
|
||||||
|
The OFL allows the licensed fonts to be used, studied, modified and
|
||||||
|
redistributed freely as long as they are not sold by themselves. The
|
||||||
|
fonts, including any derivative works, can be bundled, embedded,
|
||||||
|
redistributed and/or sold with any software provided that any reserved
|
||||||
|
names are not used by derivative works. The fonts and derivatives,
|
||||||
|
however, cannot be released under any other type of license. The
|
||||||
|
requirement for fonts to remain under this license does not apply
|
||||||
|
to any document created using the fonts or their derivatives.
|
||||||
|
|
||||||
|
DEFINITIONS
|
||||||
|
"Font Software" refers to the set of files released by the Copyright
|
||||||
|
Holder(s) under this license and clearly marked as such. This may
|
||||||
|
include source files, build scripts and documentation.
|
||||||
|
|
||||||
|
"Reserved Font Name" refers to any names specified as such after the
|
||||||
|
copyright statement(s).
|
||||||
|
|
||||||
|
"Original Version" refers to the collection of Font Software components as
|
||||||
|
distributed by the Copyright Holder(s).
|
||||||
|
|
||||||
|
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||||
|
or substituting -- in part or in whole -- any of the components of the
|
||||||
|
Original Version, by changing formats or by porting the Font Software to a
|
||||||
|
new environment.
|
||||||
|
|
||||||
|
"Author" refers to any designer, engineer, programmer, technical
|
||||||
|
writer or other person who contributed to the Font Software.
|
||||||
|
|
||||||
|
PERMISSION & CONDITIONS
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining
|
||||||
|
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||||
|
redistribute, and sell modified and unmodified copies of the Font
|
||||||
|
Software, subject to the following conditions:
|
||||||
|
|
||||||
|
1) Neither the Font Software nor any of its individual components,
|
||||||
|
in Original or Modified Versions, may be sold by itself.
|
||||||
|
|
||||||
|
2) Original or Modified Versions of the Font Software may be bundled,
|
||||||
|
redistributed and/or sold with any software, provided that each copy
|
||||||
|
contains the above copyright notice and this license. These can be
|
||||||
|
included either as stand-alone text files, human-readable headers or
|
||||||
|
in the appropriate machine-readable metadata fields within text or
|
||||||
|
binary files as long as those fields can be easily viewed by the user.
|
||||||
|
|
||||||
|
3) No Modified Version of the Font Software may use the Reserved Font
|
||||||
|
Name(s) unless explicit written permission is granted by the corresponding
|
||||||
|
Copyright Holder. This restriction only applies to the primary font name as
|
||||||
|
presented to the users.
|
||||||
|
|
||||||
|
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||||
|
Software shall not be used to promote, endorse or advertise any
|
||||||
|
Modified Version, except to acknowledge the contribution(s) of the
|
||||||
|
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||||
|
permission.
|
||||||
|
|
||||||
|
5) The Font Software, modified or unmodified, in part or in whole,
|
||||||
|
must be distributed entirely under this license, and must not be
|
||||||
|
distributed under any other license. The requirement for fonts to
|
||||||
|
remain under this license does not apply to any document created
|
||||||
|
using the Font Software.
|
||||||
|
|
||||||
|
TERMINATION
|
||||||
|
This license becomes null and void if any of the above conditions are
|
||||||
|
not met.
|
||||||
|
|
||||||
|
DISCLAIMER
|
||||||
|
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||||
|
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||||
|
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||||
|
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||||
|
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||||
|
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||||
|
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||||
|
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||||
|
OTHER DEALINGS IN THE FONT SOFTWARE.
|
||||||
@@ -0,0 +1,387 @@
|
|||||||
|
[preset.0]
|
||||||
|
|
||||||
|
name="Win64D"
|
||||||
|
platform="Windows Desktop"
|
||||||
|
runnable=true
|
||||||
|
dedicated_server=false
|
||||||
|
custom_features=""
|
||||||
|
export_filter="all_resources"
|
||||||
|
include_filter=""
|
||||||
|
exclude_filter=""
|
||||||
|
export_path="builds/win64d/wrplat_win64d.exe"
|
||||||
|
patches=PackedStringArray()
|
||||||
|
patch_delta_encoding=false
|
||||||
|
patch_delta_compression_level_zstd=19
|
||||||
|
patch_delta_min_reduction=0.1
|
||||||
|
patch_delta_include_filters="*"
|
||||||
|
patch_delta_exclude_filters=""
|
||||||
|
encryption_include_filters=""
|
||||||
|
encryption_exclude_filters=""
|
||||||
|
seed=0
|
||||||
|
encrypt_pck=false
|
||||||
|
encrypt_directory=false
|
||||||
|
script_export_mode=2
|
||||||
|
|
||||||
|
[preset.0.options]
|
||||||
|
|
||||||
|
custom_template/debug=""
|
||||||
|
custom_template/release=""
|
||||||
|
debug/export_console_wrapper=1
|
||||||
|
binary_format/embed_pck=true
|
||||||
|
texture_format/s3tc_bptc=true
|
||||||
|
texture_format/etc2_astc=false
|
||||||
|
shader_baker/enabled=true
|
||||||
|
binary_format/architecture="x86_64"
|
||||||
|
codesign/enable=false
|
||||||
|
codesign/timestamp=true
|
||||||
|
codesign/timestamp_server_url=""
|
||||||
|
codesign/digest_algorithm=1
|
||||||
|
codesign/description=""
|
||||||
|
codesign/custom_options=PackedStringArray()
|
||||||
|
application/modify_resources=true
|
||||||
|
application/icon=""
|
||||||
|
application/console_wrapper_icon=""
|
||||||
|
application/icon_interpolation=4
|
||||||
|
application/file_version=""
|
||||||
|
application/product_version=""
|
||||||
|
application/company_name=""
|
||||||
|
application/product_name="Wrplat"
|
||||||
|
application/file_description=""
|
||||||
|
application/copyright=""
|
||||||
|
application/trademarks=""
|
||||||
|
application/export_angle=0
|
||||||
|
application/export_d3d12=0
|
||||||
|
application/d3d12_agility_sdk_multiarch=true
|
||||||
|
ssh_remote_deploy/enabled=false
|
||||||
|
ssh_remote_deploy/host="user@host_ip"
|
||||||
|
ssh_remote_deploy/port="22"
|
||||||
|
ssh_remote_deploy/extra_args_ssh=""
|
||||||
|
ssh_remote_deploy/extra_args_scp=""
|
||||||
|
ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
|
||||||
|
$action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
|
||||||
|
$trigger = New-ScheduledTaskTrigger -Once -At 00:00
|
||||||
|
$settings = New-ScheduledTaskSettingsSet -AllowStartIfOnBatteries -DontStopIfGoingOnBatteries
|
||||||
|
$task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
|
||||||
|
Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
|
||||||
|
Start-ScheduledTask -TaskName godot_remote_debug
|
||||||
|
while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
|
||||||
|
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
|
||||||
|
ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
|
||||||
|
Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
|
||||||
|
Remove-Item -Recurse -Force '{temp_dir}'"
|
||||||
|
dotnet/include_scripts_content=false
|
||||||
|
dotnet/include_debug_symbols=true
|
||||||
|
dotnet/embed_build_outputs=false
|
||||||
|
|
||||||
|
[preset.1]
|
||||||
|
|
||||||
|
name="macOS"
|
||||||
|
platform="macOS"
|
||||||
|
runnable=true
|
||||||
|
dedicated_server=false
|
||||||
|
custom_features=""
|
||||||
|
export_filter="all_resources"
|
||||||
|
include_filter=""
|
||||||
|
exclude_filter=""
|
||||||
|
export_path="builds/osx64d/wrplat_osx64d.app"
|
||||||
|
patches=PackedStringArray()
|
||||||
|
patch_delta_encoding=false
|
||||||
|
patch_delta_compression_level_zstd=19
|
||||||
|
patch_delta_min_reduction=0.1
|
||||||
|
patch_delta_include_filters="*"
|
||||||
|
patch_delta_exclude_filters=""
|
||||||
|
encryption_include_filters=""
|
||||||
|
encryption_exclude_filters=""
|
||||||
|
seed=0
|
||||||
|
encrypt_pck=false
|
||||||
|
encrypt_directory=false
|
||||||
|
script_export_mode=2
|
||||||
|
|
||||||
|
[preset.1.options]
|
||||||
|
|
||||||
|
export/distribution_type=1
|
||||||
|
binary_format/architecture="universal"
|
||||||
|
custom_template/debug=""
|
||||||
|
custom_template/release=""
|
||||||
|
debug/export_console_wrapper=1
|
||||||
|
application/liquid_glass_icon=""
|
||||||
|
application/icon=""
|
||||||
|
application/icon_interpolation=4
|
||||||
|
application/bundle_identifier="com.meticulous.wrplat"
|
||||||
|
application/signature=""
|
||||||
|
application/app_category="Games"
|
||||||
|
application/short_version=""
|
||||||
|
application/version=""
|
||||||
|
application/copyright=""
|
||||||
|
application/copyright_localized={}
|
||||||
|
application/min_macos_version_x86_64="10.12"
|
||||||
|
application/min_macos_version_arm64="11.00"
|
||||||
|
application/export_angle=0
|
||||||
|
display/high_res=true
|
||||||
|
shader_baker/enabled=true
|
||||||
|
application/additional_plist_content=""
|
||||||
|
xcode/platform_build="14C18"
|
||||||
|
xcode/sdk_version="13.1"
|
||||||
|
xcode/sdk_build="22C55"
|
||||||
|
xcode/sdk_name="macosx13.1"
|
||||||
|
xcode/xcode_version="1420"
|
||||||
|
xcode/xcode_build="14C18"
|
||||||
|
codesign/codesign=1
|
||||||
|
codesign/installer_identity=""
|
||||||
|
codesign/apple_team_id=""
|
||||||
|
codesign/identity=""
|
||||||
|
codesign/entitlements/custom_file=""
|
||||||
|
codesign/entitlements/allow_jit_code_execution=false
|
||||||
|
codesign/entitlements/allow_unsigned_executable_memory=false
|
||||||
|
codesign/entitlements/allow_dyld_environment_variables=false
|
||||||
|
codesign/entitlements/disable_library_validation=false
|
||||||
|
codesign/entitlements/audio_input=false
|
||||||
|
codesign/entitlements/camera=false
|
||||||
|
codesign/entitlements/location=false
|
||||||
|
codesign/entitlements/address_book=false
|
||||||
|
codesign/entitlements/calendars=false
|
||||||
|
codesign/entitlements/photos_library=false
|
||||||
|
codesign/entitlements/apple_events=false
|
||||||
|
codesign/entitlements/debugging=false
|
||||||
|
codesign/entitlements/app_sandbox/enabled=false
|
||||||
|
codesign/entitlements/app_sandbox/network_server=false
|
||||||
|
codesign/entitlements/app_sandbox/network_client=false
|
||||||
|
codesign/entitlements/app_sandbox/device_usb=false
|
||||||
|
codesign/entitlements/app_sandbox/device_bluetooth=false
|
||||||
|
codesign/entitlements/app_sandbox/files_downloads=0
|
||||||
|
codesign/entitlements/app_sandbox/files_pictures=0
|
||||||
|
codesign/entitlements/app_sandbox/files_music=0
|
||||||
|
codesign/entitlements/app_sandbox/files_movies=0
|
||||||
|
codesign/entitlements/app_sandbox/files_user_selected=0
|
||||||
|
codesign/entitlements/app_sandbox/helper_executables=[]
|
||||||
|
codesign/entitlements/additional=""
|
||||||
|
codesign/custom_options=PackedStringArray()
|
||||||
|
notarization/notarization=0
|
||||||
|
privacy/microphone_usage_description=""
|
||||||
|
privacy/microphone_usage_description_localized={}
|
||||||
|
privacy/camera_usage_description=""
|
||||||
|
privacy/camera_usage_description_localized={}
|
||||||
|
privacy/location_usage_description=""
|
||||||
|
privacy/location_usage_description_localized={}
|
||||||
|
privacy/address_book_usage_description=""
|
||||||
|
privacy/address_book_usage_description_localized={}
|
||||||
|
privacy/calendar_usage_description=""
|
||||||
|
privacy/calendar_usage_description_localized={}
|
||||||
|
privacy/photos_library_usage_description=""
|
||||||
|
privacy/photos_library_usage_description_localized={}
|
||||||
|
privacy/desktop_folder_usage_description=""
|
||||||
|
privacy/desktop_folder_usage_description_localized={}
|
||||||
|
privacy/documents_folder_usage_description=""
|
||||||
|
privacy/documents_folder_usage_description_localized={}
|
||||||
|
privacy/downloads_folder_usage_description=""
|
||||||
|
privacy/downloads_folder_usage_description_localized={}
|
||||||
|
privacy/network_volumes_usage_description=""
|
||||||
|
privacy/network_volumes_usage_description_localized={}
|
||||||
|
privacy/removable_volumes_usage_description=""
|
||||||
|
privacy/removable_volumes_usage_description_localized={}
|
||||||
|
privacy/tracking_enabled=false
|
||||||
|
privacy/tracking_domains=PackedStringArray()
|
||||||
|
privacy/collected_data/name/collected=false
|
||||||
|
privacy/collected_data/name/linked_to_user=false
|
||||||
|
privacy/collected_data/name/used_for_tracking=false
|
||||||
|
privacy/collected_data/name/collection_purposes=0
|
||||||
|
privacy/collected_data/email_address/collected=false
|
||||||
|
privacy/collected_data/email_address/linked_to_user=false
|
||||||
|
privacy/collected_data/email_address/used_for_tracking=false
|
||||||
|
privacy/collected_data/email_address/collection_purposes=0
|
||||||
|
privacy/collected_data/phone_number/collected=false
|
||||||
|
privacy/collected_data/phone_number/linked_to_user=false
|
||||||
|
privacy/collected_data/phone_number/used_for_tracking=false
|
||||||
|
privacy/collected_data/phone_number/collection_purposes=0
|
||||||
|
privacy/collected_data/physical_address/collected=false
|
||||||
|
privacy/collected_data/physical_address/linked_to_user=false
|
||||||
|
privacy/collected_data/physical_address/used_for_tracking=false
|
||||||
|
privacy/collected_data/physical_address/collection_purposes=0
|
||||||
|
privacy/collected_data/other_contact_info/collected=false
|
||||||
|
privacy/collected_data/other_contact_info/linked_to_user=false
|
||||||
|
privacy/collected_data/other_contact_info/used_for_tracking=false
|
||||||
|
privacy/collected_data/other_contact_info/collection_purposes=0
|
||||||
|
privacy/collected_data/health/collected=false
|
||||||
|
privacy/collected_data/health/linked_to_user=false
|
||||||
|
privacy/collected_data/health/used_for_tracking=false
|
||||||
|
privacy/collected_data/health/collection_purposes=0
|
||||||
|
privacy/collected_data/fitness/collected=false
|
||||||
|
privacy/collected_data/fitness/linked_to_user=false
|
||||||
|
privacy/collected_data/fitness/used_for_tracking=false
|
||||||
|
privacy/collected_data/fitness/collection_purposes=0
|
||||||
|
privacy/collected_data/payment_info/collected=false
|
||||||
|
privacy/collected_data/payment_info/linked_to_user=false
|
||||||
|
privacy/collected_data/payment_info/used_for_tracking=false
|
||||||
|
privacy/collected_data/payment_info/collection_purposes=0
|
||||||
|
privacy/collected_data/credit_info/collected=false
|
||||||
|
privacy/collected_data/credit_info/linked_to_user=false
|
||||||
|
privacy/collected_data/credit_info/used_for_tracking=false
|
||||||
|
privacy/collected_data/credit_info/collection_purposes=0
|
||||||
|
privacy/collected_data/other_financial_info/collected=false
|
||||||
|
privacy/collected_data/other_financial_info/linked_to_user=false
|
||||||
|
privacy/collected_data/other_financial_info/used_for_tracking=false
|
||||||
|
privacy/collected_data/other_financial_info/collection_purposes=0
|
||||||
|
privacy/collected_data/precise_location/collected=false
|
||||||
|
privacy/collected_data/precise_location/linked_to_user=false
|
||||||
|
privacy/collected_data/precise_location/used_for_tracking=false
|
||||||
|
privacy/collected_data/precise_location/collection_purposes=0
|
||||||
|
privacy/collected_data/coarse_location/collected=false
|
||||||
|
privacy/collected_data/coarse_location/linked_to_user=false
|
||||||
|
privacy/collected_data/coarse_location/used_for_tracking=false
|
||||||
|
privacy/collected_data/coarse_location/collection_purposes=0
|
||||||
|
privacy/collected_data/sensitive_info/collected=false
|
||||||
|
privacy/collected_data/sensitive_info/linked_to_user=false
|
||||||
|
privacy/collected_data/sensitive_info/used_for_tracking=false
|
||||||
|
privacy/collected_data/sensitive_info/collection_purposes=0
|
||||||
|
privacy/collected_data/contacts/collected=false
|
||||||
|
privacy/collected_data/contacts/linked_to_user=false
|
||||||
|
privacy/collected_data/contacts/used_for_tracking=false
|
||||||
|
privacy/collected_data/contacts/collection_purposes=0
|
||||||
|
privacy/collected_data/emails_or_text_messages/collected=false
|
||||||
|
privacy/collected_data/emails_or_text_messages/linked_to_user=false
|
||||||
|
privacy/collected_data/emails_or_text_messages/used_for_tracking=false
|
||||||
|
privacy/collected_data/emails_or_text_messages/collection_purposes=0
|
||||||
|
privacy/collected_data/photos_or_videos/collected=false
|
||||||
|
privacy/collected_data/photos_or_videos/linked_to_user=false
|
||||||
|
privacy/collected_data/photos_or_videos/used_for_tracking=false
|
||||||
|
privacy/collected_data/photos_or_videos/collection_purposes=0
|
||||||
|
privacy/collected_data/audio_data/collected=false
|
||||||
|
privacy/collected_data/audio_data/linked_to_user=false
|
||||||
|
privacy/collected_data/audio_data/used_for_tracking=false
|
||||||
|
privacy/collected_data/audio_data/collection_purposes=0
|
||||||
|
privacy/collected_data/gameplay_content/collected=false
|
||||||
|
privacy/collected_data/gameplay_content/linked_to_user=false
|
||||||
|
privacy/collected_data/gameplay_content/used_for_tracking=false
|
||||||
|
privacy/collected_data/gameplay_content/collection_purposes=0
|
||||||
|
privacy/collected_data/customer_support/collected=false
|
||||||
|
privacy/collected_data/customer_support/linked_to_user=false
|
||||||
|
privacy/collected_data/customer_support/used_for_tracking=false
|
||||||
|
privacy/collected_data/customer_support/collection_purposes=0
|
||||||
|
privacy/collected_data/other_user_content/collected=false
|
||||||
|
privacy/collected_data/other_user_content/linked_to_user=false
|
||||||
|
privacy/collected_data/other_user_content/used_for_tracking=false
|
||||||
|
privacy/collected_data/other_user_content/collection_purposes=0
|
||||||
|
privacy/collected_data/browsing_history/collected=false
|
||||||
|
privacy/collected_data/browsing_history/linked_to_user=false
|
||||||
|
privacy/collected_data/browsing_history/used_for_tracking=false
|
||||||
|
privacy/collected_data/browsing_history/collection_purposes=0
|
||||||
|
privacy/collected_data/search_history/collected=false
|
||||||
|
privacy/collected_data/search_history/linked_to_user=false
|
||||||
|
privacy/collected_data/search_history/used_for_tracking=false
|
||||||
|
privacy/collected_data/search_history/collection_purposes=0
|
||||||
|
privacy/collected_data/user_id/collected=false
|
||||||
|
privacy/collected_data/user_id/linked_to_user=false
|
||||||
|
privacy/collected_data/user_id/used_for_tracking=false
|
||||||
|
privacy/collected_data/user_id/collection_purposes=0
|
||||||
|
privacy/collected_data/device_id/collected=false
|
||||||
|
privacy/collected_data/device_id/linked_to_user=false
|
||||||
|
privacy/collected_data/device_id/used_for_tracking=false
|
||||||
|
privacy/collected_data/device_id/collection_purposes=0
|
||||||
|
privacy/collected_data/purchase_history/collected=false
|
||||||
|
privacy/collected_data/purchase_history/linked_to_user=false
|
||||||
|
privacy/collected_data/purchase_history/used_for_tracking=false
|
||||||
|
privacy/collected_data/purchase_history/collection_purposes=0
|
||||||
|
privacy/collected_data/product_interaction/collected=false
|
||||||
|
privacy/collected_data/product_interaction/linked_to_user=false
|
||||||
|
privacy/collected_data/product_interaction/used_for_tracking=false
|
||||||
|
privacy/collected_data/product_interaction/collection_purposes=0
|
||||||
|
privacy/collected_data/advertising_data/collected=false
|
||||||
|
privacy/collected_data/advertising_data/linked_to_user=false
|
||||||
|
privacy/collected_data/advertising_data/used_for_tracking=false
|
||||||
|
privacy/collected_data/advertising_data/collection_purposes=0
|
||||||
|
privacy/collected_data/other_usage_data/collected=false
|
||||||
|
privacy/collected_data/other_usage_data/linked_to_user=false
|
||||||
|
privacy/collected_data/other_usage_data/used_for_tracking=false
|
||||||
|
privacy/collected_data/other_usage_data/collection_purposes=0
|
||||||
|
privacy/collected_data/crash_data/collected=false
|
||||||
|
privacy/collected_data/crash_data/linked_to_user=false
|
||||||
|
privacy/collected_data/crash_data/used_for_tracking=false
|
||||||
|
privacy/collected_data/crash_data/collection_purposes=0
|
||||||
|
privacy/collected_data/performance_data/collected=false
|
||||||
|
privacy/collected_data/performance_data/linked_to_user=false
|
||||||
|
privacy/collected_data/performance_data/used_for_tracking=false
|
||||||
|
privacy/collected_data/performance_data/collection_purposes=0
|
||||||
|
privacy/collected_data/other_diagnostic_data/collected=false
|
||||||
|
privacy/collected_data/other_diagnostic_data/linked_to_user=false
|
||||||
|
privacy/collected_data/other_diagnostic_data/used_for_tracking=false
|
||||||
|
privacy/collected_data/other_diagnostic_data/collection_purposes=0
|
||||||
|
privacy/collected_data/environment_scanning/collected=false
|
||||||
|
privacy/collected_data/environment_scanning/linked_to_user=false
|
||||||
|
privacy/collected_data/environment_scanning/used_for_tracking=false
|
||||||
|
privacy/collected_data/environment_scanning/collection_purposes=0
|
||||||
|
privacy/collected_data/hands/collected=false
|
||||||
|
privacy/collected_data/hands/linked_to_user=false
|
||||||
|
privacy/collected_data/hands/used_for_tracking=false
|
||||||
|
privacy/collected_data/hands/collection_purposes=0
|
||||||
|
privacy/collected_data/head/collected=false
|
||||||
|
privacy/collected_data/head/linked_to_user=false
|
||||||
|
privacy/collected_data/head/used_for_tracking=false
|
||||||
|
privacy/collected_data/head/collection_purposes=0
|
||||||
|
privacy/collected_data/other_data_types/collected=false
|
||||||
|
privacy/collected_data/other_data_types/linked_to_user=false
|
||||||
|
privacy/collected_data/other_data_types/used_for_tracking=false
|
||||||
|
privacy/collected_data/other_data_types/collection_purposes=0
|
||||||
|
ssh_remote_deploy/enabled=false
|
||||||
|
ssh_remote_deploy/host="user@host_ip"
|
||||||
|
ssh_remote_deploy/port="22"
|
||||||
|
ssh_remote_deploy/extra_args_ssh=""
|
||||||
|
ssh_remote_deploy/extra_args_scp=""
|
||||||
|
ssh_remote_deploy/run_script="#!/usr/bin/env bash
|
||||||
|
unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\"
|
||||||
|
open \"{temp_dir}/{exe_name}.app\" --args {cmd_args}"
|
||||||
|
ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash
|
||||||
|
pkill -x -f \"{temp_dir}/{exe_name}.app/Contents/MacOS/{exe_name} {cmd_args}\"
|
||||||
|
rm -rf \"{temp_dir}\""
|
||||||
|
dotnet/include_scripts_content=false
|
||||||
|
dotnet/include_debug_symbols=true
|
||||||
|
dotnet/embed_build_outputs=false
|
||||||
|
|
||||||
|
[preset.2]
|
||||||
|
|
||||||
|
name="Linux"
|
||||||
|
platform="Linux"
|
||||||
|
runnable=true
|
||||||
|
dedicated_server=false
|
||||||
|
custom_features=""
|
||||||
|
export_filter="all_resources"
|
||||||
|
include_filter=""
|
||||||
|
exclude_filter=""
|
||||||
|
export_path="builds/linux64d/wrplat_linux64d.x86_64"
|
||||||
|
patches=PackedStringArray()
|
||||||
|
patch_delta_encoding=false
|
||||||
|
patch_delta_compression_level_zstd=19
|
||||||
|
patch_delta_min_reduction=0.1
|
||||||
|
patch_delta_include_filters="*"
|
||||||
|
patch_delta_exclude_filters=""
|
||||||
|
encryption_include_filters=""
|
||||||
|
encryption_exclude_filters=""
|
||||||
|
seed=0
|
||||||
|
encrypt_pck=false
|
||||||
|
encrypt_directory=false
|
||||||
|
script_export_mode=2
|
||||||
|
|
||||||
|
[preset.2.options]
|
||||||
|
|
||||||
|
custom_template/debug=""
|
||||||
|
custom_template/release=""
|
||||||
|
debug/export_console_wrapper=1
|
||||||
|
binary_format/embed_pck=true
|
||||||
|
texture_format/s3tc_bptc=true
|
||||||
|
texture_format/etc2_astc=false
|
||||||
|
shader_baker/enabled=false
|
||||||
|
binary_format/architecture="x86_64"
|
||||||
|
ssh_remote_deploy/enabled=false
|
||||||
|
ssh_remote_deploy/host="user@host_ip"
|
||||||
|
ssh_remote_deploy/port="22"
|
||||||
|
ssh_remote_deploy/extra_args_ssh=""
|
||||||
|
ssh_remote_deploy/extra_args_scp=""
|
||||||
|
ssh_remote_deploy/run_script="#!/usr/bin/env bash
|
||||||
|
export DISPLAY=:0
|
||||||
|
unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\"
|
||||||
|
\"{temp_dir}/{exe_name}\" {cmd_args}"
|
||||||
|
ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash
|
||||||
|
pkill -x -f \"{temp_dir}/{exe_name} {cmd_args}\"
|
||||||
|
rm -rf \"{temp_dir}\""
|
||||||
|
dotnet/include_scripts_content=false
|
||||||
|
dotnet/include_debug_symbols=true
|
||||||
|
dotnet/embed_build_outputs=false
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
"sdk": {
|
||||||
|
"version": "11.0.100-preview.5.26302.115",
|
||||||
|
"allowPrerelease": true,
|
||||||
|
"rollForward": "latestPatch"
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -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,9 @@
|
|||||||
|
[gd_resource type="CanvasTexture" format=3 uid="uid://b78uwnnyovqci"]
|
||||||
|
|
||||||
|
[ext_resource type="Texture2D" uid="uid://n6b4udvjt2pt" path="res://sprites/atlas/diffuse/pool.diffuse.png" id="1_v3cld"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cs2jr54egxwey" path="res://sprites/atlas/normal/pool.normal.png" id="2_srhaa"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
diffuse_texture = ExtResource("1_v3cld")
|
||||||
|
normal_texture = ExtResource("2_srhaa")
|
||||||
|
specular_shininess = 0.35
|
||||||
@@ -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,46 @@
|
|||||||
|
[gd_resource type="SpriteFrames" format=3 uid="uid://trcnb1ubmx5e"]
|
||||||
|
|
||||||
|
[ext_resource type="Texture2D" uid="uid://wli5w6t8y6se" path="res://sprites/atlas/jump_point_radiates.png" id="1_3yoq3"]
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_aokl3"]
|
||||||
|
atlas = ExtResource("1_3yoq3")
|
||||||
|
region = Rect2(0, 32, 32, 32)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_xd81c"]
|
||||||
|
atlas = ExtResource("1_3yoq3")
|
||||||
|
region = Rect2(0, 64, 32, 32)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_u618n"]
|
||||||
|
atlas = ExtResource("1_3yoq3")
|
||||||
|
region = Rect2(0, 96, 32, 32)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_twrqh"]
|
||||||
|
atlas = ExtResource("1_3yoq3")
|
||||||
|
region = Rect2(32, 0, 32, 32)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_vrk17"]
|
||||||
|
atlas = ExtResource("1_3yoq3")
|
||||||
|
region = Rect2(0, 0, 32, 32)
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
animations = [{
|
||||||
|
"frames": [{
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_aokl3")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_xd81c")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_u618n")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_twrqh")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_vrk17")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"default",
|
||||||
|
"speed": 16.0
|
||||||
|
}]
|
||||||
@@ -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,35 +1,77 @@
|
|||||||
[gd_resource type="SpriteFrames" format=3 uid="uid://doxc4pl5hvs6k"]
|
[gd_resource type="SpriteFrames" format=3 uid="uid://doxc4pl5hvs6k"]
|
||||||
|
|
||||||
[ext_resource type="Texture2D" uid="uid://bv4gsgya7wp4d" path="res://sprites/atlas/demoman_walking.png" id="1_1t22f"]
|
[ext_resource type="Texture2D" uid="uid://cl3uy4d6lgspe" path="res://sprites/man_falls.png" id="1_kdeld"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://dy7fh0eg6qulr" path="res://sprites/atlas/flats/demoman_idles.png" id="2_kdeld"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://cr5bdv3hgmd4q" path="res://sprites/man_jumps.png" id="3_a1t44"]
|
||||||
|
[ext_resource type="Texture2D" uid="uid://bv4gsgya7wp4d" path="res://sprites/atlas/flats/demoman_walking.png" id="4_a1t44"]
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_w1sc6"]
|
||||||
|
atlas = ExtResource("2_kdeld")
|
||||||
|
region = Rect2(0, 0, 32, 64)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_mcxxx"]
|
||||||
|
atlas = ExtResource("2_kdeld")
|
||||||
|
region = Rect2(0, 64, 32, 64)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_nf227"]
|
||||||
|
atlas = ExtResource("2_kdeld")
|
||||||
|
region = Rect2(32, 0, 32, 64)
|
||||||
|
|
||||||
|
[sub_resource type="AtlasTexture" id="AtlasTexture_sbabb"]
|
||||||
|
atlas = ExtResource("2_kdeld")
|
||||||
|
region = Rect2(32, 64, 32, 64)
|
||||||
|
|
||||||
[sub_resource type="AtlasTexture" id="AtlasTexture_c2ath"]
|
[sub_resource type="AtlasTexture" id="AtlasTexture_c2ath"]
|
||||||
atlas = ExtResource("1_1t22f")
|
atlas = ExtResource("4_a1t44")
|
||||||
region = Rect2(0, 0, 32, 64)
|
region = Rect2(0, 0, 32, 64)
|
||||||
|
|
||||||
[sub_resource type="AtlasTexture" id="AtlasTexture_gwfnt"]
|
[sub_resource type="AtlasTexture" id="AtlasTexture_gwfnt"]
|
||||||
atlas = ExtResource("1_1t22f")
|
atlas = ExtResource("4_a1t44")
|
||||||
region = Rect2(0, 64, 32, 64)
|
region = Rect2(0, 64, 32, 64)
|
||||||
|
|
||||||
[sub_resource type="AtlasTexture" id="AtlasTexture_kdeld"]
|
[sub_resource type="AtlasTexture" id="AtlasTexture_kdeld"]
|
||||||
atlas = ExtResource("1_1t22f")
|
atlas = ExtResource("4_a1t44")
|
||||||
region = Rect2(32, 0, 32, 64)
|
region = Rect2(32, 0, 32, 64)
|
||||||
|
|
||||||
[sub_resource type="AtlasTexture" id="AtlasTexture_a1t44"]
|
[sub_resource type="AtlasTexture" id="AtlasTexture_a1t44"]
|
||||||
atlas = ExtResource("1_1t22f")
|
atlas = ExtResource("4_a1t44")
|
||||||
region = Rect2(32, 64, 32, 64)
|
region = Rect2(32, 64, 32, 64)
|
||||||
|
|
||||||
[sub_resource type="AtlasTexture" id="AtlasTexture_k551e"]
|
[sub_resource type="AtlasTexture" id="AtlasTexture_k551e"]
|
||||||
atlas = ExtResource("1_1t22f")
|
atlas = ExtResource("4_a1t44")
|
||||||
region = Rect2(64, 0, 32, 64)
|
region = Rect2(64, 0, 32, 64)
|
||||||
|
|
||||||
[resource]
|
[resource]
|
||||||
animations = [{
|
animations = [{
|
||||||
"frames": [],
|
"frames": [{
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("1_kdeld")
|
||||||
|
}],
|
||||||
|
"loop": true,
|
||||||
|
"name": &"fall",
|
||||||
|
"speed": 5.0
|
||||||
|
}, {
|
||||||
|
"frames": [{
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_w1sc6")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_mcxxx")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_nf227")
|
||||||
|
}, {
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": SubResource("AtlasTexture_sbabb")
|
||||||
|
}],
|
||||||
"loop": true,
|
"loop": true,
|
||||||
"name": &"idle",
|
"name": &"idle",
|
||||||
"speed": 5.0
|
"speed": 5.0
|
||||||
}, {
|
}, {
|
||||||
"frames": [],
|
"frames": [{
|
||||||
|
"duration": 1.0,
|
||||||
|
"texture": ExtResource("3_a1t44")
|
||||||
|
}],
|
||||||
"loop": true,
|
"loop": true,
|
||||||
"name": &"jump",
|
"name": &"jump",
|
||||||
"speed": 5.0
|
"speed": 5.0
|
||||||
|
|||||||
@@ -0,0 +1,4 @@
|
|||||||
|
[gd_resource type="CircleShape2D" format=3 uid="uid://duhxyfwoh6ndb"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
radius = 3.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,6 @@
|
|||||||
|
[gd_resource type="ShaderMaterial" format=3 uid="uid://b4epp5w0awoov"]
|
||||||
|
|
||||||
|
[ext_resource type="Shader" uid="uid://dwgy05x43arpb" path="res://src/shaders/dimming_shader.tres" id="1_jm73v"]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
shader = ExtResource("1_jm73v")
|
||||||
@@ -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,42 @@
|
|||||||
|
[gd_scene format=3 uid="uid://xanv3qbl1n2u"]
|
||||||
|
|
||||||
|
[sub_resource type="Gradient" id="Gradient_nxkc6"]
|
||||||
|
colors = PackedColorArray(1, 1, 1, 1, 0, 0, 0, 1)
|
||||||
|
|
||||||
|
[sub_resource type="GradientTexture2D" id="GradientTexture2D_kfvst"]
|
||||||
|
gradient = SubResource("Gradient_nxkc6")
|
||||||
|
fill = 1
|
||||||
|
fill_from = Vector2(0.5, 0.5)
|
||||||
|
fill_to = Vector2(0.725, 0)
|
||||||
|
|
||||||
|
[node name="Light" type="Node2D" unique_id=658403720]
|
||||||
|
scale = Vector2(3.105, 3.105)
|
||||||
|
|
||||||
|
[node name="BackgroundLight" type="PointLight2D" parent="." unique_id=1870867099]
|
||||||
|
scale = Vector2(3, 3)
|
||||||
|
color = Color(1, 0.73333335, 0, 1)
|
||||||
|
energy = 1.5
|
||||||
|
shadow_enabled = true
|
||||||
|
shadow_filter = 1
|
||||||
|
texture = SubResource("GradientTexture2D_kfvst")
|
||||||
|
height = 15.0
|
||||||
|
|
||||||
|
[node name="ForegroundLight" type="PointLight2D" parent="." unique_id=574997062]
|
||||||
|
scale = Vector2(5, 5)
|
||||||
|
color = Color(0.93, 0.837, 0, 0.8)
|
||||||
|
energy = 0.7
|
||||||
|
shadow_enabled = true
|
||||||
|
shadow_filter = 1
|
||||||
|
shadow_item_cull_mask = 2
|
||||||
|
texture = SubResource("GradientTexture2D_kfvst")
|
||||||
|
height = 15.0
|
||||||
|
|
||||||
|
[node name="ForegroundNOCLight" type="PointLight2D" parent="." unique_id=2045804818]
|
||||||
|
scale = Vector2(5, 5)
|
||||||
|
color = Color(0.93, 0.837, 0, 0.8)
|
||||||
|
energy = 0.7
|
||||||
|
range_item_cull_mask = 4
|
||||||
|
shadow_filter = 1
|
||||||
|
shadow_item_cull_mask = 4
|
||||||
|
texture = SubResource("GradientTexture2D_kfvst")
|
||||||
|
height = 15.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")
|
||||||
@@ -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,46 +10,127 @@ config_version=5
|
|||||||
|
|
||||||
[application]
|
[application]
|
||||||
|
|
||||||
config/name="WrplatGodot"
|
config/name="Heartescent"
|
||||||
run/main_scene="uid://r2lb1ommvj6u"
|
config/version="0.1.38"
|
||||||
|
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]
|
||||||
|
|
||||||
project/assembly_name="WrplatGodot"
|
project/assembly_name="WrplatGodot"
|
||||||
|
|
||||||
|
[editor]
|
||||||
|
|
||||||
|
version_control/plugin_name="GitPlugin"
|
||||||
|
version_control/autoload_on_startup=true
|
||||||
|
|
||||||
|
[editor_plugins]
|
||||||
|
|
||||||
|
enabled=PackedStringArray("res://addons/aeqw89.RDatCanvasTextureImporterPlugin/plugin.cfg")
|
||||||
|
|
||||||
|
[file_customization]
|
||||||
|
|
||||||
|
folder_colors={
|
||||||
|
"res://sprites/frames/walk/": "red"
|
||||||
|
}
|
||||||
|
|
||||||
[input]
|
[input]
|
||||||
|
|
||||||
move_right={
|
move_right={
|
||||||
"deadzone": 0.2,
|
"deadzone": 0.2,
|
||||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194321,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194321,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":115,"location":0,"echo":false,"script":null)
|
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":83,"key_label":0,"unicode":115,"location":0,"echo":false,"script":null)
|
||||||
|
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":0,"axis_value":1.0,"script":null)
|
||||||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":14,"pressure":0.0,"pressed":true,"script":null)
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
move_left={
|
move_left={
|
||||||
"deadzone": 0.2,
|
"deadzone": 0.2,
|
||||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194319,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194319,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"location":0,"echo":false,"script":null)
|
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":65,"key_label":0,"unicode":97,"location":0,"echo":false,"script":null)
|
||||||
|
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":0,"axis_value":-1.0,"script":null)
|
||||||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":13,"pressure":0.0,"pressed":true,"script":null)
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
jump={
|
jump={
|
||||||
"deadzone": 0.2,
|
"deadzone": 0.2,
|
||||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null)
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":32,"key_label":0,"unicode":32,"location":0,"echo":false,"script":null)
|
||||||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":0,"pressure":0.0,"pressed":false,"script":null)
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
look_up={
|
look_up={
|
||||||
"deadzone": 0.2,
|
"deadzone": 0.2,
|
||||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194320,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":true,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194320,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":119,"location":0,"echo":false,"script":null)
|
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":true,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||||
|
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":3,"axis_value":-1.0,"script":null)
|
||||||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":11,"pressure":0.0,"pressed":true,"script":null)
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
look_down={
|
look_down={
|
||||||
"deadzone": 0.2,
|
"deadzone": 0.2,
|
||||||
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194322,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":true,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194322,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||||
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":82,"key_label":0,"unicode":114,"location":0,"echo":false,"script":null)
|
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":true,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":82,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||||
|
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":3,"axis_value":1.0,"script":null)
|
||||||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":12,"pressure":0.0,"pressed":true,"script":null)
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
run={
|
||||||
|
"deadzone": 0.2,
|
||||||
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194325,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":9,"pressure":0.0,"pressed":true,"script":null)
|
||||||
|
]
|
||||||
|
}
|
||||||
|
skip_music={
|
||||||
|
"deadzone": 0.2,
|
||||||
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":true,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":78,"key_label":0,"unicode":78,"location":0,"echo":false,"script":null)
|
||||||
|
]
|
||||||
|
}
|
||||||
|
toggle_debug={
|
||||||
|
"deadzone": 0.2,
|
||||||
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":true,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":75,"key_label":0,"unicode":75,"location":0,"echo":false,"script":null)
|
||||||
|
]
|
||||||
|
}
|
||||||
|
move_up={
|
||||||
|
"deadzone": 0.2,
|
||||||
|
"events": [Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":1,"axis_value":-1.0,"script":null)
|
||||||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":11,"pressure":0.0,"pressed":true,"script":null)
|
||||||
|
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194320,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||||
|
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":87,"key_label":0,"unicode":119,"location":0,"echo":false,"script":null)
|
||||||
|
]
|
||||||
|
}
|
||||||
|
move_down={
|
||||||
|
"deadzone": 0.2,
|
||||||
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":4194322,"key_label":0,"unicode":0,"location":0,"echo":false,"script":null)
|
||||||
|
, Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":82,"key_label":0,"unicode":114,"location":0,"echo":false,"script":null)
|
||||||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":-1,"button_index":12,"pressure":0.0,"pressed":true,"script":null)
|
||||||
|
, Object(InputEventJoypadMotion,"resource_local_to_scene":false,"resource_name":"","device":-1,"axis":1,"axis_value":1.0,"script":null)
|
||||||
|
]
|
||||||
|
}
|
||||||
|
turn_back={
|
||||||
|
"deadzone": 0.2,
|
||||||
|
"events": [Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":-1,"window_id":0,"alt_pressed":false,"shift_pressed":false,"ctrl_pressed":false,"meta_pressed":false,"pressed":false,"keycode":0,"physical_keycode":86,"key_label":0,"unicode":118,"location":0,"echo":false,"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]
|
||||||
|
|
||||||
|
2d_render/layer_1="Backgrounds"
|
||||||
|
2d_render/layer_2="Foregrounds"
|
||||||
|
2d_render/layer_3="Foregrounds NOC"
|
||||||
|
|
||||||
[physics]
|
[physics]
|
||||||
|
|
||||||
@@ -58,3 +139,4 @@ look_down={
|
|||||||
[rendering]
|
[rendering]
|
||||||
|
|
||||||
rendering_device/driver.windows="d3d12"
|
rendering_device/driver.windows="d3d12"
|
||||||
|
textures/vram_compression/import_etc2_astc=true
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="wav"
|
||||||
|
type="AudioStreamWAV"
|
||||||
|
uid="uid://fhfma3rrxyfi"
|
||||||
|
path="res://.godot/imported/Asphodel.wav-f87ecbeaa99b324bd8f5df8f9b0d72e4.sample"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sounds/ost/Asphodel.wav"
|
||||||
|
dest_files=["res://.godot/imported/Asphodel.wav-f87ecbeaa99b324bd8f5df8f9b0d72e4.sample"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
force/8_bit=false
|
||||||
|
force/mono=false
|
||||||
|
force/max_rate=false
|
||||||
|
force/max_rate_hz=44100
|
||||||
|
edit/trim=false
|
||||||
|
edit/normalize=false
|
||||||
|
edit/loop_mode=0
|
||||||
|
edit/loop_begin=0
|
||||||
|
edit/loop_end=-1
|
||||||
|
compress/mode=2
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="wav"
|
||||||
|
type="AudioStreamWAV"
|
||||||
|
uid="uid://5gnpemu56ac0"
|
||||||
|
path="res://.godot/imported/Azalea.wav-cbe1be7340fbe8dc3e31528edc546255.sample"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sounds/ost/Azalea.wav"
|
||||||
|
dest_files=["res://.godot/imported/Azalea.wav-cbe1be7340fbe8dc3e31528edc546255.sample"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
force/8_bit=false
|
||||||
|
force/mono=false
|
||||||
|
force/max_rate=false
|
||||||
|
force/max_rate_hz=44100
|
||||||
|
edit/trim=false
|
||||||
|
edit/normalize=false
|
||||||
|
edit/loop_mode=0
|
||||||
|
edit/loop_begin=0
|
||||||
|
edit/loop_end=-1
|
||||||
|
compress/mode=2
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="wav"
|
||||||
|
type="AudioStreamWAV"
|
||||||
|
uid="uid://0tturucf5gxf"
|
||||||
|
path="res://.godot/imported/Datura.wav-78725853df39d0ef155db6eea1881728.sample"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sounds/ost/Datura.wav"
|
||||||
|
dest_files=["res://.godot/imported/Datura.wav-78725853df39d0ef155db6eea1881728.sample"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
force/8_bit=false
|
||||||
|
force/mono=false
|
||||||
|
force/max_rate=false
|
||||||
|
force/max_rate_hz=44100
|
||||||
|
edit/trim=false
|
||||||
|
edit/normalize=false
|
||||||
|
edit/loop_mode=0
|
||||||
|
edit/loop_begin=0
|
||||||
|
edit/loop_end=-1
|
||||||
|
compress/mode=2
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="wav"
|
||||||
|
type="AudioStreamWAV"
|
||||||
|
uid="uid://b5cvbx3ypbbho"
|
||||||
|
path="res://.godot/imported/Hyacinth.wav-32c97df5a6b61df7f68aa21d2c6edfae.sample"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sounds/ost/Hyacinth.wav"
|
||||||
|
dest_files=["res://.godot/imported/Hyacinth.wav-32c97df5a6b61df7f68aa21d2c6edfae.sample"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
force/8_bit=false
|
||||||
|
force/mono=false
|
||||||
|
force/max_rate=false
|
||||||
|
force/max_rate_hz=44100
|
||||||
|
edit/trim=false
|
||||||
|
edit/normalize=false
|
||||||
|
edit/loop_mode=0
|
||||||
|
edit/loop_begin=0
|
||||||
|
edit/loop_end=-1
|
||||||
|
compress/mode=2
|
||||||
@@ -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
|
||||||
|
After Width: | Height: | Size: 81 KiB |
@@ -0,0 +1,40 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://n6b4udvjt2pt"
|
||||||
|
path="res://.godot/imported/pool.diffuse.png-f15c5d02eff23304ecfbdd590cdc3504.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/atlas/diffuse/pool.diffuse.png"
|
||||||
|
dest_files=["res://.godot/imported/pool.diffuse.png-f15c5d02eff23304ecfbdd590cdc3504.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/uastc_level=0
|
||||||
|
compress/rdo_quality_loss=0.0
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/channel_remap/red=0
|
||||||
|
process/channel_remap/green=1
|
||||||
|
process/channel_remap/blue=2
|
||||||
|
process/channel_remap/alpha=3
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/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: 2.0 KiB |
@@ -0,0 +1,40 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://dy7fh0eg6qulr"
|
||||||
|
path="res://.godot/imported/demoman_idles.png-add2b3af5478c463b97d1483e4e33e47.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/atlas/flats/demoman_idles.png"
|
||||||
|
dest_files=["res://.godot/imported/demoman_idles.png-add2b3af5478c463b97d1483e4e33e47.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/uastc_level=0
|
||||||
|
compress/rdo_quality_loss=0.0
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/channel_remap/red=0
|
||||||
|
process/channel_remap/green=1
|
||||||
|
process/channel_remap/blue=2
|
||||||
|
process/channel_remap/alpha=3
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 2.5 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://bv4gsgya7wp4d"
|
uid="uid://bv4gsgya7wp4d"
|
||||||
path="res://.godot/imported/demoman_walking.png-9be9634caac03406a9e7d7741131c5f4.ctex"
|
path="res://.godot/imported/demoman_walking.png-3b471b54b0862aac29ec2aa6d7d5d5d6.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://sprites/atlas/demoman_walking.png"
|
source_file="res://sprites/atlas/flats/demoman_walking.png"
|
||||||
dest_files=["res://.godot/imported/demoman_walking.png-9be9634caac03406a9e7d7741131c5f4.ctex"]
|
dest_files=["res://.godot/imported/demoman_walking.png-3b471b54b0862aac29ec2aa6d7d5d5d6.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
After Width: | Height: | Size: 48 KiB |
@@ -3,15 +3,15 @@
|
|||||||
importer="texture"
|
importer="texture"
|
||||||
type="CompressedTexture2D"
|
type="CompressedTexture2D"
|
||||||
uid="uid://cgr7fx5emk037"
|
uid="uid://cgr7fx5emk037"
|
||||||
path="res://.godot/imported/pool.png-b13073abd16d5b4aa7f02817fa2d5dca.ctex"
|
path="res://.godot/imported/pool.png-9044908d89edc8b0017e06046d331edd.ctex"
|
||||||
metadata={
|
metadata={
|
||||||
"vram_texture": false
|
"vram_texture": false
|
||||||
}
|
}
|
||||||
|
|
||||||
[deps]
|
[deps]
|
||||||
|
|
||||||
source_file="res://sprites/atlas/pool.png"
|
source_file="res://sprites/atlas/flats/pool.png"
|
||||||
dest_files=["res://.godot/imported/pool.png-b13073abd16d5b4aa7f02817fa2d5dca.ctex"]
|
dest_files=["res://.godot/imported/pool.png-9044908d89edc8b0017e06046d331edd.ctex"]
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
|
|
||||||
|
After Width: | Height: | Size: 2.9 KiB |
@@ -0,0 +1,40 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://wli5w6t8y6se"
|
||||||
|
path="res://.godot/imported/jump_point_radiates.png-1a97dab1296f185bfc3d06015e15ec05.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/atlas/jump_point_radiates.png"
|
||||||
|
dest_files=["res://.godot/imported/jump_point_radiates.png-1a97dab1296f185bfc3d06015e15ec05.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/uastc_level=0
|
||||||
|
compress/rdo_quality_loss=0.0
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/channel_remap/red=0
|
||||||
|
process/channel_remap/green=1
|
||||||
|
process/channel_remap/blue=2
|
||||||
|
process/channel_remap/alpha=3
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/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: 124 KiB |
@@ -0,0 +1,40 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://cs2jr54egxwey"
|
||||||
|
path="res://.godot/imported/pool.normal.png-d715ee8c1699b86312f19adc110615ea.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/atlas/normal/pool.normal.png"
|
||||||
|
dest_files=["res://.godot/imported/pool.normal.png-d715ee8c1699b86312f19adc110615ea.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/uastc_level=0
|
||||||
|
compress/rdo_quality_loss=0.0
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/channel_remap/red=0
|
||||||
|
process/channel_remap/green=1
|
||||||
|
process/channel_remap/blue=2
|
||||||
|
process/channel_remap/alpha=3
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/normal_map_invert_y=false
|
||||||
|
process/hdr_as_srgb=false
|
||||||
|
process/hdr_clamp_exposure=false
|
||||||
|
process/size_limit=0
|
||||||
|
detect_3d/compress_to=1
|
||||||
|
Before Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 42 KiB |
@@ -0,0 +1,40 @@
|
|||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="CompressedTexture2D"
|
||||||
|
uid="uid://p4hfrsl8bbpg"
|
||||||
|
path="res://.godot/imported/pool.specular.png-11a7497f1c1ddae08e066a0e33eb2e9b.ctex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/atlas/specular/pool.specular.png"
|
||||||
|
dest_files=["res://.godot/imported/pool.specular.png-11a7497f1c1ddae08e066a0e33eb2e9b.ctex"]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/high_quality=false
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/uastc_level=0
|
||||||
|
compress/rdo_quality_loss=0.0
|
||||||
|
compress/hdr_compression=1
|
||||||
|
compress/normal_map=0
|
||||||
|
compress/channel_pack=0
|
||||||
|
mipmaps/generate=false
|
||||||
|
mipmaps/limit=-1
|
||||||
|
roughness/mode=0
|
||||||
|
roughness/src_normal=""
|
||||||
|
process/channel_remap/red=0
|
||||||
|
process/channel_remap/green=1
|
||||||
|
process/channel_remap/blue=2
|
||||||
|
process/channel_remap/alpha=3
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/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: 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"
|
||||||