From 2ab6158849a14f6e4981c04457aaa94ffc5d990a Mon Sep 17 00:00:00 2001 From: Zenny Date: Mon, 8 Jun 2026 00:08:25 -0700 Subject: [PATCH] Make adjustments to bad end map Modify debug menu slightly to pause while open (need to close the menu to load floors, etc) Clear map when game over screen appears --- .../Player/IPlayer.cs | 6 +- Zennysoft.Game.Ma/src/audio/SFXDatabase.tscn | 9 +- Zennysoft.Game.Ma/src/audio/SfxDatabase.cs | 5 +- Zennysoft.Game.Ma/src/camera/ShakeCamera.cs | 22 +-- Zennysoft.Game.Ma/src/game/Game.cs | 13 +- Zennysoft.Game.Ma/src/map/Map.cs | 10 +- .../floors/Special Floors/BAD END.tscn | 139 +++++++++++++----- .../dungeon/floors/Special Floors/BadEnd.cs | 48 ++++-- Zennysoft.Game.Ma/src/player/DummyPlayer.cs | 2 + Zennysoft.Game.Ma/src/player/Player.cs | 22 +-- Zennysoft.Game.Ma/src/player/Player.tscn | 1 + .../src/ui/game_over/GameOverMenu.cs | 9 ++ 12 files changed, 208 insertions(+), 78 deletions(-) diff --git a/Zennysoft.Game.Ma.Implementation/Player/IPlayer.cs b/Zennysoft.Game.Ma.Implementation/Player/IPlayer.cs index e28f8d00..b65aee8b 100644 --- a/Zennysoft.Game.Ma.Implementation/Player/IPlayer.cs +++ b/Zennysoft.Game.Ma.Implementation/Player/IPlayer.cs @@ -30,10 +30,14 @@ public interface IPlayer : IKillable, ICharacterBody3D public void SetSigil(ISigil sigil); + public void ShowCamera(bool showCamera); + public void ApplyNewAugment(IAugmentItem jewel, IAugmentableItem equipableItem); public IBaseInventoryItem IdentifyItem(IBaseInventoryItem unidentifiedItem); + public void ShakePlayerCamera(float shakeIntensity, float shakeAmount); + public IInventory Inventory { get; } public IHealthComponent HealthComponent { get; } @@ -52,7 +56,7 @@ public interface IPlayer : IKillable, ICharacterBody3D public IStatusEffectComponent StatusEffectComponent { get; } - public ISigilComponent SigilComponent { get; } + public ISigilComponent SigilComponent { get; } public void SetHealthTimerStatus(bool isActive); diff --git a/Zennysoft.Game.Ma/src/audio/SFXDatabase.tscn b/Zennysoft.Game.Ma/src/audio/SFXDatabase.tscn index ca42c1a6..59d3bebe 100644 --- a/Zennysoft.Game.Ma/src/audio/SFXDatabase.tscn +++ b/Zennysoft.Game.Ma/src/audio/SFXDatabase.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=29 format=3 uid="uid://brgi35xj3b4ud"] +[gd_scene load_steps=30 format=3 uid="uid://brgi35xj3b4ud"] [ext_resource type="Script" uid="uid://cw100tox0ufsy" path="res://src/audio/SfxDatabase.cs" id="1_ojkqd"] [ext_resource type="AudioStream" uid="uid://cye8wlqbx66h4" path="res://src/audio/sfx/player_heal.ogg" id="2_158j8"] @@ -22,6 +22,7 @@ [ext_resource type="AudioStream" uid="uid://brb8xj4vsgcw4" path="res://src/audio/sfx/player_DEBUFF.ogg" id="18_bi4v5"] [ext_resource type="AudioStream" uid="uid://coeynqnn61c43" path="res://src/audio/sfx/environment_ITEM_TRANSFER.ogg" id="18_l6w22"] [ext_resource type="AudioStream" uid="uid://bfrmm07vthpwt" path="res://src/audio/sfx/item_divine_recall.ogg" id="19_nerso"] +[ext_resource type="AudioStream" uid="uid://dl6svxp5ow2vk" path="res://src/audio/sfx/player_death_1.ogg" id="19_uv31i"] [ext_resource type="AudioStream" uid="uid://bu8akh5uh3ioo" path="res://src/audio/sfx/item_devic_balance_element1.ogg" id="20_rloay"] [ext_resource type="AudioStream" uid="uid://bjkn6s2xjxuji" path="res://src/audio/sfx/item_gospel_dimension.ogg" id="21_6hsck"] [ext_resource type="AudioStream" uid="uid://c3ur4bgvmsidi" path="res://src/audio/sfx/item_gospel_escape.ogg" id="22_3wq6u"] @@ -139,6 +140,12 @@ process_mode = 3 stream = ExtResource("18_bi4v5") bus = &"SFX" +[node name="DeathSound" type="AudioStreamPlayer" parent="Player"] +unique_name_in_owner = true +process_mode = 3 +stream = ExtResource("19_uv31i") +bus = &"SFX" + [node name="Item" type="Node" parent="."] [node name="TransferItemSound" type="AudioStreamPlayer" parent="Item"] diff --git a/Zennysoft.Game.Ma/src/audio/SfxDatabase.cs b/Zennysoft.Game.Ma/src/audio/SfxDatabase.cs index 2c2a7541..41e59d2e 100644 --- a/Zennysoft.Game.Ma/src/audio/SfxDatabase.cs +++ b/Zennysoft.Game.Ma/src/audio/SfxDatabase.cs @@ -33,6 +33,7 @@ public partial class SfxDatabase : Node {SoundEffect.Unequip, UnequipSound }, {SoundEffect.Buff, BuffSound }, {SoundEffect.Debuff, DebuffSound }, + {SoundEffect.Death, DeathSound }, {SoundEffect.SortInventory, SortSound }, {SoundEffect.SelectUI, SelectSound }, {SoundEffect.CancelUI, CancelSound }, @@ -67,6 +68,7 @@ public partial class SfxDatabase : Node [Node] private AudioStreamPlayer UnequipSound { get; set; } [Node] private AudioStreamPlayer BuffSound { get; set; } [Node] private AudioStreamPlayer DebuffSound { get; set; } + [Node] private AudioStreamPlayer DeathSound { get; set; } [Node] private AudioStreamPlayer SortSound { get; set; } [Node] private AudioStreamPlayer SelectSound { get; set; } [Node] private AudioStreamPlayer CancelSound { get; set; } @@ -120,6 +122,7 @@ public enum SoundEffect WeaponPlasmaSword, Eucharistia, Buff, - Debuff + Debuff, + Death } diff --git a/Zennysoft.Game.Ma/src/camera/ShakeCamera.cs b/Zennysoft.Game.Ma/src/camera/ShakeCamera.cs index a3c3f683..9d492e6d 100644 --- a/Zennysoft.Game.Ma/src/camera/ShakeCamera.cs +++ b/Zennysoft.Game.Ma/src/camera/ShakeCamera.cs @@ -8,7 +8,7 @@ public partial class ShakeCamera : Camera3D { public override void _Notification(int what) => this.Notify(what); - [Export] private double _shakeIntensity = 1.0; + [Export] public double _shakeIntensity { get; set; } = 1.0; [Export] private double _maxX = 10; [Export] private double _maxY = 10; @@ -24,28 +24,28 @@ public partial class ShakeCamera : Camera3D public override void _Ready() { - _initialRotation = RotationDegrees; + _initialRotation = RotationDegrees; } public override void _Process(double delta) { - _time += delta; - _shake = Mathf.Max(_shake - delta * _shakeIntensity, 0.0); + _time += delta; + _shake = Mathf.Max(_shake - delta * _shakeIntensity, 0.0); - RotationDegrees = new Vector3( - (float)(_initialRotation.X + _maxX * Mathf.Pow(_shake, 2) * GetNoiseFromSeed(0)), - (float)(_initialRotation.Y + _maxY * Mathf.Pow(_shake, 2) * GetNoiseFromSeed(1)), - (float)(_initialRotation.Z + _maxZ * Mathf.Pow(_shake, 2) * GetNoiseFromSeed(2))); + RotationDegrees = new Vector3( + (float)(_initialRotation.X + _maxX * Mathf.Pow(_shake, 2) * GetNoiseFromSeed(0)), + (float)(_initialRotation.Y + _maxY * Mathf.Pow(_shake, 2) * GetNoiseFromSeed(1)), + (float)(_initialRotation.Z + _maxZ * Mathf.Pow(_shake, 2) * GetNoiseFromSeed(2))); } public void AddShake(float shakeAmount) { - _shake = Mathf.Clamp(_shake + shakeAmount, 0.0, 1.0); + _shake = Mathf.Clamp(_shake + shakeAmount, 0.0, 1.0); } private double GetNoiseFromSeed(int seed) { - _noise.Seed = seed; - return _noise.GetNoise1D((float)(_time * _noiseSpeed)); + _noise.Seed = seed; + return _noise.GetNoise1D((float)(_time * _noiseSpeed)); } } diff --git a/Zennysoft.Game.Ma/src/game/Game.cs b/Zennysoft.Game.Ma/src/game/Game.cs index b0a4e8dd..f9a7dd2a 100644 --- a/Zennysoft.Game.Ma/src/game/Game.cs +++ b/Zennysoft.Game.Ma/src/game/Game.cs @@ -215,6 +215,7 @@ public partial class Game : Node3D, IGame _player.PlayerDied += GameOver; GameOverMenu.NewGame += OnNewGame; GameOverMenu.QuitGame += OnQuit; + GameOverMenu.GameOverMenuVisible += GameOverMenuAppeared; PauseMenu.ExitGamePressed += OnQuit; PauseMenu.UnpauseButtonPressed += OnResume; @@ -339,6 +340,7 @@ public partial class Game : Node3D, IGame { QuestData.DeathCount++; await Save(); + _player.SetSigil(new NoneSigil()); _player.Deactivate(); GameRepo.Pause(); GameState.Input(new GameState.Input.GameOver()); @@ -393,15 +395,13 @@ public partial class Game : Node3D, IGame }) .Handle((in GameState.Output.OpenDebugMenu _) => { + GameRepo.Pause(); InGameUI.DebugMenu.Show(); - InGameUI.PlayerInfoUI.Hide(); - _player.Deactivate(); }) .Handle((in GameState.Output.CloseDebugMenu _) => { + GameRepo.Resume(); InGameUI.DebugMenu.Hide(); - InGameUI.PlayerInfoUI.Show(); - _player.Activate(); }) .Handle((in GameState.Output.OpenTeleportScreen _) => { @@ -451,9 +451,6 @@ public partial class Game : Node3D, IGame .Handle((in GameState.Output.GameOver _) => { GameOverMenu.FadeIn(); - var enemies = GetTree().GetNodesInGroup("enemy").OfType(); - foreach (var enemy in enemies) - enemy.CallDeferred(MethodName.QueueFree, []); }); } @@ -961,6 +958,8 @@ public partial class Game : Node3D, IGame private void OnQuit() => GameExitRequested?.Invoke(); + private void GameOverMenuAppeared() => _map.ClearFloor(); + private void OnResume() => GameState.Input(new GameState.Input.PauseButtonPressed()); public void OnExitTree() diff --git a/Zennysoft.Game.Ma/src/map/Map.cs b/Zennysoft.Game.Ma/src/map/Map.cs index 90ae2eeb..1ec39f66 100644 --- a/Zennysoft.Game.Ma/src/map/Map.cs +++ b/Zennysoft.Game.Ma/src/map/Map.cs @@ -88,7 +88,15 @@ public partial class Map : Node3D, IMap public void ClearFloor() { - CurrentFloor?.CallDeferred(MethodName.QueueFree, []); + try + { + if (CurrentFloor != null && !CurrentFloor.IsQueuedForDeletion()) + CurrentFloor?.CallDeferred(MethodName.QueueFree, []); + } + catch (ObjectDisposedException ex) + { + + } } public async Task LoadFloor() diff --git a/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/BAD END.tscn b/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/BAD END.tscn index fddf06fb..6e15ad5e 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/BAD END.tscn +++ b/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/BAD END.tscn @@ -1,4 +1,4 @@ -[gd_scene load_steps=104 format=4 uid="uid://b6xevrj7vuuyq"] +[gd_scene load_steps=108 format=4 uid="uid://b6xevrj7vuuyq"] [ext_resource type="Script" uid="uid://dn85unitw20hr" path="res://src/map/dungeon/floors/Special Floors/BadEnd.cs" id="1_j65oo"] [ext_resource type="PackedScene" uid="uid://dld10xlpr8d17" path="res://src/map/assets/Overworld Assetts/OW_gate.glb" id="2_nrusr"] @@ -9,17 +9,19 @@ [ext_resource type="CompressedTexture2DArray" uid="uid://c0kjnbpgaa6bs" path="res://src/map/assets/caustics.png" id="6_m5gce"] [ext_resource type="Texture2D" uid="uid://cbsdc4uthojov" path="res://src/map/assets/waternormal2.jpg" id="7_5uvg7"] [ext_resource type="Script" uid="uid://b83kye8yinfxs" path="res://src/audio/AmbientSFXPlayer3D.cs" id="9_jkrcr"] -[ext_resource type="AudioStream" uid="uid://b7g0tnn43an8" path="res://src/audio/amb/amb_white_noise.ogg" id="9_w77rv"] +[ext_resource type="AudioStream" uid="uid://b7g0tnn43an8" path="res://src/audio/AMB/amb_white_noise.ogg" id="9_w77rv"] [ext_resource type="Texture2D" uid="uid://dw50ys561j8no" path="res://src/map/assets/DUST_1.png" id="12_7nxk4"] [ext_resource type="Shader" uid="uid://b7t52o30btgnn" path="res://src/map/map shaders/Ocean.gdshader" id="13_bw3uu"] [ext_resource type="Texture2D" uid="uid://c38grr8d22ukg" path="res://src/map/assets/Overworld Assetts/cloudscape.png" id="14_bt7id"] [ext_resource type="PackedScene" uid="uid://clml6uw8csbw1" path="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects).glb" id="15_yiqg3"] [ext_resource type="PackedScene" uid="uid://bn5egdkg03f5d" path="res://src/map/dungeon/door/UnlockableDoor.tscn" id="16_86uyu"] [ext_resource type="Texture2D" uid="uid://c6bcwd1ym1dcg" path="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_outside_darker_brick.png" id="17_ujbud"] +[ext_resource type="AudioStream" uid="uid://7esvkguxl3cb" path="res://src/audio/AMB/AMB_BAD_END_EARTHQUAKE.ogg" id="17_w2hru"] [ext_resource type="Texture2D" uid="uid://ypb8vnmolp7e" path="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_OW_Worked-Stone-Outside.png" id="18_p1exo"] -[ext_resource type="AudioStream" uid="uid://cgk17d8erskht" path="res://src/audio/amb/amb_ocean.ogg" id="18_sviw5"] +[ext_resource type="AudioStream" uid="uid://cgk17d8erskht" path="res://src/audio/AMB/amb_ocean.ogg" id="18_sviw5"] [ext_resource type="Texture2D" uid="uid://s8y4xcx33gh8" path="res://src/map/overworld/Models/Overworld Re-Scaled (Missing Distance Objects)_stone_column_carved.png" id="19_slyji"] [ext_resource type="PackedScene" uid="uid://cfy7h6itq80y0" path="res://src/map/assets/Dungeon Door Models/A2Door.glb" id="20_2vj7l"] +[ext_resource type="Script" uid="uid://bb36q1wpe0tlw" path="res://src/camera/ShakeCamera.cs" id="21_2vj7l"] [sub_resource type="NavigationMesh" id="NavigationMesh_j65oo"] vertices = PackedVector3Array(72.074, 4.44755, -27.0564, 72.074, 4.44755, -23.5564, 73.824, 4.44755, -23.5564, 74.824, 4.44755, -33.5564, 74.824, 4.44755, -31.5564, 76.074, 4.44755, -29.5564, 87.824, 4.44755, -32.3064, 87.074, 4.44755, -36.0564, 74.824, 4.44755, -20.3064, 75.824, 4.44755, -19.8064, 90.074, 4.44755, -27.8064, 89.574, 4.44755, -30.3064, 76.324, 4.44755, -28.0564, 91.824, 4.44755, -26.0564, 5.57397, 4.44755, -25.8064, 3.07397, 4.44755, -23.0564, 9.07397, 4.44755, -20.8064, 15.074, 4.44755, -24.5564, 13.824, 4.44755, -30.3064, 20.574, 4.44755, -24.8064, 20.824, 4.44755, -28.8064, 27.324, 4.44755, -23.8064, 27.324, 4.44755, -25.0564, 26.324, 4.44755, -26.0564, 24.824, 4.44755, -26.5564, 23.074, 4.44755, -24.0564, 24.324, 4.44755, -23.0564, 28.074, 4.44755, -23.0564, 24.574, 4.44755, -27.8064, 40.324, 7.44755, -26.3064, 43.074, 7.44755, -26.5564, 41.324, 7.44755, -28.0564, 39.574, 7.44755, -28.0564, 38.074, 7.44755, -27.0564, 37.574, 7.44755, -26.0564, 37.574, 7.44755, -24.3064, 38.324, 7.44755, -23.8064, 25.574, 7.44755, -27.8064, 25.824, 7.44755, -27.3064, 27.074, 7.44755, -27.3064, 28.574, 7.44755, -27.8064, 27.324, 7.44755, -26.3064, 28.324, 7.44755, -25.5564, 28.824, 7.44755, -26.8064, 28.074, 4.44755, -26.0564, 28.574, 4.44755, -26.0564, 28.824, 4.44755, -26.8064, 28.824, 4.44755, -27.5564, 27.574, 4.44755, -27.0564, 62.324, 4.44755, -27.3064, 51.574, 4.44755, -26.0564, 51.574, 4.44755, -21.0564, 44.074, 4.44755, -23.0564, 42.074, 4.44755, -21.5564, 42.574, 4.44755, -18.3064, 44.324, 4.44755, -25.3064, 96.324, 4.44755, -23.3064, 97.574, 4.44755, -23.5564, 96.824, 4.44755, -24.3064, 95.574, 4.44755, -22.5564, 96.574, 4.44755, -25.5564, 93.074, 4.44755, -25.5564, 79.324, 4.44755, -16.3064, 95.574, 4.44755, -20.3064, 96.574, 4.44755, -19.5564, 43.324, 7.44755, -24.3064, 43.324, 7.44755, -25.3064, 41.074, 7.44755, -25.0564, 39.074, 7.44755, -22.8064, 39.574, 7.44755, -22.3064, 42.074, 7.44755, -22.5564, 43.074, 4.44755, -24.5564, 43.074, 4.44755, -25.0564, 41.074, 4.44755, -25.0564, 39.324, 4.44755, -23.0564, 39.824, 4.44755, -22.5564, 41.824, 4.44755, -22.8064, -1.17603, 4.44755, -19.3064, -0.926025, 4.44755, -19.0564, 1.07397, 4.44755, -19.3064, 1.57397, 4.44755, -17.0564, 0.823975, 4.44755, -16.5564, 3.57397, 4.44755, -15.3064, 4.07397, 4.44755, -16.0564, 1.57397, 4.44755, -18.8064, 7.07397, 4.44755, -16.0564, 29.824, 4.44755, -21.8064, 28.824, 4.44755, -23.0564, 30.824, 4.44755, -17.8064, 31.324, 4.44755, -17.0564, 33.074, 4.44755, -17.0564, 35.324, 4.44755, -19.3064, 34.824, 4.44755, -15.8064, 24.574, 4.44755, -20.8064, 26.574, 4.44755, -18.8064, 28.574, 4.44755, -17.5564, 96.824, 25.4475, -20.5564, 98.074, 25.4475, -20.5564, 98.324, 25.4475, -21.0564, 98.074, 25.4475, -22.3064, 96.574, 25.4475, -22.0564, 97.074, 4.44755, -20.8064, 97.824, 4.44755, -20.8064, 98.074, 4.44755, -21.3064, 97.824, 4.44755, -22.0564, 96.824, 4.44755, -21.8064, 39.074, 4.44755, -21.3064, 38.324, 4.44755, -21.8064, 36.324, 4.44755, -19.3064, 35.824, 4.44755, -14.0564, 40.324, 4.44755, -17.5564, 100.574, 4.44755, -18.3064, 99.324, 4.44755, -20.5564, 98.574, 4.44755, -19.5564, 100.324, 4.44755, -16.5564, 104.824, 4.44755, -6.05645, 107.074, 4.44755, -7.55645, 106.824, 4.44755, -8.30645, 104.324, 4.44755, -12.0564, 102.824, 4.44755, -12.0564, 102.324, 4.44755, -12.5564, 105.074, 4.44755, -5.05645, 82.824, 4.44755, -5.05645, 83.574, 4.44755, -3.80645, 79.074, 4.44755, -14.0564, 79.824, 4.44755, -6.80645, -1.67603, 4.44755, -19.3064, -8.67603, 4.44755, -12.0564, -1.17603, 4.44755, -17.0564, 3.82397, 4.44755, -12.5564, 4.07397, 4.44755, -13.3064, 3.57397, 4.44755, -13.8064, 2.32397, 4.44755, -12.3064, 2.32397, 4.44755, -10.5564, -2.17603, 4.44755, -4.05645, -1.42603, 4.44755, -4.80645, 3.07397, 4.44755, -6.30645, 3.07397, 4.44755, -10.3064, -0.176025, 7.44755, -17.8064, 0.573975, 7.44755, -17.5564, 0.573975, 7.44755, -18.3064, -0.176025, 7.44755, -18.3064, 31.074, 7.44755, -16.0564, 34.324, 7.44755, -13.8064, 33.574, 7.44755, -15.5564, 31.574, 4.44755, -15.8064, 33.824, 4.44755, -14.3064, 33.324, 4.44755, -15.3064, 103.324, 21.4475, -13.0564, 103.824, 21.4475, -13.3064, 103.574, 21.4475, -14.5564, 102.324, 21.4475, -15.5564, 29.824, 7.44755, -15.0564, 28.824, 7.44755, -14.3064, 28.824, 7.44755, -12.0564, 30.824, 7.44755, -10.3064, 32.574, 7.44755, -10.3064, 34.324, 7.44755, -11.8064, 4.57397, 4.44755, -12.0564, 5.32397, 4.44755, -13.3064, 4.57397, 4.44755, -10.5564, 10.824, 4.44755, -8.80645, -3.67603, 4.44755, 11.9436, -0.676025, 4.44755, 9.19355, -1.92603, 4.44755, 8.19355, -0.926025, 4.44755, 5.19355, -0.926025, 4.44755, -0.80645, -1.42603, 4.44755, -1.05645, -13.926, 4.44755, -11.5564, -20.426, 4.44755, -9.30645, -17.176, 4.44755, 10.4436, -16.676, 4.44755, 11.9436, -19.676, 4.44755, 10.1936, -28.926, 4.44755, 10.6936, -20.676, 4.44755, 11.1936, -21.676, 4.44755, -9.05645, -25.676, 4.44755, -10.8064, -30.176, 4.44755, -4.05645, -31.176, 4.44755, 4.44355, 7.07397, 10.4475, -5.55645, 8.57397, 10.4475, -6.55645, 7.82397, 10.4475, -6.80645, -0.926025, 10.4475, -3.80645, -0.676025, 10.4475, -2.30645, 0.0739746, 10.4475, -2.05645, 6.57397, 10.4475, -4.30645, 108.074, 21.4475, -2.30645, 108.574, 21.4475, -2.05645, 109.324, 21.4475, -2.55645, 107.074, 21.4475, -6.30645, 106.074, 21.4475, -5.80645, 6.07397, 4.44755, -4.55645, 6.57397, 4.44755, -5.55645, 5.82397, 4.44755, -5.80645, -0.676025, 4.44755, -3.55645, -0.426025, 4.44755, -2.55645, 0.573975, 4.44755, -2.55645, 107.824, 4.44755, -4.80645, 107.074, 4.44755, -5.80645, 106.574, 4.44755, -5.55645, 108.324, 4.44755, -2.55645, 108.824, 4.44755, -2.55645, 108.824, 4.44755, 0.19355, 111.074, 4.44755, 0.19355, 110.074, 4.44755, -1.80645, 108.824, 4.44755, -0.80645, 107.824, 4.44755, 2.94355, 107.824, 4.44755, 1.19355, 87.824, 4.44755, 3.94355, 107.824, 4.44755, -0.80645, 0.573975, 4.44755, 4.94355, 1.82397, 4.44755, 5.94355, 3.07397, 4.44755, 5.44355, 5.07397, 4.44755, -2.80645, 157.324, 4.44755, 9.94355, 158.074, 4.44755, 11.4436, 159.324, 4.44755, 10.6936, 159.074, 4.44755, 8.94355, 161.574, 4.44755, 5.69355, 161.074, 4.44755, 2.44355, 157.324, 4.44755, -0.0564499, 151.824, 4.44755, 3.69355, 154.574, 4.44755, 9.44355, 151.824, 4.44755, 6.19355, 152.324, 4.44755, 7.44355, 154.824, 4.44755, 0.19355, 153.574, 4.44755, 0.94355, 161.074, 4.44755, 7.19355, 159.324, 4.44755, 0.69355, 110.574, 25.4475, 1.44355, 109.324, 25.4475, 1.19355, 108.824, 25.4475, 1.69355, 109.074, 25.4475, 2.94355, 110.574, 25.4475, 2.69355, 110.324, 4.44755, 2.44355, 110.324, 4.44755, 1.69355, 109.824, 4.44755, 1.44355, 109.074, 4.44755, 1.94355, 109.324, 4.44755, 2.69355, 112.824, 4.44755, 7.69355, 111.824, 4.44755, 1.69355, 111.574, 4.44755, 3.19355, 110.824, 4.44755, 3.94355, 108.824, 4.44755, 3.94355, 115.824, 4.44755, 12.4436, 92.324, 4.44755, 12.1936, 99.324, 4.44755, 24.4436, 116.824, 4.44755, 13.1936, 1.32397, 10.4475, 7.19355, 1.32397, 10.4475, 6.69355, -0.176025, 10.4475, 6.19355, -0.676025, 10.4475, 7.19355, 0.0739746, 10.4475, 8.19355, -0.176025, 4.44755, 6.94355, -0.176025, 4.44755, 7.69355, 0.323975, 4.44755, 7.94355, 1.07397, 4.44755, 7.44355, 0.573975, 4.44755, 6.69355, 5.57397, 10.4475, 11.1936, 6.57397, 10.4475, 9.94355, 6.57397, 10.4475, 9.44355, 3.32397, 10.4475, 7.69355, 1.57397, 10.4475, 8.69355, 167.574, 4.44755, 10.1936, 165.824, 4.44755, 10.1936, 161.574, 4.44755, 11.9436, 158.824, 4.44755, 13.9436, 166.324, 4.44755, 27.6936, 167.574, 4.44755, 27.6936, 156.824, 4.44755, 13.6936, 152.324, 4.44755, 14.4436, 152.574, 4.44755, 28.4436, 166.074, 4.44755, 28.4436, 168.074, 4.44755, 27.9436, 168.074, 4.44755, 28.6936, 172.824, 4.44755, 28.6936, 173.074, 4.44755, 27.6936, 174.824, 4.44755, 27.9436, 175.824, 4.44755, 12.4436, 175.324, 4.44755, 12.1936, 175.324, 4.44755, 10.1936, 176.324, 9.44755, 10.1936, 176.324, 9.44755, 11.4436, 181.324, 9.44755, 11.4436, 181.324, 9.44755, 10.1936, 195.574, 4.44755, 25.4436, 195.824, 4.44755, 23.6936, 195.074, 4.44755, 23.1936, 183.574, 4.44755, 10.1936, 182.324, 4.44755, 10.1936, 182.074, 4.44755, 12.4436, 183.824, 4.44755, 13.1936, 174.824, 4.44755, 28.1936, 196.324, 4.44755, 27.1936, 195.074, 4.44755, 21.1936, 190.824, 4.44755, 13.1936, 196.324, 4.44755, 10.4436, 191.324, 4.44755, 10.1936, 191.324, 4.44755, 12.9436, 196.324, 4.44755, 19.9436, 176.574, 4.44755, 10.4436, 176.574, 4.44755, 11.1936, 181.074, 4.44755, 11.1936, 181.074, 4.44755, 10.4436, 199.324, 4.44755, 20.9436, 199.324, 4.44755, 21.6936, 200.824, 4.44755, 21.9436, 202.074, 4.44755, 23.1936, 202.074, 4.44755, 19.6936, 198.324, 4.44755, 19.9436, 208.074, 4.44755, 11.1936, 204.324, 4.44755, 10.4436, -31.676, 4.44755, 13.9436, -31.676, 4.44755, 15.1936, -18.176, 4.44755, 21.4436, -18.176, 4.44755, 14.4436, -19.426, 4.44755, 14.4436, -21.176, 4.44755, 20.9436, -20.676, 4.44755, 13.4436, -27.426, 4.44755, 21.6936, -29.426, 4.44755, 21.4436, 184.574, 9.44755, 10.9436, 184.574, 9.44755, 12.1936, 190.324, 9.44755, 12.1936, 190.324, 9.44755, 10.9436, -19.426, 14.4475, 11.1936, -19.926, 14.4475, 11.9436, -19.676, 14.4475, 12.9436, -17.676, 14.4475, 12.9436, -17.676, 14.4475, 11.6936, -18.176, 14.4475, 11.1936, -18.926, 14.4475, 13.4436, 184.824, 4.44755, 11.1936, 184.824, 4.44755, 11.9436, 185.324, 4.44755, 11.9436, 185.324, 4.44755, 11.1936, 186.574, 4.44755, 11.1936, 186.574, 4.44755, 11.9436, 188.324, 4.44755, 11.9436, 188.324, 4.44755, 11.1936, 189.574, 4.44755, 11.1936, 189.574, 4.44755, 11.9436, 190.074, 4.44755, 11.9436, 190.074, 4.44755, 11.1936, -19.176, 4.44755, 12.9436, -17.926, 4.44755, 12.6936, -18.426, 4.44755, 11.4436, -19.426, 4.44755, 11.6936, -16.676, 4.44755, 13.4436, -5.92603, 4.44755, 23.1936, -4.92603, 4.44755, 13.6936, 126.574, 4.44755, 29.1936, 126.824, 4.44755, 21.9436, 126.074, 4.44755, 17.1936, 103.324, 4.44755, 31.1936, 197.824, 12.4475, 20.9436, 196.574, 12.4475, 20.9436, 196.074, 12.4475, 21.4436, 196.074, 12.4475, 22.6936, 196.824, 12.4475, 23.1936, 198.574, 12.4475, 22.6936, 201.324, 12.4475, 24.1936, 200.324, 12.4475, 22.9436, 200.324, 12.4475, 27.1936, 201.324, 12.4475, 25.9436, 196.824, 12.4475, 26.1936, 197.824, 12.4475, 27.1936, 196.324, 4.44755, 21.6936, 196.324, 4.44755, 22.4436, 197.824, 4.44755, 21.9436, 197.574, 4.44755, 21.1936, 218.074, 4.44755, 30.6936, 217.574, 4.44755, 30.9436, 217.574, 4.44755, 34.4436, 238.574, 4.44755, 25.9436, 236.074, 4.44755, 27.1936, 235.574, 4.44755, 28.4436, 241.574, 4.44755, 30.1936, 240.574, 4.44755, 27.9436, 233.824, 4.44755, 26.6936, 235.074, 4.44755, 26.1936, 235.574, 4.44755, 23.1936, 233.824, 4.44755, 21.9436, 230.074, 4.44755, 21.1936, 223.324, 4.44755, 42.4436, 223.824, 4.44755, 43.1936, 227.324, 4.44755, 44.4436, 232.074, 4.44755, 44.4436, 218.324, 4.44755, 35.1936, 220.574, 4.44755, 25.1936, 219.074, 4.44755, 27.6936, 219.824, 4.44755, 39.4436, 221.324, 4.44755, 41.4436, 236.574, 4.44755, 42.4436, 239.324, 4.44755, 39.6936, 241.574, 4.44755, 35.6936, 233.824, 4.44755, 28.1936, 225.074, 4.44755, 21.9436, 245.574, 4.44755, 35.1936, 245.324, 4.44755, 30.4436, 0.573975, 14.4475, 23.4436, 0.323975, 14.4475, 22.1936, -0.176025, 14.4475, 21.9436, -1.42603, 14.4475, 22.4436, -1.17603, 14.4475, 23.9436, -0.426025, 14.4475, 24.1936, -17.426, 14.4475, 25.9436, -16.926, 14.4475, 25.4436, -16.926, 14.4475, 24.1936, -17.676, 14.4475, 23.1936, -19.176, 14.4475, 22.9436, -20.176, 14.4475, 23.4436, 200.074, 4.44755, 23.1936, 199.074, 4.44755, 23.1936, 198.324, 4.44755, 24.1936, 197.074, 4.44755, 24.1936, 197.074, 4.44755, 25.9436, 200.074, 4.44755, 26.9436, 201.074, 4.44755, 25.6936, 201.074, 4.44755, 24.4436, 198.074, 4.44755, 26.9436, 237.324, 4.44755, 24.1936, -10.926, 10.4475, 37.9436, -9.42603, 10.4475, 39.1936, -8.92603, 10.4475, 38.9436, -1.67603, 10.4475, 25.1936, -2.17603, 10.4475, 24.1936, -3.42603, 10.4475, 23.6936, 272.574, 4.44755, 23.9436, 270.824, 4.44755, 28.4436, 270.824, 4.44755, 28.9436, 271.574, 4.44755, 28.6936, 273.324, 4.44755, 24.1936, 273.324, 4.44755, 23.6936, 202.824, 4.44755, 30.9436, 202.324, 4.44755, 26.4436, 200.074, 4.44755, 28.4436, 205.824, 4.44755, 34.6936, 207.324, 4.44755, 34.6936, 207.074, 4.44755, 30.9436, 198.574, 4.44755, 36.4436, 197.324, 4.44755, 28.1936, 174.824, 4.44755, 29.4436, 193.324, 4.44755, 39.4436, 204.324, 4.44755, 36.1936, 174.824, 4.44755, 36.1936, 174.824, 4.44755, 37.4436, 173.824, 4.44755, 29.6936, 173.824, 4.44755, 35.9436, -8.67603, 14.4475, 30.4436, -8.92603, 14.4475, 29.1936, -9.92603, 14.4475, 28.9436, -9.67603, 14.4475, 32.6936, -15.676, 14.4475, 31.1936, -15.176, 14.4475, 32.1936, -14.176, 14.4475, 33.1936, -15.426, 14.4475, 28.4436, -15.676, 14.4475, 28.9436, -12.676, 14.4475, 33.6936, 152.574, 4.44755, 45.1936, 154.574, 4.44755, 45.1936, 154.574, 4.44755, 43.6936, 156.824, 4.44755, 41.6936, 152.574, 4.44755, 36.1936, 166.074, 4.44755, 36.1936, 167.074, 4.44755, 35.9436, 167.074, 4.44755, 29.6936, 166.074, 4.44755, 29.4436, 152.324, 4.44755, 29.4436, 150.074, 4.44755, 29.6936, 150.324, 4.44755, 35.9436, 159.574, 4.44755, 41.6936, 161.074, 4.44755, 42.9436, 166.324, 4.44755, 37.9436, 259.324, 4.44755, 28.4436, 258.824, 4.44755, 28.4436, 258.824, 4.44755, 29.6936, 259.324, 4.44755, 31.6936, 258.824, 4.44755, 35.6936, 258.824, 4.44755, 37.1936, 259.324, 4.44755, 37.1936, 259.324, 4.44755, 34.4436, 256.324, 4.44755, 35.6936, 256.574, 4.44755, 30.1936, 253.574, 4.44755, 30.6936, 253.574, 4.44755, 35.1936, 258.324, 4.44755, 35.1936, 256.074, 4.44755, 37.4436, 256.574, 4.44755, 37.4436, 261.324, 4.44755, 34.1936, 261.324, 4.44755, 31.9436, 258.324, 4.44755, 30.1936, 256.074, 4.44755, 28.4436, 168.074, 4.44755, 36.9436, 172.824, 4.44755, 36.9436, 172.824, 4.44755, 36.1936, 167.824, 4.44755, 35.9436, 172.824, 4.44755, 29.4436, 167.824, 4.44755, 29.6936, 257.324, 10.4475, 28.6936, 257.324, 10.4475, 29.1936, 257.824, 10.4475, 29.1936, 257.824, 10.4475, 28.6936, 128.574, 4.44755, 35.9436, 128.574, 4.44755, 29.6936, 126.824, 4.44755, 29.6936, 126.574, 4.44755, 36.1936, 109.074, 4.44755, 41.6936, 126.824, 4.44755, 41.1936, 108.324, 4.44755, 38.9436, 105.324, 4.44755, 35.1936, 270.824, 4.44755, 31.4436, 269.324, 4.44755, 30.9436, 268.824, 4.44755, 31.6936, 270.574, 4.44755, 32.9436, 268.324, 4.44755, 34.1936, 269.074, 4.44755, 37.4436, 271.324, 4.44755, 37.6936, 271.324, 4.44755, 35.1936, 168.324, 4.44755, 54.9436, 173.074, 4.44755, 55.6936, 173.074, 4.44755, 53.9436, 168.074, 4.44755, 53.1936, 161.824, 4.44755, 43.9436, 167.824, 4.44755, 37.9436, 173.074, 4.44755, 37.9436, 160.574, 4.44755, 48.4436, 159.324, 4.44755, 48.9436, 159.324, 4.44755, 53.4436, 161.824, 4.44755, 46.6936, 174.324, 4.44755, 53.6936, 174.074, 4.44755, 37.9436, 192.574, 4.44755, 39.9436, 174.324, 4.44755, 37.9436, 260.824, 4.44755, 46.1936, 261.074, 4.44755, 46.1936, 261.574, 4.44755, 44.4436, 260.824, 4.44755, 41.6936, 268.074, 4.44755, 41.6936, 264.824, 4.44755, 43.6936, 265.824, 4.44755, 44.4436, 262.574, 4.44755, 43.6936, 278.074, 4.44755, 43.6936, 279.574, 4.44755, 45.4436, 279.574, 4.44755, 41.1936, 276.074, 4.44755, 43.6936, 271.574, 4.44755, 41.4436, 268.574, 4.44755, 41.1936, 274.574, 4.44755, 44.9436, 266.074, 4.44755, 45.4436, 274.574, 4.44755, 45.4436, 189.574, 4.44755, 53.9436, 122.824, 4.44755, 53.4436, 124.324, 4.44755, 52.6936, 123.074, 4.44755, 52.4436, 126.074, 4.44755, 49.6936, 126.074, 4.44755, 51.1936, 127.074, 4.44755, 50.4436, 122.324, 4.44755, 51.6936, 120.574, 4.44755, 55.6936, 125.574, 4.44755, 48.9436, 109.574, 4.44755, 42.6936, 109.324, 4.44755, 46.9436, 115.324, 4.44755, 53.1936, 117.074, 4.44755, 58.4436, 117.824, 4.44755, 59.1936, 122.324, 4.44755, 49.4436, 123.074, 4.44755, 48.6936, 159.074, 12.4475, 47.9436, 160.074, 12.4475, 47.4436, 160.824, 12.4475, 46.1936, 160.574, 12.4475, 43.9436, 159.074, 12.4475, 42.6936, 157.324, 12.4475, 42.6936, 155.574, 12.4475, 46.4436, 157.074, 12.4475, 47.9436, 155.574, 12.4475, 44.1936, 156.574, 4.44755, 43.4436, 155.824, 4.44755, 44.4436, 155.824, 4.44755, 46.1936, 159.824, 4.44755, 47.1936, 160.574, 4.44755, 45.9436, 160.324, 4.44755, 44.1936, 158.824, 4.44755, 42.9436, 157.324, 4.44755, 47.6936, 263.074, 10.4475, 47.6936, 264.074, 10.4475, 47.6936, 265.074, 10.4475, 46.9436, 265.074, 10.4475, 45.4436, 264.324, 10.4475, 44.6936, 262.574, 10.4475, 44.9436, 262.074, 10.4475, 45.9436, 278.324, 10.4475, 45.1936, 277.574, 10.4475, 44.6936, 276.574, 10.4475, 44.6936, 278.074, 10.4475, 47.4436, 278.574, 10.4475, 46.4436, 275.574, 10.4475, 45.4436, 275.574, 10.4475, 46.9436, 276.324, 10.4475, 47.6936, 262.824, 4.44755, 45.1936, 262.574, 4.44755, 45.6936, 262.574, 4.44755, 46.6936, 264.824, 4.44755, 46.6936, 264.824, 4.44755, 45.6936, 264.074, 4.44755, 44.9436, 263.324, 4.44755, 47.4436, 275.824, 4.44755, 45.6936, 275.824, 4.44755, 46.6936, 276.574, 4.44755, 47.4436, 278.074, 4.44755, 46.9436, 277.824, 4.44755, 45.1936, 276.824, 4.44755, 44.9436, 154.574, 4.44755, 46.9436, 156.074, 4.44755, 48.6936, 152.574, 4.44755, 53.1936, 260.824, 4.44755, 56.6936, 261.074, 4.44755, 56.6936, 261.574, 4.44755, 54.9436, 262.074, 4.44755, 48.4436, 262.574, 4.44755, 54.1936, 278.324, 4.44755, 54.1936, 279.574, 4.44755, 55.9436, 279.574, 4.44755, 46.9436, 278.074, 4.44755, 48.6936, 266.074, 4.44755, 55.4436, 266.074, 4.44755, 56.6936, 274.574, 4.44755, 56.6936, 274.574, 4.44755, 55.4436, 275.824, 4.44755, 54.1936, 275.824, 4.44755, 48.6936, 264.574, 4.44755, 48.6936, 265.074, 4.44755, 54.4436, 274.574, 4.44755, 47.4436, 266.074, 4.44755, 47.4436, 123.574, 25.4475, 51.4436, 124.824, 25.4475, 51.4436, 125.074, 25.4475, 50.9436, 124.574, 25.4475, 49.6936, 123.324, 25.4475, 49.9436, 123.824, 4.44755, 51.1936, 124.574, 4.44755, 51.1936, 124.824, 4.44755, 50.6936, 124.324, 4.44755, 49.9436, 123.574, 4.44755, 50.1936, 168.074, 4.44755, 66.6936, 168.574, 4.44755, 70.4436, 172.824, 4.44755, 70.4436, 263.074, 10.4475, 58.1936, 264.324, 10.4475, 58.1936, 265.074, 10.4475, 57.4436, 264.074, 10.4475, 55.1936, 262.574, 10.4475, 55.4436, 262.074, 10.4475, 56.4436, 265.074, 10.4475, 55.9436, 275.574, 10.4475, 57.4436, 276.574, 10.4475, 58.1936, 277.824, 10.4475, 57.9436, 277.824, 10.4475, 55.1936, 276.324, 10.4475, 55.1936, 275.574, 10.4475, 55.9436, 278.574, 10.4475, 56.9436, 262.574, 4.44755, 57.1936, 263.324, 4.44755, 57.9436, 264.074, 4.44755, 57.9436, 264.824, 4.44755, 57.1936, 264.824, 4.44755, 56.1936, 263.824, 4.44755, 55.4436, 262.574, 4.44755, 56.1936, 278.074, 4.44755, 55.9436, 277.574, 4.44755, 55.4436, 276.574, 4.44755, 55.4436, 275.824, 4.44755, 56.1936, 275.824, 4.44755, 57.1936, 276.824, 4.44755, 57.9436, 278.074, 4.44755, 57.1936, 260.824, 4.44755, 66.1936, 261.074, 4.44755, 66.1936, 261.324, 4.44755, 64.6936, 261.574, 4.44755, 58.4436, 262.324, 4.44755, 63.6936, 262.574, 4.44755, 59.1936, 278.324, 4.44755, 63.6936, 279.574, 4.44755, 65.1936, 279.574, 4.44755, 57.4436, 278.824, 4.44755, 58.6936, 266.074, 4.44755, 64.9436, 266.074, 4.44755, 65.9436, 274.574, 4.44755, 65.9436, 277.824, 4.44755, 59.1936, 275.824, 4.44755, 63.6936, 276.074, 4.44755, 59.1936, 264.824, 4.44755, 59.1936, 265.074, 4.44755, 63.6936, 274.824, 4.44755, 64.4436, 274.574, 4.44755, 57.9436, 266.074, 4.44755, 57.9436, 262.824, 10.4475, 67.4436, 263.824, 10.4475, 67.6936, 265.074, 10.4475, 66.9436, 264.574, 10.4475, 64.6936, 262.824, 10.4475, 64.6936, 262.074, 10.4475, 65.9436, 265.074, 10.4475, 65.4436, 277.824, 10.4475, 64.6936, 276.324, 10.4475, 64.6936, 275.574, 10.4475, 65.4436, 276.074, 10.4475, 67.4436, 277.824, 10.4475, 67.4436, 278.574, 10.4475, 66.4436, 264.824, 4.44755, 66.6936, 264.324, 4.44755, 64.9436, 262.574, 4.44755, 65.4436, 262.574, 4.44755, 66.6936, 263.074, 4.44755, 67.1936, 264.324, 4.44755, 67.1936, 263.074, 4.44755, 64.9436, 277.574, 4.44755, 64.9436, 276.574, 4.44755, 64.9436, 275.824, 4.44755, 65.6936, 276.324, 4.44755, 67.1936, 277.574, 4.44755, 67.1936, 278.324, 4.44755, 66.1936, 279.574, 4.44755, 74.4436, 279.574, 4.44755, 66.9436, 278.324, 4.44755, 68.4436, 276.324, 4.44755, 68.6936, 274.074, 4.44755, 74.4436, 266.074, 4.44755, 67.4436, 274.824, 4.44755, 67.6936, 264.824, 4.44755, 68.4436, 261.324, 4.44755, 67.4436, 260.824, 4.44755, 80.1936, 267.074, 4.44755, 80.1936, 267.324, 4.44755, 81.9436, 273.574, 4.44755, 81.9436, 273.574, 4.44755, 74.6936, 262.324, 4.44755, 68.4436, 162.074, 4.44755, 89.4436, 165.824, 4.44755, 92.4436, 167.574, 4.44755, 92.9436, 173.324, 4.44755, 92.9436, 164.824, 4.44755, 72.1936, 162.324, 4.44755, 74.4436, 160.324, 4.44755, 77.6936, 182.074, 4.44755, 82.4436, 181.074, 4.44755, 76.9436, 180.074, 4.44755, 75.4436, 180.074, 4.44755, 88.6936, 175.824, 4.44755, 71.4436, 178.074, 4.44755, 90.6936, 159.074, 4.44755, 81.6936, 160.574, 4.44755, 87.4436, 274.574, 9.44755, 75.4436, 274.574, 9.44755, 81.9436, 279.324, 9.44755, 81.9436, 279.324, 9.44755, 75.4436, 280.574, 9.44755, 80.9436, 286.574, 9.44755, 80.9436, 286.574, 9.44755, 75.4436, 280.574, 9.44755, 75.4436, 274.824, 4.44755, 75.6936, 274.824, 4.44755, 81.9436, 279.574, 4.44755, 81.9436, 279.574, 4.44755, 75.6936, 280.324, 9.44755, 83.1936, 274.574, 9.44755, 83.1936, 274.574, 9.44755, 87.4436, 286.574, 9.44755, 87.4436, 259.824, 9.44755, 83.1936, 259.574, 9.44755, 81.1936, 254.074, 9.44755, 81.1936, 254.074, 9.44755, 93.1936, 266.324, 9.44755, 93.1936, 266.324, 9.44755, 83.1936, 260.824, 9.44755, 81.1936, 260.824, 9.44755, 81.9436, 266.324, 9.44755, 81.9436, 266.324, 9.44755, 81.1936, 260.824, 4.44755, 81.4436, 260.824, 4.44755, 81.9436, 266.074, 4.44755, 81.9436, 266.074, 4.44755, 81.4436) @@ -859,17 +861,6 @@ tracks/0/keys = { "update": 0, "values": [Vector3(2408.5, -14937.2, -4001.35), Vector3(2370.23, -14651.5, -3831.03)] } -tracks/1/type = "audio" -tracks/1/imported = false -tracks/1/enabled = true -tracks/1/path = NodePath("../Audio/RUMBLE") -tracks/1/interp = 1 -tracks/1/loop_wrap = true -tracks/1/keys = { -"clips": [], -"times": PackedFloat32Array() -} -tracks/1/use_blend = true [sub_resource type="Animation" id="Animation_o5pdk"] length = 0.001 @@ -1034,7 +1025,7 @@ tracks/19/enabled = true tracks/19/path = NodePath("Armature/Skeleton3D:Bone.019") tracks/19/interp = 1 tracks/19/loop_wrap = true -tracks/19/keys = PackedFloat32Array(0, 1, -0.244115, -0.0562858, -0.0233865, 0.967829, 4, 1, -0.244013, -0.0559096, -0.0244239, 0.967851, 5.6, 1, -0.243907, -0.0555257, -0.0254826, 0.967872, 6.93333, 1, -0.243794, -0.0551139, -0.0266181, 0.967894, 8, 1, -0.243688, -0.0547281, -0.0276815, 0.967913, 9.06667, 1, -0.243568, -0.0542941, -0.0288774, 0.967932, 9.86667, 1, -0.24347, -0.0539392, -0.0298553, 0.967947, 10.6667, 1, -0.243364, -0.0535609, -0.0308975, 0.967962, 11.4667, 1, -0.243253, -0.0531587, -0.0320053, 0.967976, 12.2667, 1, -0.243134, -0.0527353, -0.0331711, 0.96799, 13.0667, 1, -0.24301, -0.0522911, -0.0343941, 0.968002, 13.8667, 1, -0.24288, -0.0518273, -0.0356709, 0.968014, 14.6667, 1, -0.242744, -0.0513455, -0.0369966, 0.968024, 15.4667, 1, -0.242603, -0.0508457, -0.0383716, 0.968032, 16, 1, -0.242507, -0.050504, -0.0393113, 0.968036, 16.8, 1, -0.242357, -0.049978, -0.0407578, 0.968041, 17.3333, 1, -0.242255, -0.0496198, -0.0417425, 0.968043, 17.8667, 1, -0.242151, -0.0492551, -0.042745, 0.968044, 18.4, 1, -0.242045, -0.0488851, -0.0437619, 0.968044, 18.9333, 1, -0.241938, -0.0485096, -0.0447934, 0.968043, 19.7333, 1, -0.241773, -0.0479373, -0.0463657, 0.968038, 20.5333, 1, -0.241605, -0.0473548, -0.0479654, 0.968031, 21.0667, 1, -0.241492, -0.0469615, -0.0490451, 0.968024, 21.6, 1, -0.241377, -0.0465646, -0.0501347, 0.968016, 22.1333, 1, -0.24126, -0.0461643, -0.0512333, 0.968007, 22.6667, 1, -0.241143, -0.0457612, -0.0523392, 0.967996, 23.2, 1, -0.241024, -0.0453553, -0.0534527, 0.967984, 24, 1, -0.240845, -0.0447426, -0.0551332, 0.967963, 24.5333, 1, -0.240724, -0.0443317, -0.0562599, 0.967947, 26.1333, 1, -0.240359, -0.0430922, -0.0596572, 0.96789, 26.6667, 1, -0.240236, -0.0426777, -0.0607926, 0.967869, 27.7333, 1, -0.23999, -0.0418491, -0.0630622, 0.967821, 28.2667, 1, -0.239866, -0.0414355, -0.0641945, 0.967795, 28.8, 1, -0.239743, -0.041023, -0.0653239, 0.967767, 29.3333, 1, -0.239619, -0.0406117, -0.0664496, 0.967738, 29.8667, 1, -0.239497, -0.0402022, -0.0675703, 0.967708, 30.4, 1, -0.239374, -0.0397946, -0.0686855, 0.967677, 30.9333, 1, -0.239252, -0.0393894, -0.069794, 0.967645, 31.4667, 1, -0.23913, -0.0389869, -0.0708948, 0.967611, 32, 1, -0.239009, -0.0385872, -0.0719877, 0.967576, 32.5333, 1, -0.238889, -0.0381913, -0.0730703, 0.96754, 33.0667, 1, -0.23877, -0.0377988, -0.0741431, 0.967504, 33.6, 1, -0.238652, -0.0374104, -0.0752046, 0.967466, 34.1333, 1, -0.238535, -0.0370266, -0.0762536, 0.967427, 35.2, 1, -0.238305, -0.0362733, -0.0783117, 0.967348, 35.7333, 1, -0.238192, -0.0359045, -0.079319, 0.967308, 36.2667, 1, -0.238081, -0.0355416, -0.0803102, 0.967267, 36.8, 1, -0.237971, -0.0351849, -0.0812842, 0.967225, 37.3333, 1, -0.237864, -0.0348343, -0.0822416, 0.967183, 37.8667, 1, -0.237758, -0.0344911, -0.0831787, 0.967142, 38.6667, 1, -0.237604, -0.0339889, -0.0845495, 0.967078, 39.4667, 1, -0.237455, -0.0335047, -0.0858712, 0.967016, 40.2667, 1, -0.237311, -0.0330384, -0.0871439, 0.966953, 41.0667, 1, -0.237174, -0.0325918, -0.0883629, 0.966891, 41.8667, 1, -0.237043, -0.032166, -0.0895249, 0.966831, 42.6667, 1, -0.236918, -0.0317615, -0.0906291, 0.966772, 43.4667, 1, -0.236802, -0.0313809, -0.091668, 0.966715, 44.5333, 1, -0.236658, -0.0309105, -0.092952, 0.966642, 45.6, 1, -0.236529, -0.0304857, -0.0941123, 0.966575, 46.6667, 1, -0.236416, -0.030109, -0.0951416, 0.966514, 48, 1, -0.236298, -0.0297109, -0.0962307, 0.966447, 49.6, 1, -0.236194, -0.0293466, -0.0972295, 0.966384, 56, 1, -0.23695, -0.029124, -0.0978815, 0.96614, 57.6, 1, -0.238029, -0.0292606, -0.0975297, 0.965906, 58.6667, 1, -0.238985, -0.0293819, -0.0972146, 0.965698, 59.7333, 1, -0.240134, -0.0295277, -0.0968341, 0.965447, 60.5333, 1, -0.241117, -0.0296527, -0.0965071, 0.96523, 61.3333, 1, -0.242201, -0.0297905, -0.0961457, 0.964991, 62.1333, 1, -0.243392, -0.0299421, -0.0957477, 0.964726, 62.9333, 1, -0.244682, -0.0301062, -0.0953157, 0.964437, 63.7333, 1, -0.246073, -0.0302832, -0.0948489, 0.964124, 64.8, 1, -0.248084, -0.0305392, -0.0941728, 0.963667, 65.3333, 1, -0.249152, -0.0306752, -0.0938128, 0.963422, 65.8667, 1, -0.250268, -0.0308174, -0.0934365, 0.963165, 66.6667, 1, -0.252018, -0.0310402, -0.0928455, 0.962758, 67.2, 1, -0.253241, -0.031196, -0.0924318, 0.962472, 68, 1, -0.255149, -0.0314391, -0.0917852, 0.962022, 69.0667, 1, -0.257845, -0.0317826, -0.0908703, 0.961378, 69.6, 1, -0.259254, -0.0319622, -0.0903911, 0.961039, 70.1333, 1, -0.260705, -0.0321471, -0.0898973, 0.960686, 70.9333, 1, -0.262956, -0.032434, -0.0891299, 0.960135, 71.4667, 1, -0.264508, -0.0326319, -0.0886, 0.959751, 72.2667, 1, -0.266909, -0.032938, -0.0877789, 0.959151, 72.8, 1, -0.26856, -0.0331485, -0.0872133, 0.958734, 73.6, 1, -0.271109, -0.0334735, -0.0863391, 0.958084, 74.4, 1, -0.273746, -0.0338098, -0.0854329, 0.957403, 74.9333, 1, -0.275552, -0.0340401, -0.0848114, 0.956932, 75.4667, 1, -0.277396, -0.0342753, -0.0841757, 0.956447, 75.7333, 1, -0.278332, -0.0343946, -0.083853, 0.956199, 76.2667, 1, -0.280232, -0.034637, -0.0831968, 0.955693, 76.5333, 1, -0.281197, -0.03476, -0.0828633, 0.955434, 76.8, 1, -0.28217, -0.0348842, -0.0825266, 0.955172, 77.3333, 1, -0.284143, -0.0351358, -0.0818435, 0.954636, 78.4, 1, -0.288202, -0.0356537, -0.0804349, 0.953519, 79.2, 1, -0.291341, -0.0360541, -0.0793431, 0.952641, 80, 1, -0.294557, -0.0364645, -0.0782219, 0.951729, 80.2667, 1, -0.295648, -0.0366038, -0.0778409, 0.951416, 80.5333, 1, -0.296748, -0.0367441, -0.0774568, 0.9511, 80.8, 1, -0.297856, -0.0368854, -0.0770695, 0.95078, 81.3333, 1, -0.300095, -0.0371711, -0.0762857, 0.950127, 81.6, 1, -0.301229, -0.0373159, -0.0758882, 0.949794, 81.8667, 1, -0.302372, -0.0374617, -0.0754876, 0.949458, 82.1333, 1, -0.303522, -0.0376085, -0.0750839, 0.949117, 82.4, 1, -0.30468, -0.0377563, -0.0746771, 0.948772, 82.9333, 1, -0.307022, -0.0380552, -0.0738535, 0.948069, 83.4667, 1, -0.309398, -0.0383584, -0.0730167, 0.947349, 83.7333, 1, -0.310597, -0.0385115, -0.0725938, 0.946983, 84.2667, 1, -0.313021, -0.0388209, -0.0717379, 0.946237, 84.5333, 1, -0.314246, -0.0389772, -0.071305, 0.945857, 85.6, 1, -0.319222, -0.0396124, -0.0695425, 0.944295, 85.8667, 1, -0.320486, -0.0397738, -0.0690938, 0.943892, 86.9333, 1, -0.325617, -0.0404288, -0.0672686, 0.942239, 87.7333, 1, -0.329545, -0.0409304, -0.0658671, 0.94095, 88, 1, -0.330868, -0.0410993, -0.0653941, 0.940511, 88.5333, 1, -0.33354, -0.0414405, -0.0644377, 0.939618, 88.8, 1, -0.334886, -0.0416124, -0.0639553, 0.939164, 90.1333, 1, -0.341724, -0.0424856, -0.0614981, 0.936823, 90.4, 1, -0.343112, -0.0426629, -0.0609979, 0.93634, 90.6667, 1, -0.344507, -0.042841, -0.0604949, 0.935853, 90.9333, 1, -0.34591, -0.0430202, -0.0599883, 0.935359, 91.2, 1, -0.34732, -0.0432002, -0.0594789, 0.934861, 91.4667, 1, -0.348735, -0.043381, -0.0589668, 0.934358, 91.7333, 1, -0.350157, -0.0435626, -0.058452, 0.93385, 92, 1, -0.351585, -0.043745, -0.0579345, 0.933337, 92.2667, 1, -0.353022, -0.0439285, -0.0574134, 0.932818, 92.5333, 1, -0.354465, -0.0441128, -0.0568896, 0.932294, 92.8, 1, -0.355913, -0.0442978, -0.0563632, 0.931765, 93.0667, 1, -0.357368, -0.0444836, -0.0558341, 0.931232, 93.3333, 1, -0.358828, -0.0446702, -0.0553023, 0.930693, 93.6, 1, -0.360296, -0.0448577, -0.054767, 0.930148, 93.8667, 1, -0.361771, -0.045046, -0.0542292, 0.929598, 94.1333, 1, -0.36325, -0.0452351, -0.0536887, 0.929043, 95.2, 1, -0.36923, -0.045999, -0.0514993, 0.926769, 95.7333, 1, -0.372255, -0.0463855, -0.0503884, 0.9256, 96, 1, -0.373775, -0.0465797, -0.0498292, 0.925008, 96.2667, 1, -0.375303, -0.0467749, -0.0492667, 0.924409, 96.8, 1, -0.378373, -0.0471673, -0.0481342, 0.923197, 97.0667, 1, -0.379916, -0.0473645, -0.0475643, 0.922582, 97.3333, 1, -0.381465, -0.0475623, -0.046992, 0.921962, 100.8, 1, -0.402063, -0.0501949, -0.0393178, 0.913389, 101.6, 1, -0.406929, -0.0508169, -0.0374892, 0.911274, 103.2, 1, -0.416775, -0.0520756, -0.0337699, 0.906888, 107.2, 1, -0.44196, -0.0552962, -0.0241384, 0.895004, 107.467, 1, -0.443663, -0.0555141, -0.0234806, 0.894164, 107.733, 1, -0.445369, -0.0557324, -0.0228211, 0.893319, 108.267, 1, -0.44879, -0.0561699, -0.0214965, 0.891611, 109.333, 1, -0.455658, -0.0570485, -0.0188264, 0.888125, 110.133, 1, -0.460833, -0.0577106, -0.0168059, 0.885449, 110.933, 1, -0.466024, -0.0583748, -0.0147714, 0.882721, 112.267, 1, -0.474709, -0.0594861, -0.0113504, 0.878057, 112.8, 1, -0.478192, -0.0599318, -0.00997195, 0.876151, 113.333, 1, -0.481679, -0.0603781, -0.00858853, 0.874223, 116.267, 1, -0.500911, -0.0628398, -0.000892249, 0.863214, 117.067, 1, -0.506162, -0.0635121, 0.00122886, 0.860096, 117.6, 1, -0.509662, -0.0639602, 0.00264752, 0.85799, 118.133, 1, -0.51316, -0.0644083, 0.00406956, 0.855863, 118.667, 1, -0.516657, -0.064856, 0.00549458, 0.853715, 118.933, 1, -0.518404, -0.0650798, 0.00620835, 0.852633, 120.533, 1, -0.528871, -0.0664203, 0.0105041, 0.846034, 120.8, 1, -0.530612, -0.0666433, 0.011222, 0.844916, 121.333, 1, -0.53409, -0.0670887, 0.0126593, 0.842667, 121.867, 1, -0.537562, -0.0675336, 0.0140985, 0.840397, 122.133, 1, -0.539296, -0.0677557, 0.0148186, 0.839255, 128.267, 1, -0.578572, -0.0727892, 0.0314172, 0.811769, 128.8, 1, -0.581917, -0.0732181, 0.0328573, 0.809279, 130.933, 1, -0.595158, -0.074916, 0.0385998, 0.799178, 131.467, 1, -0.59843, -0.0753356, 0.0400296, 0.79662, 131.733, 1, -0.60006, -0.0755447, 0.0407436, 0.795337, 133.067, 1, -0.608148, -0.0765821, 0.044302, 0.788878, 134.667, 1, -0.617707, -0.0778086, 0.0485436, 0.781042, 134.933, 1, -0.619284, -0.0780109, 0.049247, 0.779728, 135.2, 1, -0.620856, -0.0782127, 0.0499495, 0.778412, 136, 1, -0.625544, -0.0788143, 0.0520504, 0.77445, 136.533, 1, -0.628644, -0.0792121, 0.053445, 0.7718, 137.333, 1, -0.633257, -0.0798042, 0.0555282, 0.767811, 138.667, 1, -0.640839, -0.0807775, 0.0589737, 0.761133, 139.467, 1, -0.645322, -0.0813531, 0.0610239, 0.757111, 140, 1, -0.648284, -0.0817334, 0.0623837, 0.754424, 140.267, 1, -0.649756, -0.0819224, 0.0630611, 0.75308, 140.8, 1, -0.652684, -0.0822984, 0.0644112, 0.750388, 141.067, 1, -0.654139, -0.0824853, 0.0650839, 0.749041, 142.133, 1, -0.659901, -0.0832253, 0.067758, 0.743649, 142.933, 1, -0.66416, -0.0837723, 0.0697456, 0.739601, 144, 1, -0.669754, -0.084491, 0.0723705, 0.734203, 145.333, 1, -0.676606, -0.0853715, 0.0756087, 0.727461, 145.867, 1, -0.679302, -0.0857179, 0.0768897, 0.724768, 146.4, 1, -0.681974, -0.0860613, 0.0781631, 0.722077, 146.933, 1, -0.68462, -0.0864013, 0.0794281, 0.71939, 148, 1, -0.689833, -0.0870715, 0.0819328, 0.714028, 148.533, 1, -0.6924, -0.0874015, 0.0831715, 0.711355, 149.067, 1, -0.694941, -0.0877282, 0.0844017, 0.708687, 149.6, 1, -0.697455, -0.0880514, 0.0856228, 0.706026, 150.4, 1, -0.701176, -0.08853, 0.0874372, 0.702046, 150.933, 1, -0.703624, -0.0888447, 0.088635, 0.699403, 151.467, 1, -0.706043, -0.0891559, 0.0898231, 0.696768, 152, 1, -0.708437, -0.0894638, 0.091002, 0.694141, 152.533, 1, -0.710802, -0.089768, 0.0921704, 0.691525, 152.8, 1, -0.711975, -0.0899189, 0.0927511, 0.69022, 153.067, 1, -0.713141, -0.0900689, 0.0933293, 0.688918, 153.6, 1, -0.715452, -0.0903662, 0.0944781, 0.686321, 153.867, 1, -0.716596, -0.0905135, 0.0950485, 0.685028, 154.4, 1, -0.718866, -0.0908055, 0.0961821, 0.682447, 155.2, 1, -0.722219, -0.0912369, 0.0978626, 0.678601, 156, 1, -0.72551, -0.0916605, 0.0995201, 0.674781, 156.533, 1, -0.727668, -0.0919383, 0.100611, 0.672253, 156.8, 1, -0.728737, -0.0920759, 0.101153, 0.670993, 158.133, 1, -0.733978, -0.0927506, 0.10382, 0.664752, 159.467, 1, -0.739046, -0.093403, 0.106418, 0.658607, 160.267, 1, -0.742003, -0.0937838, 0.107943, 0.654969, 161.067, 1, -0.744897, -0.0941565, 0.109443, 0.651372, 162.133, 1, -0.748658, -0.0946411, 0.111401, 0.64664, 162.667, 1, -0.750499, -0.0948781, 0.112364, 0.644302, 162.933, 1, -0.751407, -0.0949952, 0.11284, 0.643141, 163.2, 1, -0.752309, -0.0951114, 0.113313, 0.641985, 163.467, 1, -0.753204, -0.0952268, 0.113784, 0.640834, 164, 1, -0.754975, -0.0954549, 0.114717, 0.638546, 164.267, 1, -0.755849, -0.0955675, 0.115178, 0.637411, 164.533, 1, -0.756717, -0.0956793, 0.115637, 0.636281, 165.333, 1, -0.75928, -0.0960096, 0.116995, 0.632921, 165.6, 1, -0.76012, -0.0961179, 0.117441, 0.631813, 166.133, 1, -0.761779, -0.0963318, 0.118325, 0.629613, 166.933, 1, -0.764218, -0.0966461, 0.119629, 0.626354, 167.467, 1, -0.765809, -0.0968513, 0.120482, 0.624211, 167.733, 1, -0.766595, -0.0969526, 0.120904, 0.623148, 168, 1, -0.767375, -0.0970531, 0.121324, 0.622091, 168.267, 1, -0.768146, -0.0971526, 0.121739, 0.621041, 168.533, 1, -0.768911, -0.0972512, 0.122152, 0.619997, 168.8, 1, -0.76967, -0.097349, 0.122561, 0.618959, 169.067, 1, -0.770422, -0.097446, 0.122968, 0.617927, 169.333, 1, -0.771167, -0.0975421, 0.123372, 0.6169, 169.6, 1, -0.771905, -0.0976372, 0.123772, 0.615882, 169.867, 1, -0.772636, -0.0977315, 0.124169, 0.614869, 170.133, 1, -0.773361, -0.0978249, 0.124563, 0.613863, 170.667, 1, -0.774791, -0.0980094, 0.125342, 0.611868, 170.933, 1, -0.775495, -0.0981002, 0.125726, 0.610882, 171.2, 1, -0.776193, -0.0981902, 0.126108, 0.609902, 171.467, 1, -0.776884, -0.0982794, 0.126486, 0.608929, 171.733, 1, -0.777569, -0.0983677, 0.126861, 0.607961, 172.8, 1, -0.78024, -0.0987124, 0.128329, 0.604163, 173.333, 1, -0.781537, -0.0988797, 0.129044, 0.602304, 173.6, 1, -0.782175, -0.098962, 0.129397, 0.601386, 174.133, 1, -0.783431, -0.0991241, 0.130092, 0.599572, 174.667, 1, -0.784663, -0.099283, 0.130775, 0.597784, 174.933, 1, -0.785267, -0.099361, 0.131111, 0.596903, 175.2, 1, -0.785866, -0.0994382, 0.131444, 0.596028, 175.467, 1, -0.786458, -0.0995146, 0.131774, 0.595161, 176, 1, -0.787624, -0.0996651, 0.132424, 0.593447, 176.533, 1, -0.788762, -0.0998119, 0.133061, 0.591766, 177.067, 1, -0.789875, -0.0999556, 0.133685, 0.590114, 177.6, 1, -0.790962, -0.100096, 0.134295, 0.588494, 177.867, 1, -0.791496, -0.100165, 0.134595, 0.587695, 178.667, 1, -0.793059, -0.100367, 0.135477, 0.585346, 179.2, 1, -0.794068, -0.100497, 0.136047, 0.583821, 179.733, 1, -0.795053, -0.100624, 0.136604, 0.582327, 180.267, 1, -0.796012, -0.100748, 0.137148, 0.580867, 180.8, 1, -0.796944, -0.100868, 0.137679, 0.579439, 181.6, 1, -0.798297, -0.101043, 0.138449, 0.57736, 182.133, 1, -0.799166, -0.101155, 0.138946, 0.576017, 182.667, 1, -0.800011, -0.101264, 0.139429, 0.574706, 183.2, 1, -0.800829, -0.10137, 0.139898, 0.573433, 183.733, 1, -0.801623, -0.101473, 0.140354, 0.572192, 184.267, 1, -0.802392, -0.101572, 0.140796, 0.570987, 184.8, 1, -0.803135, -0.101668, 0.141224, 0.569819, 185.333, 1, -0.803854, -0.101761, 0.141639, 0.568684, 185.867, 1, -0.804547, -0.10185, 0.142039, 0.567588, 186.4, 1, -0.805215, -0.101937, 0.142426, 0.566527, 186.933, 1, -0.805858, -0.10202, 0.142799, 0.565503, 187.467, 1, -0.806476, -0.102099, 0.143157, 0.564517, 188, 1, -0.807069, -0.102176, 0.143502, 0.563566, 188.533, 1, -0.807636, -0.102249, 0.143832, 0.562656, 189.067, 1, -0.808179, -0.10232, 0.144148, 0.561782, 189.6, 1, -0.808696, -0.102386, 0.14445, 0.560947, 190.4, 1, -0.809425, -0.102481, 0.144875, 0.559768, 191.2, 1, -0.810097, -0.102567, 0.145268, 0.558677, 192, 1, -0.810714, -0.102647, 0.14563, 0.557673, 192.8, 1, -0.811271, -0.102719, 0.145956, 0.556763, 193.6, 1, -0.811773, -0.102784, 0.146251, 0.555942, 194.667, 1, -0.812352, -0.102859, 0.146592, 0.554991, 196, 1, -0.812931, -0.102934, 0.146933, 0.554038, 197.867, 1, -0.813466, -0.103003, 0.147248, 0.553155, 200, 1, -0.813683, -0.103031, 0.147376, 0.552797) +tracks/19/keys = PackedFloat32Array(0, 1, -0.244115, -0.0562858, -0.0233865, 0.967829, 4, 1, -0.244013, -0.0559096, -0.0244239, 0.967851, 5.6, 1, -0.243907, -0.0555257, -0.0254826, 0.967872, 6.93333, 1, -0.243794, -0.0551139, -0.0266181, 0.967894, 8, 1, -0.243688, -0.0547281, -0.0276815, 0.967913, 9.06667, 1, -0.243568, -0.0542941, -0.0288774, 0.967932, 9.86667, 1, -0.24347, -0.0539392, -0.0298553, 0.967947, 10.6667, 1, -0.243364, -0.0535609, -0.0308975, 0.967962, 11.4667, 1, -0.243253, -0.0531587, -0.0320053, 0.967976, 12.2667, 1, -0.243134, -0.0527353, -0.0331711, 0.96799, 13.0667, 1, -0.24301, -0.0522911, -0.0343941, 0.968002, 13.8667, 1, -0.24288, -0.0518273, -0.0356709, 0.968014, 14.6667, 1, -0.242744, -0.0513455, -0.0369966, 0.968024, 15.4667, 1, -0.242603, -0.0508457, -0.0383716, 0.968032, 16, 1, -0.242507, -0.050504, -0.0393113, 0.968036, 16.8, 1, -0.242357, -0.049978, -0.0407578, 0.968041, 17.3333, 1, -0.242255, -0.0496198, -0.0417425, 0.968043, 17.8667, 1, -0.242151, -0.0492551, -0.042745, 0.968044, 18.4, 1, -0.242045, -0.0488851, -0.0437619, 0.968044, 18.9333, 1, -0.241938, -0.0485096, -0.0447934, 0.968043, 19.7333, 1, -0.241773, -0.0479373, -0.0463657, 0.968038, 20.5333, 1, -0.241605, -0.0473548, -0.0479654, 0.968031, 21.0667, 1, -0.241492, -0.0469615, -0.0490451, 0.968024, 22.1333, 1, -0.24126, -0.0461643, -0.0512333, 0.968007, 22.6667, 1, -0.241143, -0.0457612, -0.0523392, 0.967996, 23.2, 1, -0.241377, -0.0465646, -0.0501347, 0.968016, 24, 1, -0.240845, -0.0447426, -0.0551332, 0.967963, 24.5333, 1, -0.240724, -0.0443317, -0.0562599, 0.967947, 26.1333, 1, -0.240359, -0.0430922, -0.0596572, 0.96789, 26.6667, 1, -0.240236, -0.0426777, -0.0607926, 0.967869, 27.7333, 1, -0.23999, -0.0418491, -0.0630622, 0.967821, 28.2667, 1, -0.239866, -0.0414355, -0.0641945, 0.967795, 28.8, 1, -0.239743, -0.041023, -0.0653239, 0.967767, 29.3333, 1, -0.239619, -0.0406117, -0.0664496, 0.967738, 29.8667, 1, -0.239497, -0.0402022, -0.0675703, 0.967708, 30.4, 1, -0.239374, -0.0397946, -0.0686855, 0.967677, 30.9333, 1, -0.239252, -0.0393894, -0.069794, 0.967645, 31.4667, 1, -0.23913, -0.0389869, -0.0708948, 0.967611, 32, 1, -0.239009, -0.0385872, -0.0719877, 0.967576, 32.5333, 1, -0.238889, -0.0381913, -0.0730703, 0.96754, 33.0667, 1, -0.23877, -0.0377988, -0.0741431, 0.967504, 33.6, 1, -0.238652, -0.0374104, -0.0752046, 0.967466, 34.1333, 1, -0.238535, -0.0370266, -0.0762536, 0.967427, 35.2, 1, -0.238305, -0.0362733, -0.0783117, 0.967348, 35.7333, 1, -0.238192, -0.0359045, -0.079319, 0.967308, 36.2667, 1, -0.238081, -0.0355416, -0.0803102, 0.967267, 36.8, 1, -0.237971, -0.0351849, -0.0812842, 0.967225, 37.3333, 1, -0.237864, -0.0348343, -0.0822416, 0.967183, 37.8667, 1, -0.237758, -0.0344911, -0.0831787, 0.967142, 38.6667, 1, -0.237604, -0.0339889, -0.0845495, 0.967078, 39.4667, 1, -0.237455, -0.0335047, -0.0858712, 0.967016, 40.2667, 1, -0.237311, -0.0330384, -0.0871439, 0.966953, 41.0667, 1, -0.237174, -0.0325918, -0.0883629, 0.966891, 41.8667, 1, -0.237043, -0.032166, -0.0895249, 0.966831, 42.6667, 1, -0.236918, -0.0317615, -0.0906291, 0.966772, 43.4667, 1, -0.236802, -0.0313809, -0.091668, 0.966715, 44.5333, 1, -0.236658, -0.0309105, -0.092952, 0.966642, 45.6, 1, -0.236529, -0.0304857, -0.0941123, 0.966575, 46.6667, 1, -0.236416, -0.030109, -0.0951416, 0.966514, 48, 1, -0.236298, -0.0297109, -0.0962307, 0.966447, 49.6, 1, -0.236194, -0.0293466, -0.0972295, 0.966384, 56, 1, -0.23695, -0.029124, -0.0978815, 0.96614, 57.6, 1, -0.238029, -0.0292606, -0.0975297, 0.965906, 58.6667, 1, -0.238985, -0.0293819, -0.0972146, 0.965698, 59.7333, 1, -0.240134, -0.0295277, -0.0968341, 0.965447, 60.5333, 1, -0.241117, -0.0296527, -0.0965071, 0.96523, 61.3333, 1, -0.242201, -0.0297905, -0.0961457, 0.964991, 62.1333, 1, -0.243392, -0.0299421, -0.0957477, 0.964726, 62.9333, 1, -0.244682, -0.0301062, -0.0953157, 0.964437, 63.7333, 1, -0.246073, -0.0302832, -0.0948489, 0.964124, 64.8, 1, -0.248084, -0.0305392, -0.0941728, 0.963667, 65.3333, 1, -0.249152, -0.0306752, -0.0938128, 0.963422, 65.8667, 1, -0.250268, -0.0308174, -0.0934365, 0.963165, 66.6667, 1, -0.252018, -0.0310402, -0.0928455, 0.962758, 67.2, 1, -0.253241, -0.031196, -0.0924318, 0.962472, 68, 1, -0.255149, -0.0314391, -0.0917852, 0.962022, 69.0667, 1, -0.257845, -0.0317826, -0.0908703, 0.961378, 69.6, 1, -0.259254, -0.0319622, -0.0903911, 0.961039, 70.1333, 1, -0.260705, -0.0321471, -0.0898973, 0.960686, 70.9333, 1, -0.262956, -0.032434, -0.0891299, 0.960135, 71.4667, 1, -0.264508, -0.0326319, -0.0886, 0.959751, 72.2667, 1, -0.266909, -0.032938, -0.0877789, 0.959151, 72.8, 1, -0.26856, -0.0331485, -0.0872133, 0.958734, 73.6, 1, -0.271109, -0.0334735, -0.0863391, 0.958084, 74.4, 1, -0.273746, -0.0338098, -0.0854329, 0.957403, 74.9333, 1, -0.275552, -0.0340401, -0.0848114, 0.956932, 75.4667, 1, -0.277396, -0.0342753, -0.0841757, 0.956447, 75.7333, 1, -0.278332, -0.0343946, -0.083853, 0.956199, 76.2667, 1, -0.280232, -0.034637, -0.0831968, 0.955693, 76.5333, 1, -0.281197, -0.03476, -0.0828633, 0.955434, 76.8, 1, -0.28217, -0.0348842, -0.0825266, 0.955172, 77.3333, 1, -0.284143, -0.0351358, -0.0818435, 0.954636, 78.4, 1, -0.288202, -0.0356537, -0.0804349, 0.953519, 79.2, 1, -0.291341, -0.0360541, -0.0793431, 0.952641, 80, 1, -0.294557, -0.0364645, -0.0782219, 0.951729, 80.2667, 1, -0.295648, -0.0366038, -0.0778409, 0.951416, 80.5333, 1, -0.296748, -0.0367441, -0.0774568, 0.9511, 80.8, 1, -0.297856, -0.0368854, -0.0770695, 0.95078, 81.3333, 1, -0.300095, -0.0371711, -0.0762857, 0.950127, 81.6, 1, -0.301229, -0.0373159, -0.0758882, 0.949794, 81.8667, 1, -0.302372, -0.0374617, -0.0754876, 0.949458, 82.1333, 1, -0.303522, -0.0376085, -0.0750839, 0.949117, 82.4, 1, -0.30468, -0.0377563, -0.0746771, 0.948772, 82.9333, 1, -0.307022, -0.0380552, -0.0738535, 0.948069, 83.4667, 1, -0.309398, -0.0383584, -0.0730167, 0.947349, 83.7333, 1, -0.310597, -0.0385115, -0.0725938, 0.946983, 84.2667, 1, -0.313021, -0.0388209, -0.0717379, 0.946237, 84.5333, 1, -0.314246, -0.0389772, -0.071305, 0.945857, 85.6, 1, -0.319222, -0.0396124, -0.0695425, 0.944295, 85.8667, 1, -0.320486, -0.0397738, -0.0690938, 0.943892, 86.9333, 1, -0.325617, -0.0404288, -0.0672686, 0.942239, 87.7333, 1, -0.329545, -0.0409304, -0.0658671, 0.94095, 88, 1, -0.330868, -0.0410993, -0.0653941, 0.940511, 88.5333, 1, -0.33354, -0.0414405, -0.0644377, 0.939618, 88.8, 1, -0.334886, -0.0416124, -0.0639553, 0.939164, 90.1333, 1, -0.341724, -0.0424856, -0.0614981, 0.936823, 90.4, 1, -0.343112, -0.0426629, -0.0609979, 0.93634, 90.6667, 1, -0.344507, -0.042841, -0.0604949, 0.935853, 90.9333, 1, -0.34591, -0.0430202, -0.0599883, 0.935359, 91.2, 1, -0.34732, -0.0432002, -0.0594789, 0.934861, 91.4667, 1, -0.348735, -0.043381, -0.0589668, 0.934358, 91.7333, 1, -0.350157, -0.0435626, -0.058452, 0.93385, 92, 1, -0.351585, -0.043745, -0.0579345, 0.933337, 92.2667, 1, -0.353022, -0.0439285, -0.0574134, 0.932818, 92.5333, 1, -0.354465, -0.0441128, -0.0568896, 0.932294, 92.8, 1, -0.355913, -0.0442978, -0.0563632, 0.931765, 93.0667, 1, -0.357368, -0.0444836, -0.0558341, 0.931232, 93.3333, 1, -0.358828, -0.0446702, -0.0553023, 0.930693, 93.6, 1, -0.360296, -0.0448577, -0.054767, 0.930148, 93.8667, 1, -0.361771, -0.045046, -0.0542292, 0.929598, 94.1333, 1, -0.36325, -0.0452351, -0.0536887, 0.929043, 95.2, 1, -0.36923, -0.045999, -0.0514993, 0.926769, 95.7333, 1, -0.372255, -0.0463855, -0.0503884, 0.9256, 96, 1, -0.373775, -0.0465797, -0.0498292, 0.925008, 96.2667, 1, -0.375303, -0.0467749, -0.0492667, 0.924409, 96.8, 1, -0.378373, -0.0471673, -0.0481342, 0.923197, 97.0667, 1, -0.379916, -0.0473645, -0.0475643, 0.922582, 97.3333, 1, -0.381465, -0.0475623, -0.046992, 0.921962, 100.8, 1, -0.402063, -0.0501949, -0.0393178, 0.913389, 101.6, 1, -0.406929, -0.0508169, -0.0374892, 0.911274, 103.2, 1, -0.416775, -0.0520756, -0.0337699, 0.906888, 107.2, 1, -0.44196, -0.0552962, -0.0241384, 0.895004, 107.467, 1, -0.443663, -0.0555141, -0.0234806, 0.894164, 107.733, 1, -0.445369, -0.0557324, -0.0228211, 0.893319, 108.267, 1, -0.44879, -0.0561699, -0.0214965, 0.891611, 109.333, 1, -0.455658, -0.0570485, -0.0188264, 0.888125, 110.133, 1, -0.460833, -0.0577106, -0.0168059, 0.885449, 110.933, 1, -0.466024, -0.0583748, -0.0147714, 0.882721, 112.267, 1, -0.474709, -0.0594861, -0.0113504, 0.878057, 112.8, 1, -0.478192, -0.0599318, -0.00997195, 0.876151, 113.333, 1, -0.481679, -0.0603781, -0.00858853, 0.874223, 116.267, 1, -0.500911, -0.0628398, -0.000892249, 0.863214, 117.067, 1, -0.506162, -0.0635121, 0.00122886, 0.860096, 117.6, 1, -0.509662, -0.0639602, 0.00264752, 0.85799, 118.133, 1, -0.51316, -0.0644083, 0.00406956, 0.855863, 118.667, 1, -0.516657, -0.064856, 0.00549458, 0.853715, 118.933, 1, -0.518404, -0.0650798, 0.00620835, 0.852633, 120.533, 1, -0.528871, -0.0664203, 0.0105041, 0.846034, 120.8, 1, -0.530612, -0.0666433, 0.011222, 0.844916, 121.333, 1, -0.53409, -0.0670887, 0.0126593, 0.842667, 121.867, 1, -0.537562, -0.0675336, 0.0140985, 0.840397, 122.133, 1, -0.539296, -0.0677557, 0.0148186, 0.839255, 128.267, 1, -0.578572, -0.0727892, 0.0314172, 0.811769, 128.8, 1, -0.581917, -0.0732181, 0.0328573, 0.809279, 130.933, 1, -0.595158, -0.074916, 0.0385998, 0.799178, 131.467, 1, -0.59843, -0.0753356, 0.0400296, 0.79662, 131.733, 1, -0.60006, -0.0755447, 0.0407436, 0.795337, 133.067, 1, -0.608148, -0.0765821, 0.044302, 0.788878, 134.667, 1, -0.617707, -0.0778086, 0.0485436, 0.781042, 134.933, 1, -0.619284, -0.0780109, 0.049247, 0.779728, 135.2, 1, -0.620856, -0.0782127, 0.0499495, 0.778412, 136, 1, -0.625544, -0.0788143, 0.0520504, 0.77445, 136.533, 1, -0.628644, -0.0792121, 0.053445, 0.7718, 137.333, 1, -0.633257, -0.0798042, 0.0555282, 0.767811, 138.667, 1, -0.640839, -0.0807775, 0.0589737, 0.761133, 139.467, 1, -0.645322, -0.0813531, 0.0610239, 0.757111, 140, 1, -0.648284, -0.0817334, 0.0623837, 0.754424, 140.267, 1, -0.649756, -0.0819224, 0.0630611, 0.75308, 140.8, 1, -0.652684, -0.0822984, 0.0644112, 0.750388, 141.067, 1, -0.654139, -0.0824853, 0.0650839, 0.749041, 142.133, 1, -0.659901, -0.0832253, 0.067758, 0.743649, 142.933, 1, -0.66416, -0.0837723, 0.0697456, 0.739601, 144, 1, -0.669754, -0.084491, 0.0723705, 0.734203, 145.333, 1, -0.676606, -0.0853715, 0.0756087, 0.727461, 145.867, 1, -0.679302, -0.0857179, 0.0768897, 0.724768, 146.4, 1, -0.681974, -0.0860613, 0.0781631, 0.722077, 146.933, 1, -0.68462, -0.0864013, 0.0794281, 0.71939, 148, 1, -0.689833, -0.0870715, 0.0819328, 0.714028, 148.533, 1, -0.6924, -0.0874015, 0.0831715, 0.711355, 149.067, 1, -0.694941, -0.0877282, 0.0844017, 0.708687, 149.6, 1, -0.697455, -0.0880514, 0.0856228, 0.706026, 150.4, 1, -0.701176, -0.08853, 0.0874372, 0.702046, 150.933, 1, -0.703624, -0.0888447, 0.088635, 0.699403, 151.467, 1, -0.706043, -0.0891559, 0.0898231, 0.696768, 152, 1, -0.708437, -0.0894638, 0.091002, 0.694141, 152.533, 1, -0.710802, -0.089768, 0.0921704, 0.691525, 152.8, 1, -0.711975, -0.0899189, 0.0927511, 0.69022, 153.067, 1, -0.713141, -0.0900689, 0.0933293, 0.688918, 153.6, 1, -0.715452, -0.0903662, 0.0944781, 0.686321, 153.867, 1, -0.716596, -0.0905135, 0.0950485, 0.685028, 154.4, 1, -0.718866, -0.0908055, 0.0961821, 0.682447, 155.2, 1, -0.722219, -0.0912369, 0.0978626, 0.678601, 156, 1, -0.72551, -0.0916605, 0.0995201, 0.674781, 156.533, 1, -0.727668, -0.0919383, 0.100611, 0.672253, 156.8, 1, -0.728737, -0.0920759, 0.101153, 0.670993, 158.133, 1, -0.733978, -0.0927506, 0.10382, 0.664752, 159.467, 1, -0.739046, -0.093403, 0.106418, 0.658607, 160.267, 1, -0.742003, -0.0937838, 0.107943, 0.654969, 161.067, 1, -0.744897, -0.0941565, 0.109443, 0.651372, 162.133, 1, -0.748658, -0.0946411, 0.111401, 0.64664, 162.667, 1, -0.750499, -0.0948781, 0.112364, 0.644302, 162.933, 1, -0.751407, -0.0949952, 0.11284, 0.643141, 163.2, 1, -0.752309, -0.0951114, 0.113313, 0.641985, 163.467, 1, -0.753204, -0.0952268, 0.113784, 0.640834, 164, 1, -0.754975, -0.0954549, 0.114717, 0.638546, 164.267, 1, -0.755849, -0.0955675, 0.115178, 0.637411, 164.533, 1, -0.756717, -0.0956793, 0.115637, 0.636281, 165.333, 1, -0.75928, -0.0960096, 0.116995, 0.632921, 165.6, 1, -0.76012, -0.0961179, 0.117441, 0.631813, 166.133, 1, -0.761779, -0.0963318, 0.118325, 0.629613, 166.933, 1, -0.764218, -0.0966461, 0.119629, 0.626354, 167.467, 1, -0.765809, -0.0968513, 0.120482, 0.624211, 167.733, 1, -0.766595, -0.0969526, 0.120904, 0.623148, 168, 1, -0.767375, -0.0970531, 0.121324, 0.622091, 168.267, 1, -0.768146, -0.0971526, 0.121739, 0.621041, 168.533, 1, -0.768911, -0.0972512, 0.122152, 0.619997, 168.8, 1, -0.76967, -0.097349, 0.122561, 0.618959, 169.067, 1, -0.770422, -0.097446, 0.122968, 0.617927, 169.333, 1, -0.771167, -0.0975421, 0.123372, 0.6169, 169.6, 1, -0.771905, -0.0976372, 0.123772, 0.615882, 169.867, 1, -0.772636, -0.0977315, 0.124169, 0.614869, 170.133, 1, -0.773361, -0.0978249, 0.124563, 0.613863, 170.667, 1, -0.774791, -0.0980094, 0.125342, 0.611868, 170.933, 1, -0.775495, -0.0981002, 0.125726, 0.610882, 171.2, 1, -0.776193, -0.0981902, 0.126108, 0.609902, 171.467, 1, -0.776884, -0.0982794, 0.126486, 0.608929, 171.733, 1, -0.777569, -0.0983677, 0.126861, 0.607961, 172.8, 1, -0.78024, -0.0987124, 0.128329, 0.604163, 173.333, 1, -0.781537, -0.0988797, 0.129044, 0.602304, 173.6, 1, -0.782175, -0.098962, 0.129397, 0.601386, 174.133, 1, -0.783431, -0.0991241, 0.130092, 0.599572, 174.667, 1, -0.784663, -0.099283, 0.130775, 0.597784, 174.933, 1, -0.785267, -0.099361, 0.131111, 0.596903, 175.2, 1, -0.785866, -0.0994382, 0.131444, 0.596028, 175.467, 1, -0.786458, -0.0995146, 0.131774, 0.595161, 176, 1, -0.787624, -0.0996651, 0.132424, 0.593447, 176.533, 1, -0.788762, -0.0998119, 0.133061, 0.591766, 177.067, 1, -0.789875, -0.0999556, 0.133685, 0.590114, 177.6, 1, -0.790962, -0.100096, 0.134295, 0.588494, 177.867, 1, -0.791496, -0.100165, 0.134595, 0.587695, 178.667, 1, -0.793059, -0.100367, 0.135477, 0.585346, 179.2, 1, -0.794068, -0.100497, 0.136047, 0.583821, 179.733, 1, -0.795053, -0.100624, 0.136604, 0.582327, 180.267, 1, -0.796012, -0.100748, 0.137148, 0.580867, 180.8, 1, -0.796944, -0.100868, 0.137679, 0.579439, 181.6, 1, -0.798297, -0.101043, 0.138449, 0.57736, 182.133, 1, -0.799166, -0.101155, 0.138946, 0.576017, 182.667, 1, -0.800011, -0.101264, 0.139429, 0.574706, 183.2, 1, -0.800829, -0.10137, 0.139898, 0.573433, 183.733, 1, -0.801623, -0.101473, 0.140354, 0.572192, 184.267, 1, -0.802392, -0.101572, 0.140796, 0.570987, 184.8, 1, -0.803135, -0.101668, 0.141224, 0.569819, 185.333, 1, -0.803854, -0.101761, 0.141639, 0.568684, 185.867, 1, -0.804547, -0.10185, 0.142039, 0.567588, 186.4, 1, -0.805215, -0.101937, 0.142426, 0.566527, 186.933, 1, -0.805858, -0.10202, 0.142799, 0.565503, 187.467, 1, -0.806476, -0.102099, 0.143157, 0.564517, 188, 1, -0.807069, -0.102176, 0.143502, 0.563566, 188.533, 1, -0.807636, -0.102249, 0.143832, 0.562656, 189.067, 1, -0.808179, -0.10232, 0.144148, 0.561782, 189.6, 1, -0.808696, -0.102386, 0.14445, 0.560947, 190.4, 1, -0.809425, -0.102481, 0.144875, 0.559768, 191.2, 1, -0.810097, -0.102567, 0.145268, 0.558677, 192, 1, -0.810714, -0.102647, 0.14563, 0.557673, 192.8, 1, -0.811271, -0.102719, 0.145956, 0.556763, 193.6, 1, -0.811773, -0.102784, 0.146251, 0.555942, 194.667, 1, -0.812352, -0.102859, 0.146592, 0.554991, 196, 1, -0.812931, -0.102934, 0.146933, 0.554038, 197.867, 1, -0.813466, -0.103003, 0.147248, 0.553155, 200, 1, -0.813683, -0.103031, 0.147376, 0.552797) tracks/20/type = "rotation_3d" tracks/20/imported = true tracks/20/enabled = true @@ -1042,15 +1033,77 @@ tracks/20/path = NodePath("Armature/Skeleton3D:Bone.020") tracks/20/interp = 1 tracks/20/loop_wrap = true tracks/20/keys = PackedFloat32Array(0, 1, -0.327823, 0.0395137, 0.0862458, 0.939964, 3.73333, 1, -0.327802, 0.0389266, 0.085436, 0.94007, 5.33333, 1, -0.32778, 0.0382723, 0.0845338, 0.940186, 6.66667, 1, -0.327759, 0.0375574, 0.0835481, 0.94031, 7.73333, 1, -0.327741, 0.0368809, 0.0826156, 0.940426, 8.8, 1, -0.327722, 0.0361176, 0.0815637, 0.940554, 9.86667, 1, -0.327703, 0.0352724, 0.080399, 0.940693, 10.6667, 1, -0.327688, 0.0345883, 0.0794564, 0.940803, 11.4667, 1, -0.327675, 0.0338608, 0.0784542, 0.940919, 12.2667, 1, -0.327662, 0.0330949, 0.0773992, 0.941038, 13.0667, 1, -0.327649, 0.0322912, 0.0762924, 0.94116, 13.8667, 1, -0.327638, 0.0314518, 0.0751365, 0.941286, 14.6667, 1, -0.327628, 0.0305799, 0.0739361, 0.941413, 15.4667, 1, -0.32762, 0.0296753, 0.0726907, 0.941541, 16.2667, 1, -0.327614, 0.0287421, 0.0714063, 0.941671, 16.8, 1, -0.327611, 0.0281044, 0.0705287, 0.941757, 17.3333, 1, -0.327609, 0.0274559, 0.0696363, 0.941844, 17.8667, 1, -0.327608, 0.0267954, 0.0687275, 0.94193, 18.4, 1, -0.327608, 0.0261252, 0.0678055, 0.942015, 18.9333, 1, -0.327609, 0.0254451, 0.0668701, 0.9421, 19.4667, 1, -0.327612, 0.0247558, 0.0659221, 0.942185, 20, 1, -0.327616, 0.0240585, 0.0649632, 0.942268, 20.5333, 1, -0.327622, 0.0233526, 0.0639926, 0.94235, 21.0667, 1, -0.327629, 0.0226398, 0.0630127, 0.942431, 21.6, 1, -0.327638, 0.0219203, 0.0620237, 0.942511, 22.1333, 1, -0.327648, 0.0211946, 0.0610264, 0.942589, 22.6667, 1, -0.32766, 0.0204637, 0.0600221, 0.942665, 23.2, 1, -0.327675, 0.0197275, 0.0590108, 0.94274, 23.7333, 1, -0.327691, 0.0189874, 0.0579942, 0.942812, 24.2667, 1, -0.327709, 0.0182436, 0.0569727, 0.942883, 24.8, 1, -0.32773, 0.0174967, 0.0559472, 0.942951, 25.3333, 1, -0.327752, 0.0167475, 0.0549188, 0.943018, 25.8667, 1, -0.327777, 0.0159963, 0.0538879, 0.943081, 26.6667, 1, -0.32782, 0.0148677, 0.0523394, 0.943172, 27.2, 1, -0.327851, 0.0141147, 0.0513067, 0.94323, 27.7333, 1, -0.327885, 0.0133621, 0.0502747, 0.943284, 28.2667, 1, -0.327922, 0.0126104, 0.0492443, 0.943336, 28.8, 1, -0.327962, 0.0118603, 0.0482164, 0.943385, 29.3333, 1, -0.328005, 0.0111122, 0.0471914, 0.943431, 29.8667, 1, -0.328051, 0.0103672, 0.046171, 0.943474, 30.6667, 1, -0.328127, 0.00925576, 0.0446495, 0.943533, 31.2, 1, -0.328182, 0.00852036, 0.0436432, 0.943568, 31.7333, 1, -0.32824, 0.00778957, 0.0426437, 0.943599, 32.2667, 1, -0.328301, 0.0070644, 0.0416521, 0.943628, 33.3333, 1, -0.328436, 0.00563277, 0.0396961, 0.943675, 33.8667, 1, -0.32851, 0.00492815, 0.038734, 0.943693, 34.4, 1, -0.328588, 0.004231, 0.0377826, 0.943708, 34.9333, 1, -0.32867, 0.00354251, 0.0368436, 0.943719, 35.4667, 1, -0.328756, 0.00286336, 0.0359179, 0.943727, 36, 1, -0.328847, 0.00219336, 0.0350051, 0.943732, 36.5333, 1, -0.328943, 0.0015347, 0.0341085, 0.943732, 37.0667, 1, -0.329044, 0.000886381, 0.0332266, 0.94373, 37.6, 1, -0.329149, 0.000249811, 0.0323613, 0.943723, 38.1333, 1, -0.32926, -0.000374357, 0.0315136, 0.943713, 38.9333, 1, -0.329435, -0.00128688, 0.0302756, 0.943692, 39.4667, 1, -0.329559, -0.00187786, 0.0294748, 0.943673, 40.2667, 1, -0.329755, -0.00273785, 0.0283112, 0.943638, 41.0667, 1, -0.329964, -0.00356332, 0.0271963, 0.943595, 41.8667, 1, -0.330186, -0.00435224, 0.026133, 0.943544, 42.6667, 1, -0.330422, -0.00510388, 0.0251223, 0.943485, 43.4667, 1, -0.330673, -0.00581346, 0.024171, 0.943418, 44.2667, 1, -0.330939, -0.00648179, 0.0232778, 0.943343, 45.0667, 1, -0.331219, -0.00710535, 0.0224478, 0.94326, 45.8667, 1, -0.331516, -0.00768207, 0.0216837, 0.943169, 46.9333, 1, -0.331936, -0.00837599, 0.0207707, 0.943036, 48, 1, -0.332386, -0.00897921, 0.0199854, 0.942889, 49.3333, 1, -0.332993, -0.00959689, 0.0191957, 0.942685, 50.6667, 1, -0.33365, -0.0100553, 0.0186301, 0.942459, 52.2667, 1, -0.334508, -0.0103808, 0.0182672, 0.942159, 53.8667, 1, -0.335458, -0.0104773, 0.0182274, 0.941821, 55.4667, 1, -0.33656, -0.0104807, 0.0183252, 0.941425, 56.8, 1, -0.337601, -0.0104293, 0.0184886, 0.94105, 58.1333, 1, -0.33875, -0.0103296, 0.018725, 0.940633, 59.2, 1, -0.339745, -0.0102156, 0.0189658, 0.940271, 60.2667, 1, -0.340807, -0.0100718, 0.0192515, 0.939882, 61.3333, 1, -0.341933, -0.00989854, 0.0195816, 0.939468, 62.6667, 1, -0.343433, -0.00964093, 0.0200562, 0.938914, 63.4667, 1, -0.344381, -0.00946462, 0.0203737, 0.938561, 64.2667, 1, -0.345362, -0.00927289, 0.0207144, 0.938195, 65.0667, 1, -0.346378, -0.00906538, 0.0210789, 0.937814, 65.8667, 1, -0.347429, -0.0088423, 0.0214668, 0.937419, 66.6667, 1, -0.348512, -0.00860435, 0.0218771, 0.93701, 67.4667, 1, -0.349629, -0.00835064, 0.0223111, 0.936585, 68.2667, 1, -0.350777, -0.00808243, 0.0227669, 0.936147, 69.0667, 1, -0.351958, -0.00779938, 0.023245, 0.935695, 69.8667, 1, -0.35317, -0.00750166, 0.0237452, 0.935228, 70.6667, 1, -0.354413, -0.00718996, 0.0242663, 0.934747, 71.2, 1, -0.355259, -0.00697378, 0.0246263, 0.934417, 71.7333, 1, -0.356118, -0.00675173, 0.0249952, 0.934082, 72.2667, 1, -0.35699, -0.00652338, 0.0253734, 0.933741, 73.8667, 1, -0.359685, -0.00580156, 0.0265634, 0.932678, 74.4, 1, -0.360609, -0.00554904, 0.0269779, 0.932311, 74.9333, 1, -0.361545, -0.0052905, 0.0274014, 0.931937, 75.7333, 1, -0.362972, -0.00489167, 0.0280531, 0.931365, 76.2667, 1, -0.363939, -0.00461855, 0.0284984, 0.930975, 76.8, 1, -0.364918, -0.00433958, 0.0289525, 0.93058, 77.3333, 1, -0.365907, -0.00405529, 0.0294145, 0.930178, 77.8667, 1, -0.36691, -0.00376483, 0.0298857, 0.929769, 78.4, 1, -0.367923, -0.00346917, 0.0303647, 0.929354, 78.9333, 1, -0.368948, -0.00316788, 0.0308521, 0.928932, 79.4667, 1, -0.369985, -0.00286106, 0.0313478, 0.928505, 80, 1, -0.371031, -0.00254915, 0.031851, 0.928071, 80.8, 1, -0.372623, -0.00207064, 0.0326217, 0.927407, 81.6, 1, -0.374237, -0.0015806, 0.0334096, 0.92673, 82.1333, 1, -0.375327, -0.00124729, 0.0339448, 0.92627, 82.6667, 1, -0.376427, -0.00090916, 0.0344871, 0.925804, 83.2, 1, -0.377537, -0.000565466, 0.0350376, 0.925331, 83.7333, 1, -0.378657, -0.000217064, 0.0355952, 0.924852, 84.2667, 1, -0.379787, 0.000136382, 0.0361602, 0.924367, 85.6, 1, -0.382653, 0.00104132, 0.0376044, 0.923126, 86.1333, 1, -0.383816, 0.00141176, 0.0381947, 0.922618, 86.9333, 1, -0.385577, 0.00197606, 0.0390928, 0.921845, 87.7333, 1, -0.387359, 0.00255082, 0.0400065, 0.921057, 88.2667, 1, -0.388557, 0.00293969, 0.040624, 0.920524, 88.8, 1, -0.389764, 0.00333311, 0.0412482, 0.919985, 89.3333, 1, -0.390978, 0.00373066, 0.0418785, 0.919439, 89.8667, 1, -0.392202, 0.004133, 0.0425159, 0.918887, 90.4, 1, -0.393433, 0.00453938, 0.0431592, 0.918329, 90.9333, 1, -0.394672, 0.00495006, 0.0438089, 0.917764, 91.4667, 1, -0.395918, 0.005365, 0.0444648, 0.917193, 92, 1, -0.397172, 0.00578382, 0.0451264, 0.916616, 92.8, 1, -0.399067, 0.00642014, 0.0461308, 0.915738, 93.3333, 1, -0.400339, 0.00684903, 0.0468072, 0.915145, 93.8667, 1, -0.401618, 0.00728222, 0.0474899, 0.914546, 94.4, 1, -0.402904, 0.00771902, 0.0481779, 0.913941, 94.9333, 1, -0.404196, 0.00815969, 0.0488716, 0.913329, 95.4667, 1, -0.405495, 0.00860417, 0.0495708, 0.912712, 96, 1, -0.406799, 0.00905208, 0.0502751, 0.912088, 96.5333, 1, -0.408111, 0.009504, 0.0509851, 0.911458, 97.0667, 1, -0.409428, 0.00995923, 0.0517, 0.910822, 98.1333, 1, -0.41208, 0.0108803, 0.0531453, 0.909532, 98.9333, 1, -0.414083, 0.0115799, 0.054242, 0.908548, 99.4667, 1, -0.415424, 0.0120506, 0.0549793, 0.907885, 100, 1, -0.416771, 0.0125242, 0.0557209, 0.907216, 100.533, 1, -0.418123, 0.0130013, 0.0564675, 0.90654, 101.067, 1, -0.41948, 0.0134814, 0.0572184, 0.905859, 102.133, 1, -0.422207, 0.0144506, 0.0587333, 0.90448, 102.667, 1, -0.423576, 0.0149395, 0.0594968, 0.903781, 103.2, 1, -0.42495, 0.0154315, 0.0602649, 0.903077, 103.733, 1, -0.426328, 0.0159261, 0.0610367, 0.902367, 104.267, 1, -0.427709, 0.0164235, 0.0618124, 0.901651, 104.8, 1, -0.429095, 0.0169236, 0.0625921, 0.900929, 105.333, 1, -0.430483, 0.0174261, 0.0633751, 0.900202, 105.867, 1, -0.431875, 0.0179314, 0.0641622, 0.89947, 106.4, 1, -0.43327, 0.0184391, 0.0649525, 0.898732, 106.933, 1, -0.434668, 0.0189492, 0.0657462, 0.897988, 107.467, 1, -0.436068, 0.0194616, 0.0665434, 0.897239, 108, 1, -0.437471, 0.0199762, 0.0673435, 0.896485, 108.533, 1, -0.438877, 0.0204933, 0.0681471, 0.895725, 109.067, 1, -0.440285, 0.0210123, 0.0689535, 0.89496, 109.6, 1, -0.441695, 0.0215335, 0.0697629, 0.89419, 110.133, 1, -0.443107, 0.0220567, 0.0705751, 0.893414, 110.667, 1, -0.444521, 0.0225818, 0.0713898, 0.892634, 111.2, 1, -0.445937, 0.023109, 0.0722074, 0.891848, 111.733, 1, -0.447354, 0.0236378, 0.0730274, 0.891057, 112.267, 1, -0.448772, 0.0241685, 0.0738499, 0.890262, 112.8, 1, -0.450191, 0.0247009, 0.0746747, 0.889461, 113.333, 1, -0.451612, 0.0252348, 0.0755015, 0.888656, 114.4, 1, -0.454455, 0.0263075, 0.0771618, 0.887031, 114.933, 1, -0.455877, 0.026846, 0.0779949, 0.886212, 115.467, 1, -0.4573, 0.0273859, 0.0788298, 0.885388, 116, 1, -0.458723, 0.027927, 0.0796663, 0.88456, 116.533, 1, -0.460146, 0.0284695, 0.0805045, 0.883727, 117.067, 1, -0.461569, 0.0290131, 0.0813443, 0.88289, 118.133, 1, -0.464414, 0.0301036, 0.0830279, 0.881203, 118.667, 1, -0.465836, 0.0306503, 0.0838715, 0.880354, 119.2, 1, -0.467257, 0.031198, 0.0847164, 0.8795, 119.733, 1, -0.468677, 0.0317466, 0.0855622, 0.878643, 120.267, 1, -0.470096, 0.0322959, 0.0864089, 0.877781, 121.333, 1, -0.472931, 0.0333965, 0.0881047, 0.876047, 121.867, 1, -0.474346, 0.0339478, 0.0889537, 0.875175, 122.4, 1, -0.475759, 0.0344995, 0.0898031, 0.874299, 122.933, 1, -0.477171, 0.0350518, 0.0906529, 0.87342, 123.467, 1, -0.47858, 0.0356043, 0.0915031, 0.872537, 124.267, 1, -0.480691, 0.0364338, 0.0927787, 0.871207, 124.8, 1, -0.482095, 0.0369871, 0.0936292, 0.870316, 125.333, 1, -0.483497, 0.0375405, 0.0944796, 0.869422, 125.867, 1, -0.484896, 0.0380941, 0.09533, 0.868526, 126.667, 1, -0.486989, 0.0389244, 0.0966051, 0.867176, 127.2, 1, -0.488381, 0.0394778, 0.0974547, 0.866272, 128.267, 1, -0.491156, 0.0405843, 0.0991524, 0.864458, 129.333, 1, -0.493917, 0.0416896, 0.100847, 0.862634, 129.867, 1, -0.495292, 0.0422417, 0.101694, 0.861719, 130.667, 1, -0.497347, 0.043069, 0.102961, 0.860343, 131.467, 1, -0.499393, 0.043895, 0.104226, 0.858963, 132, 1, -0.500752, 0.0444448, 0.105068, 0.85804, 133.067, 1, -0.503457, 0.0455423, 0.106748, 0.856191, 133.6, 1, -0.504802, 0.0460898, 0.107585, 0.855264, 134.667, 1, -0.507479, 0.047182, 0.109255, 0.853406, 135.467, 1, -0.509473, 0.0479983, 0.110503, 0.852011, 136, 1, -0.510796, 0.0485412, 0.111332, 0.85108, 136.533, 1, -0.512113, 0.0490828, 0.112159, 0.850148, 137.067, 1, -0.513426, 0.0496232, 0.112985, 0.849215, 137.6, 1, -0.514732, 0.0501622, 0.113808, 0.848282, 138.133, 1, -0.516033, 0.0506999, 0.114628, 0.847349, 138.667, 1, -0.517328, 0.0512361, 0.115446, 0.846415, 139.2, 1, -0.518617, 0.0517707, 0.116262, 0.845482, 139.733, 1, -0.5199, 0.0523038, 0.117075, 0.844548, 140.267, 1, -0.521177, 0.0528353, 0.117885, 0.843615, 140.8, 1, -0.522448, 0.053365, 0.118692, 0.842682, 141.333, 1, -0.523712, 0.0538931, 0.119497, 0.841749, 141.867, 1, -0.524969, 0.0544192, 0.120298, 0.840818, 142.4, 1, -0.52622, 0.0549434, 0.121097, 0.839887, 142.933, 1, -0.527464, 0.0554658, 0.121892, 0.838956, 143.467, 1, -0.528701, 0.055986, 0.122684, 0.838027, 144, 1, -0.529931, 0.0565043, 0.123473, 0.837099, 144.533, 1, -0.531154, 0.0570204, 0.124258, 0.836172, 145.067, 1, -0.53237, 0.0575343, 0.12504, 0.835247, 145.6, 1, -0.533578, 0.0580459, 0.125818, 0.834323, 146.667, 1, -0.535973, 0.0590624, 0.127363, 0.83248, 147.2, 1, -0.537158, 0.0595668, 0.128129, 0.831562, 147.733, 1, -0.538336, 0.0600688, 0.128892, 0.830646, 148.533, 1, -0.540088, 0.0608171, 0.130029, 0.829276, 149.067, 1, -0.541246, 0.0613127, 0.130781, 0.828366, 150.133, 1, -0.543538, 0.0622957, 0.132273, 0.826553, 150.667, 1, -0.544671, 0.0627831, 0.133013, 0.825651, 151.2, 1, -0.545796, 0.0632675, 0.133747, 0.824752, 151.733, 1, -0.546913, 0.063749, 0.134478, 0.823856, 152.267, 1, -0.54802, 0.0642276, 0.135203, 0.822963, 152.8, 1, -0.549119, 0.0647031, 0.135924, 0.822074, 153.6, 1, -0.550751, 0.0654106, 0.136997, 0.820748, 154.133, 1, -0.551828, 0.0658782, 0.137705, 0.819868, 154.667, 1, -0.552896, 0.0663428, 0.138409, 0.818992, 155.2, 1, -0.553954, 0.0668039, 0.139107, 0.818121, 155.733, 1, -0.555004, 0.0672618, 0.1398, 0.817253, 156.267, 1, -0.556044, 0.0677162, 0.140488, 0.81639, 156.8, 1, -0.557074, 0.0681672, 0.141171, 0.815532, 157.333, 1, -0.558096, 0.0686148, 0.141848, 0.814678, 157.867, 1, -0.559107, 0.0690585, 0.14252, 0.81383, 158.4, 1, -0.560109, 0.0694989, 0.143186, 0.812986, 158.933, 1, -0.561101, 0.0699356, 0.143846, 0.812147, 159.733, 1, -0.56257, 0.0705835, 0.144826, 0.8109, 160.267, 1, -0.563538, 0.0710108, 0.145472, 0.810075, 160.8, 1, -0.564495, 0.0714341, 0.146111, 0.809255, 161.6, 1, -0.565912, 0.0720619, 0.14706, 0.808037, 162.133, 1, -0.566843, 0.0724754, 0.147684, 0.807233, 162.667, 1, -0.567765, 0.0728851, 0.148303, 0.806435, 163.2, 1, -0.568676, 0.0732903, 0.148915, 0.805643, 164.533, 1, -0.570907, 0.0742856, 0.150417, 0.803692, 165.067, 1, -0.571781, 0.0746764, 0.151007, 0.802924, 165.6, 1, -0.572644, 0.0750628, 0.15159, 0.802163, 166.133, 1, -0.573496, 0.0754447, 0.152166, 0.801409, 166.933, 1, -0.574754, 0.0760096, 0.153018, 0.800291, 167.467, 1, -0.575579, 0.0763804, 0.153577, 0.799556, 168, 1, -0.576393, 0.0767469, 0.15413, 0.798827, 168.533, 1, -0.577195, 0.0771084, 0.154674, 0.798108, 169.333, 1, -0.578378, 0.0776426, 0.155479, 0.797042, 169.867, 1, -0.579152, 0.0779924, 0.156006, 0.796343, 170.4, 1, -0.579914, 0.0783377, 0.156527, 0.795652, 170.933, 1, -0.580666, 0.0786781, 0.157039, 0.794969, 171.467, 1, -0.581405, 0.0790137, 0.157545, 0.794295, 172, 1, -0.582134, 0.0793445, 0.158043, 0.793629, 172.8, 1, -0.583203, 0.079831, 0.158775, 0.792649, 173.333, 1, -0.583902, 0.0801494, 0.159254, 0.792006, 173.867, 1, -0.584588, 0.0804623, 0.159725, 0.791373, 174.4, 1, -0.585263, 0.0807703, 0.160189, 0.790749, 174.933, 1, -0.585925, 0.0810731, 0.160644, 0.790135, 175.467, 1, -0.586575, 0.0813705, 0.161091, 0.78953, 176.267, 1, -0.587528, 0.081807, 0.161748, 0.788642, 177.333, 1, -0.588755, 0.0823703, 0.162595, 0.787493, 178.133, 1, -0.589642, 0.082778, 0.163208, 0.786659, 178.933, 1, -0.590502, 0.0831738, 0.163802, 0.785849, 179.733, 1, -0.591332, 0.0835568, 0.164378, 0.785063, 180.533, 1, -0.592134, 0.083927, 0.164934, 0.784302, 181.333, 1, -0.592908, 0.0842846, 0.165471, 0.783566, 182.133, 1, -0.593651, 0.0846287, 0.165988, 0.782857, 182.933, 1, -0.594365, 0.0849598, 0.166485, 0.782173, 183.733, 1, -0.59505, 0.0852774, 0.166962, 0.781516, 184.533, 1, -0.595704, 0.0855814, 0.167418, 0.780887, 185.6, 1, -0.596529, 0.0859656, 0.167995, 0.78009, 186.667, 1, -0.597301, 0.0863251, 0.168534, 0.779343, 187.733, 1, -0.598016, 0.086659, 0.169035, 0.778649, 188.8, 1, -0.598676, 0.0869674, 0.169498, 0.778007, 190.133, 1, -0.599421, 0.0873164, 0.170021, 0.777279, 191.467, 1, -0.600078, 0.087624, 0.170482, 0.776637, 193.067, 1, -0.600746, 0.0879376, 0.170952, 0.775981, 194.933, 1, -0.601356, 0.0882246, 0.171383, 0.775381, 198.133, 1, -0.601969, 0.0885134, 0.171815, 0.774776, 200, 1, -0.602067, 0.0885599, 0.171885, 0.774679) +tracks/21/type = "audio" +tracks/21/imported = false +tracks/21/enabled = true +tracks/21/path = NodePath("../Audio/RUMBLE") +tracks/21/interp = 1 +tracks/21/loop_wrap = true +tracks/21/keys = { +"clips": [{ +"end_offset": 0.0, +"start_offset": 0.0, +"stream": ExtResource("17_w2hru") +}], +"times": PackedFloat32Array(0) +} +tracks/21/use_blend = true +tracks/22/type = "value" +tracks/22/imported = false +tracks/22/enabled = true +tracks/22/path = NodePath("../Audio/RUMBLE:volume_db") +tracks/22/interp = 1 +tracks/22/loop_wrap = true +tracks/22/keys = { +"times": PackedFloat32Array(0, 65.2667), +"transitions": PackedFloat32Array(1, 1), +"update": 0, +"values": [-20.0, 0.0] +} +tracks/23/type = "method" +tracks/23/imported = false +tracks/23/enabled = true +tracks/23/path = NodePath("..") +tracks/23/interp = 1 +tracks/23/loop_wrap = true +tracks/23/keys = { +"times": PackedFloat32Array(120, 160.9), +"transitions": PackedFloat32Array(1, 1), +"values": [{ +"args": [], +"method": &"StartEndGameCutscene" +}, { +"args": [], +"method": &"EndGame" +}] +} + +[sub_resource type="Animation" id="Animation_w2hru"] +length = 0.001 +tracks/0/type = "value" +tracks/0/imported = false +tracks/0/enabled = true +tracks/0/path = NodePath("../Audio/RUMBLE:volume_db") +tracks/0/interp = 1 +tracks/0/loop_wrap = true +tracks/0/keys = { +"times": PackedFloat32Array(0), +"transitions": PackedFloat32Array(1), +"update": 0, +"values": [0.0] +} [sub_resource type="AnimationLibrary" id="AnimationLibrary_qns66"] _data = { -&"Animation": SubResource("Animation_qtr70") +&"Animation": SubResource("Animation_qtr70"), +&"RESET": SubResource("Animation_w2hru") } [sub_resource type="BoxShape3D" id="BoxShape3D_b53dq"] size = Vector3(7.76668, 5.73663, 7.88136) +[sub_resource type="FastNoiseLite" id="FastNoiseLite_2vj7l"] + [node name="BAD END Overworld" type="Node3D"] script = ExtResource("1_j65oo") @@ -1727,140 +1780,140 @@ bones/0/parent = -1 bones/0/rest = Transform3D(0.99734, -0.0728728, -0.00159906, 0.0728796, 0.996578, 0.03901, -0.00124918, -0.0390228, 0.999238, 0.0569801, -0.796968, 0.117812) bones/0/enabled = true bones/0/position = Vector3(-0.0132771, -0.101083, -0.396076) -bones/0/rotation = Quaternion(0.604473, 0.00228324, -0.0263951, 0.796185) +bones/0/rotation = Quaternion(0.646248, 0.0143874, -0.026145, 0.762543) bones/0/scale = Vector3(1, 1, 1) bones/1/name = "Bone.002" bones/1/parent = 0 bones/1/rest = Transform3D(0.175377, 0.963955, 0.200085, -0.983796, 0.179283, -0.00142516, -0.0372456, -0.196593, 0.979778, 1.28057e-08, 0.411761, -2.01966e-07) bones/1/enabled = true bones/1/position = Vector3(1.28057e-08, 0.411761, -2.01966e-07) -bones/1/rotation = Quaternion(0.0903784, 0.139333, -0.6984, 0.696172) +bones/1/rotation = Quaternion(-0.00453811, 0.025747, -0.536861, 0.843265) bones/1/scale = Vector3(1, 1, 1) bones/2/name = "Bone.003" bones/2/parent = 1 bones/2/rest = Transform3D(0.795965, -0.570794, -0.20158, 0.58425, 0.811523, 0.00907713, 0.158406, -0.124998, 0.97943, 2.83588e-07, 0.29443, 3.35276e-08) bones/2/enabled = true bones/2/position = Vector3(2.83588e-07, 0.29443, 3.35276e-08) -bones/2/rotation = Quaternion(-0.00391079, -0.0239074, 0.306306, 0.951625) +bones/2/rotation = Quaternion(-0.741287, -0.205538, 0.258023, 0.584527) bones/2/scale = Vector3(1, 1, 1) bones/3/name = "Bone.004" bones/3/parent = 2 bones/3/rest = Transform3D(0.989608, -0.143493, 0.00920923, 0.14374, 0.98559, -0.0891694, 0.00371869, 0.0895666, 0.995974, -5.96046e-08, 0.214918, -8.56817e-08) bones/3/enabled = true bones/3/position = Vector3(-5.96046e-08, 0.214918, -8.56817e-08) -bones/3/rotation = Quaternion(-0.0940519, 0.0221427, 0.228157, 0.968818) +bones/3/rotation = Quaternion(-0.0329959, -0.0111442, 0.400751, 0.915525) bones/3/scale = Vector3(1, 1, 1) bones/4/name = "Bone.005" bones/4/parent = 0 bones/4/rest = Transform3D(0.8559, 0.514148, 0.0555615, -0.517113, 0.85201, 0.0816818, -0.00534251, -0.098643, 0.995109, 1.28057e-08, 0.411761, -2.01966e-07) bones/4/enabled = true bones/4/position = Vector3(1.28057e-08, 0.411761, -2.01966e-07) -bones/4/rotation = Quaternion(0.163643, 0.077141, -0.277541, 0.943526) +bones/4/rotation = Quaternion(0.026071, 0.0294284, -0.189431, 0.981107) bones/4/scale = Vector3(1, 1, 1) bones/5/name = "Bone.006" bones/5/parent = 4 bones/5/rest = Transform3D(0.912677, -0.40143, -0.0766494, 0.407121, 0.909436, 0.0847344, 0.0356927, -0.108541, 0.993451, -2.94298e-07, 0.311928, 4.79631e-08) bones/5/enabled = true bones/5/position = Vector3(-2.94298e-07, 0.311928, 4.79631e-08) -bones/5/rotation = Quaternion(0.0256067, -0.0079069, 0.208317, 0.977694) +bones/5/rotation = Quaternion(-0.732724, -0.0116784, -0.113417, 0.670906) bones/5/scale = Vector3(1, 1, 1) bones/6/name = "Bone.007" bones/6/parent = 5 bones/6/rest = Transform3D(0.999973, 0.00695748, 0.00230702, -0.00732943, 0.952989, 0.302917, -9.10251e-05, -0.302926, 0.953014, 1.86265e-09, 0.280384, 1.46683e-08) bones/6/enabled = true bones/6/position = Vector3(1.86265e-09, 0.280384, 1.46683e-08) -bones/6/rotation = Quaternion(-0.290937, -0.10533, -0.0806652, 0.947499) +bones/6/rotation = Quaternion(-0.722745, -0.114238, -0.220872, 0.644829) bones/6/scale = Vector3(1, 1, 1) bones/7/name = "Bone.008" bones/7/parent = 6 bones/7/rest = Transform3D(0.996094, -0.0359853, -0.0806324, 0.0483371, 0.986431, 0.156901, 0.0738921, -0.160185, 0.984317, 1.76951e-08, 0.140897, 1.84868e-07) bones/7/enabled = true bones/7/position = Vector3(1.76951e-08, 0.140897, 1.84868e-07) -bones/7/rotation = Quaternion(-0.195065, -0.0237462, 0.0168009, 0.980359) +bones/7/rotation = Quaternion(-0.564086, 0.0148156, -0.186426, 0.804259) bones/7/scale = Vector3(1, 1, 1) bones/8/name = "Bone.009" bones/8/parent = 0 bones/8/rest = Transform3D(0.998353, 0.0572181, 0.00421836, -0.0573725, 0.99522, 0.079025, 0.000323458, -0.0791368, 0.996864, 1.28057e-08, 0.411761, -2.01966e-07) bones/8/enabled = true bones/8/position = Vector3(1.28057e-08, 0.411761, -2.01966e-07) -bones/8/rotation = Quaternion(0.173169, 0.00176637, -0.0256645, 0.984556) +bones/8/rotation = Quaternion(0.0317636, -0.0287215, -0.03792, 0.998363) bones/8/scale = Vector3(1, 1, 1) bones/9/name = "Bone.010" bones/9/parent = 8 bones/9/rest = Transform3D(0.998918, -0.0447606, -0.0126519, 0.0461449, 0.987834, 0.14851, 0.00585053, -0.148933, 0.98883, 5.58794e-09, 0.28761, 7.36327e-09) bones/9/enabled = true bones/9/position = Vector3(5.58794e-09, 0.28761, 7.36327e-09) -bones/9/rotation = Quaternion(0.00281864, -0.0106953, 0.0166505, 0.9998) +bones/9/rotation = Quaternion(-0.716354, -0.0633505, 0.116848, 0.68496) bones/9/scale = Vector3(1, 1, 1) bones/10/name = "Bone.011" bones/10/parent = 9 bones/10/rest = Transform3D(0.999945, 0.000256902, -0.0104478, 0.00300076, 0.950545, 0.310573, 0.0100109, -0.310587, 0.950492, -1.16415e-08, 0.287509, 1.04774e-08) bones/10/enabled = true bones/10/position = Vector3(-1.16415e-08, 0.287509, 1.04774e-08) -bones/10/rotation = Quaternion(-0.23264, -0.106844, 0.0804109, 0.963326) +bones/10/rotation = Quaternion(-0.706788, -0.0501111, 0.197428, 0.677467) bones/10/scale = Vector3(1, 1, 1) bones/11/name = "Bone.012" bones/11/parent = 10 bones/11/rest = Transform3D(0.997952, 0.02193, -0.0600963, -0.0135825, 0.990623, 0.135943, 0.062514, -0.134849, 0.988892, 1.86265e-09, 0.170844, -1.52271e-07) bones/11/enabled = true bones/11/position = Vector3(1.86265e-09, 0.170844, -1.52271e-07) -bones/11/rotation = Quaternion(-0.342941, -0.119609, 0.0291782, 0.931254) +bones/11/rotation = Quaternion(-0.635809, 0.0884169, 0.121585, 0.757065) bones/11/scale = Vector3(1, 1, 1) bones/12/name = "Bone.013" bones/12/parent = 0 bones/12/rest = Transform3D(0.910285, -0.412909, -0.0297977, 0.413935, 0.906722, 0.0807057, -0.00630587, -0.0857995, 0.996292, 1.28057e-08, 0.411761, -2.01966e-07) bones/12/enabled = true bones/12/position = Vector3(1.28057e-08, 0.411761, -2.01966e-07) -bones/12/rotation = Quaternion(0.166306, -0.0463108, 0.20949, 0.962451) +bones/12/rotation = Quaternion(0.0212236, -0.0497983, 0.193309, 0.979643) bones/12/scale = Vector3(1, 1, 1) bones/13/name = "Bone.014" bones/13/parent = 12 bones/13/rest = Transform3D(0.958706, 0.281091, 0.0432387, -0.284277, 0.951588, 0.116903, -0.00828502, -0.124367, 0.992202, 2.98023e-08, 0.297592, 1.9744e-07) bones/13/enabled = true bones/13/position = Vector3(2.98023e-08, 0.297592, 1.9744e-07) -bones/13/rotation = Quaternion(0.0110626, -0.0147714, -0.15301, 0.988052) +bones/13/rotation = Quaternion(-0.726418, 0.0362032, 0.0681524, 0.682907) bones/13/scale = Vector3(1, 1, 1) bones/14/name = "Bone.015" bones/14/parent = 13 bones/14/rest = Transform3D(0.994836, -0.100097, -0.016765, 0.095577, 0.868428, 0.486516, -0.0341397, -0.485607, 0.873511, -1.35973e-07, 0.311291, -2.04891e-07) bones/14/enabled = true bones/14/position = Vector3(-1.35973e-07, 0.311291, -2.04891e-07) -bones/14/rotation = Quaternion(-0.366973, -0.000820569, 0.0512991, 0.928816) +bones/14/rotation = Quaternion(-0.762053, -0.0488251, 0.303176, 0.570066) bones/14/scale = Vector3(1, 1, 1) bones/15/name = "Bone.016" bones/15/parent = 14 bones/15/rest = Transform3D(0.985406, 0.151265, 0.0780701, -0.133166, 0.97071, -0.199974, -0.106032, 0.186659, 0.976686, 1.2666e-07, 0.158436, 3.09199e-07) bones/15/enabled = true bones/15/position = Vector3(1.2666e-07, 0.158436, 3.09199e-07) -bones/15/rotation = Quaternion(-0.079111, 0.138305, -0.0956766, 0.982578) +bones/15/rotation = Quaternion(-0.395201, 0.182808, 0.131197, 0.890609) bones/15/scale = Vector3(1, 1, 1) bones/16/name = "Bone.017" bones/16/parent = 0 bones/16/rest = Transform3D(0.670007, -0.741756, -0.0298262, 0.742087, 0.668144, 0.0537577, -0.0199469, -0.0581517, 0.998108, 1.28057e-08, 0.411761, -2.01966e-07) bones/16/enabled = true bones/16/position = Vector3(1.28057e-08, 0.411761, -2.01966e-07) -bones/16/rotation = Quaternion(0.16937, -0.074768, 0.400039, 0.897604) +bones/16/rotation = Quaternion(0.0243213, -0.0582672, 0.362889, 0.929691) bones/16/scale = Vector3(1, 1, 1) bones/17/name = "Bone.018" bones/17/parent = 16 bones/17/rest = Transform3D(0.80924, 0.581781, 0.0816172, -0.587314, 0.804455, 0.0889663, -0.0138985, -0.11993, 0.992685, -1.49012e-07, 0.348069, 1.4063e-07) bones/17/enabled = true bones/17/position = Vector3(-1.49012e-07, 0.348069, 1.4063e-07) -bones/17/rotation = Quaternion(-0.0521857, 0.140364, -0.221714, 0.963544) +bones/17/rotation = Quaternion(-0.691613, 0.200059, -0.15194, 0.677172) bones/17/scale = Vector3(1, 1, 1) bones/18/name = "Bone.019" bones/18/parent = 17 bones/18/rest = Transform3D(0.998706, 0.0373336, -0.0345475, -0.0335529, 0.99399, 0.104198, 0.0382299, -0.102904, 0.993956, -2.51457e-08, 0.249705, 5.21541e-08) bones/18/enabled = true bones/18/position = Vector3(-2.51457e-08, 0.249705, 5.21541e-08) -bones/18/rotation = Quaternion(-0.244115, -0.0562858, -0.0233865, 0.967829) +bones/18/rotation = Quaternion(-0.744354, -0.0940866, 0.109161, 0.65205) bones/18/scale = Vector3(1, 1, 1) bones/19/name = "Bone.020" bones/19/parent = 18 bones/19/rest = Transform3D(0.98697, -0.159731, -0.0193677, 0.158631, 0.945817, 0.283312, -0.0269355, -0.282693, 0.958832, -5.21541e-08, 0.125638, 1.2666e-07) bones/19/enabled = true bones/19/position = Vector3(-5.21541e-08, 0.125638, 1.2666e-07) -bones/19/rotation = Quaternion(-0.327823, 0.0395137, 0.0862458, 0.939964) +bones/19/rotation = Quaternion(-0.564702, 0.0715256, 0.146249, 0.809078) bones/19/scale = Vector3(1, 1, 1) [node name="CHEST" type="MeshInstance3D" parent="Hand of Heaven /Armature/Skeleton3D"] @@ -1919,9 +1972,21 @@ bus = &"AMBIENT" parameters/looping = true [node name="RUMBLE" type="AudioStreamPlayer" parent="Audio"] -autoplay = true +bus = &"SFX" [node name="A2Door" parent="." instance=ExtResource("20_2vj7l")] transform = Transform3D(-0.113618, 0, -1.48065, 0, 1.485, 0, 1.48065, 0, -0.113618, -242.69, 2.55123, 32.7473) +[node name="Camera3D" type="Camera3D" parent="."] +unique_name_in_owner = true +transform = Transform3D(0.988604, -0.0939818, -0.117603, 0.0791595, 0.989004, -0.12492, 0.12805, 0.114187, 0.985172, -456.42, 137.3, 969.043) +fov = 45.0 +near = 0.01 +far = 9000.0 +script = ExtResource("21_2vj7l") +_shakeIntensity = 10.0 +_maxX = 25.0 +_maxY = 25.0 +_noise = SubResource("FastNoiseLite_2vj7l") + [editable path="NavigationRegion3D/Overworld Re-Scaled (Missing Distance Objects)"] diff --git a/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/BadEnd.cs b/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/BadEnd.cs index 6ce68aeb..5b90f2bc 100644 --- a/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/BadEnd.cs +++ b/Zennysoft.Game.Ma/src/map/dungeon/floors/Special Floors/BadEnd.cs @@ -3,33 +3,61 @@ using Chickensoft.Introspection; using Godot; using System.Linq; using Zennysoft.Game.Ma; +using Zennysoft.Ma.Adapter; [Meta(typeof(IAutoNode))] public partial class BadEnd : SpecialFloor { public override void _Notification(int what) => this.Notify(what); + [Dependency] protected IPlayer _player => this.DependOn(() => GetParent().GetChildren().OfType().Single()); + [Dependency] protected IGame _game => this.DependOn(); + + [Export] public float ShakeAmount = 50; + [Node] public Node3D EnemySpawnPoints { get; set; } = default!; [Node] public Marker3D PlayerSpawnPoint { get; set; } = default!; + [Node] public ShakeCamera Camera3D { get; set; } = default!; + public void OnReady() { SpawnEnemies(); + var tweener = GetTree().CreateTween(); + tweener.TweenMethod(Callable.From((float x) => SetShakeValue(x)), ShakeAmount, 1f, 700f).SetDelay(30); + } + + public void StartEndGameCutscene() + { + _player.Deactivate(); + _player.ShowCamera(false); + Camera3D.Current = true; + } + + public void EndGame() + { + SfxDatabase.Instance.Play(SoundEffect.Death); + _game.GameOver(); + } + + private void SetShakeValue(float shakeAmount) + { + _player.ShakePlayerCamera(shakeAmount, 1f); } public void SpawnEnemies() { - var enemySpawnPoints = EnemySpawnPoints.GetChildren().OfType(); - foreach (var spawnPoint in enemySpawnPoints) - { - var instantiatedEnemy = EnemyTypeToEnemyConverter.Convert(EnemyType.Michael); - AddChild(instantiatedEnemy); - instantiatedEnemy.GlobalPosition = new Vector3(spawnPoint.GlobalPosition.X, 2.4f, spawnPoint.GlobalPosition.Z); - ResetPhysicsInterpolation(); - var enemyWithFollowBehavior = (IHaveFollowBehavior)instantiatedEnemy; - enemyWithFollowBehavior.FollowBehavior.StartFollow(enemyWithFollowBehavior.NavigationAgent); - } + var enemySpawnPoints = EnemySpawnPoints.GetChildren().OfType(); + foreach (var spawnPoint in enemySpawnPoints) + { + var instantiatedEnemy = EnemyTypeToEnemyConverter.Convert(EnemyType.Michael); + AddChild(instantiatedEnemy); + instantiatedEnemy.GlobalPosition = new Vector3(spawnPoint.GlobalPosition.X, 2.4f, spawnPoint.GlobalPosition.Z); + ResetPhysicsInterpolation(); + var enemyWithFollowBehavior = (IHaveFollowBehavior)instantiatedEnemy; + enemyWithFollowBehavior.FollowBehavior.StartFollow(enemyWithFollowBehavior.NavigationAgent); + } } public override (Vector3 Rotation, Vector3 Position) GetPlayerSpawnPoint() { return (PlayerSpawnPoint.Rotation, new Vector3(PlayerSpawnPoint.GlobalPosition.X, 2.4f, PlayerSpawnPoint.GlobalPosition.Z)); } diff --git a/Zennysoft.Game.Ma/src/player/DummyPlayer.cs b/Zennysoft.Game.Ma/src/player/DummyPlayer.cs index 00a61cda..672b96a6 100644 --- a/Zennysoft.Game.Ma/src/player/DummyPlayer.cs +++ b/Zennysoft.Game.Ma/src/player/DummyPlayer.cs @@ -49,4 +49,6 @@ public partial class DummyPlayer : CharacterBody3D, IPlayer public IBaseInventoryItem IdentifyItem(IBaseInventoryItem unidentifiedItem) => throw new NotImplementedException(); public void EnactBriefImmunity() => throw new NotImplementedException(); public void SetSigil(ISigil sigil) => throw new NotImplementedException(); + public void ShakePlayerCamera(float shakeIntensity, float shakeAmount) => throw new NotImplementedException(); + public void ShowCamera(bool showCamera) => throw new NotImplementedException(); } diff --git a/Zennysoft.Game.Ma/src/player/Player.cs b/Zennysoft.Game.Ma/src/player/Player.cs index 8bd59dd7..d1eb5fc3 100644 --- a/Zennysoft.Game.Ma/src/player/Player.cs +++ b/Zennysoft.Game.Ma/src/player/Player.cs @@ -205,8 +205,6 @@ public partial class Player : CharacterBody3D, IPlayer, IProvide LuckComponent.Reset(); EquipmentComponent.Reset(); SigilComponent.Reset(); - - HealthTimer.Timeout += OnHealthTimerTimeout; } #region Initialization @@ -220,6 +218,7 @@ public partial class Player : CharacterBody3D, IPlayer, IProvide ExperiencePointsComponent.PlayerLevelDown += OnLevelDown; PlayerFXAnimations.AnimationFinished += PlayerFXAnimations_AnimationFinished; HealthTimer.WaitTime = _healthTimerWaitTime; + HealthTimer.Timeout += OnHealthTimerTimeout; _projectileCooldownTimer = new Timer(); AddChild(_projectileCooldownTimer); @@ -248,6 +247,7 @@ public partial class Player : CharacterBody3D, IPlayer, IProvide SetProcessInput(true); SetPhysicsProcess(true); SetHealthTimerStatus(HealthTimerIsActive); + ShowCamera(true); Hitbox.SetDeferred(Area3D.PropertyName.Monitoring, true); Hitbox.SetDeferred(Area3D.PropertyName.Monitorable, true); } @@ -290,12 +290,14 @@ public partial class Player : CharacterBody3D, IPlayer, IProvide ResetPhysicsInterpolation(); } + public void ShowCamera(bool showCamera) => _camera3D.Current = showCamera; + public void TakeDamage(AttackData damage) { if (BriefImmunity) return; - _camera3D.AddShake(1.0f); + ShakePlayerCamera(1, 1); TakeDamageAnimationPlayer.Play("take_damage"); var defense = TotalDefense; var elementalResistance = EquipmentComponent.ElementalResistance + SigilComponent.Sigil.ElementalResistanceSet; @@ -329,6 +331,12 @@ public partial class Player : CharacterBody3D, IPlayer, IProvide public IBaseInventoryItem IdentifyItem(IBaseInventoryItem unidentifiedItem) => _itemReroller.RerollItem(unidentifiedItem, Inventory); + public void ShakePlayerCamera(float shakeIntensity, float shakeAmount) + { + _camera3D._shakeIntensity = shakeIntensity; + _camera3D.AddShake(shakeAmount); + } + public int TotalAttack => AttackComponent.CurrentAttack.Value + EquipmentComponent.BonusAttack; public int TotalDefense => DefenseComponent.CurrentDefense.Value + EquipmentComponent.BonusDefense; @@ -348,11 +356,7 @@ public partial class Player : CharacterBody3D, IPlayer, IProvide return; SetSigil(new NoneSigil()); - - HealthTimer.WaitTime = _healthTimerWaitTime; - HealthTimer.Timeout -= OnHealthTimerTimeout; - SetProcessInput(false); - SetPhysicsProcess(false); + Deactivate(); } public override void _Input(InputEvent @event) @@ -920,7 +924,7 @@ public partial class Player : CharacterBody3D, IPlayer, IProvide if (SigilComponent.Sigil.ElementType == weapon.WeaponElement) totalDamage = Mathf.RoundToInt(totalDamage * 1.15f); - totalDamage = Mathf.RoundToInt(totalDamage * (1 + SigilComponent.Sigil.DamageModifier)); + totalDamage = Mathf.RoundToInt(totalDamage * (1 + SigilComponent.Sigil.DamageModifier)); if (isCriticalHit) { diff --git a/Zennysoft.Game.Ma/src/player/Player.tscn b/Zennysoft.Game.Ma/src/player/Player.tscn index 9cc142f6..b446e762 100644 --- a/Zennysoft.Game.Ma/src/player/Player.tscn +++ b/Zennysoft.Game.Ma/src/player/Player.tscn @@ -13031,6 +13031,7 @@ collision_mask = 775 script = ExtResource("1_xcol5") RotationSpeed = 1.6 HealthTimerIsActive = true +_immunityTime = 99999.0 [node name="MainCollision" type="CollisionShape3D" parent="."] unique_name_in_owner = true diff --git a/Zennysoft.Game.Ma/src/ui/game_over/GameOverMenu.cs b/Zennysoft.Game.Ma/src/ui/game_over/GameOverMenu.cs index 15747aa0..dbdd88c2 100644 --- a/Zennysoft.Game.Ma/src/ui/game_over/GameOverMenu.cs +++ b/Zennysoft.Game.Ma/src/ui/game_over/GameOverMenu.cs @@ -13,6 +13,7 @@ public interface IGameOverMenu : IControl public event Action NewGame; public event Action QuitGame; + public event Action GameOverMenuVisible; } [Meta(typeof(IAutoNode))] @@ -22,6 +23,7 @@ public partial class GameOverMenu : Control, IGameOverMenu public event Action NewGame; public event Action QuitGame; + public event Action GameOverMenuVisible; [Dependency] Game Game => this.DependOn(); @@ -36,6 +38,13 @@ public partial class GameOverMenu : Control, IGameOverMenu Continue.Pressed += Continue_Pressed; Exit.Pressed += Exit_Pressed; VisibilityChanged += DeathMenu_VisibilityChanged; + AnimationPlayer.AnimationFinished += AnimationPlayer_AnimationFinished; + } + + private void AnimationPlayer_AnimationFinished(StringName animName) + { + if (animName == "fade_in") + GameOverMenuVisible?.Invoke(); } private void DeathMenu_VisibilityChanged()